Installation

Gspace is available on PyPI and can be installed using pip.

Install from PyPI

bash
pip install gspace

Install from Source

If you want to install the latest development version:

bash
git clone https://github.com/Sentivs-co/gspace.git
cd gspace
poetry install

Verify Installation

You can verify that Gspace is installed correctly by importing it:

python
from gspace import GSpace
print(GSpace.__doc__)

Dependencies

Gspace automatically installs the following dependencies:

  • requests - For HTTP requests
  • google-api-python-client - Google API client library
  • google-auth-httplib2 - Authentication transport
  • google-auth-oauthlib - OAuth2 flow

Python Version

Gspace requires Python 3.12 or higher.

Next Steps