gituser/docker_multiarch/: pydata-google-auth-1.9.1 metadata and description
PyData helpers for authenticating to Google APIs
| author | The PyData Development Team |
| author_email | pydata@googlegroups.com |
| classifiers |
|
| keywords | data |
| license | BSD License |
| requires_dist |
|
| requires_python | >=3.9 |
| File | Tox results | History |
|---|---|---|
pydata_google_auth-1.9.1-py2.py3-none-any.whl
|
|
pydata-google-auth is a package providing helpers for authenticating to Google APIs.
Installation
Install latest release version via conda
$ conda install pydata-google-auth --channel conda-forge
Install latest release version via pip
$ pip install pydata-google-auth
Install latest development version
$ pip install git+https://github.com/pydata/pydata-google-auth.git
Usage
Use the pydata_google_auth.get_user_credentials() function to authenticate to Google APIs with user credentials.
import pydata_google_auth
credentials = pydata_google_auth.get_user_credentials(
['https://www.googleapis.com/auth/cloud-platform'],
)
# Use the credentials in other libraries, such as the Google BigQuery
# client library.
from google.cloud import bigquery
client = bigquery.Client(project='YOUR-PROJECT-ID', credentials=credentials)
See the pydata-google-auth documentation for more details.