Install pittgoogle-client

Tools for interacting with Pitt-Google Broker data resources on Google Cloud Platform.

Use of a conda environment is recommended (see below). The basic install command is:

pip install pittgoogle-client

The package is imported in python as:

import pittgoogle

You will need to complete the rest of the One-Time Setup before you can and obtain authentication credentials before you will be able to access data.

Conda

Use of a conda environment is recommended, especially because it is an easy way to manage the authentication settings in later steps. To create an environment:

conda create --name pittgoogle-py311 python=3.11
conda activate pittgoogle-py311
pip install pittgoogle-client

You can de-activate and re-activate using:

conda deactivate
conda activate pittgoogle-py311