Auth Helpers for Asyncio Google Cloud Library
Project description
This library is not meant to be a standalone project, rather it is used by various gcloud-aio-* packages.
This library implements a Token class, which is used for authorizing against Google Cloud. The other gcloud-aio-* package components accept a Token instance as an argument; you can define a single token for all of these components or define one for each. Each component corresponds to a given Google Cloud service and each service requires “scopes”.
Installation
$ pip install --upgrade gcloud-aio-auth
Usage
from gcloud.aio.auth import Token
token = Token()
Additionally, the Token constructor accepts the following optional arguments:
service_file: path to a service account, authorized user file, or any other application credentials. If omitted, will attempt to find one on your path or fallback to generating a token from GCE metadata.
session: an aiohttp.ClientSession instance to be used for all requests. If omitted, a default session will be created.
scopes: an optional list of GCP scopes for which to generate our token. Only valid (and required!) for service account authentication.
CLI
This project can also be used to help you manually authenticate to test GCP routes, eg. we can list our project’s uptime checks with a tool such as curl:
# using default application credentials
curl \
-H "Authorization: Bearer $(python3 -c 'import asyncio; from gcloud.aio.auth import Token; print(asyncio.run(Token().get()))')" \
"https://monitoring.googleapis.com/v3/projects/PROJECT_ID/uptimeCheckConfigs"
# using a service account (make sure to provide a scope!)
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service.json
curl \
-H "Authorization: Bearer $(python3 -c 'import asyncio; from gcloud.aio.auth import Token; print(asyncio.run(Token(scopes=["'"https://www.googleapis.com/auth/cloud-platform"'"]).get()))')" \
"https://monitoring.googleapis.com/v3/projects/PROJECT_ID/uptimeCheckConfigs"
# using legacy account credentials
export GOOGLE_APPLICATION_CREDENTIALS=~/.config/gcloud/legacy_credentials/EMAIL@DOMAIN.TLD/adc.json
curl \
-H "Authorization: Bearer $(python3 -c 'import asyncio; from gcloud.aio.auth import Token; print(asyncio.run(Token().get()))')" \
"https://monitoring.googleapis.com/v3/projects/PROJECT_ID/uptimeCheckConfigs"
Contributing
Please see our contributing guide.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gcloud-aio-auth-2.0.1.tar.gz
.
File metadata
- Download URL: gcloud-aio-auth-2.0.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecfcfe084097f2089604f3e3cbb4e7db1bdc6375c6cc99a8ec07fb416ff2e539 |
|
MD5 | 6cccc6b4ff74d402b1c8136adf92bd64 |
|
BLAKE2b-256 | 221c5ebd808a4399bdfb395acad7ff7953161a6287b96a775f4cbaa18fdd5763 |
File details
Details for the file gcloud_aio_auth-2.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: gcloud_aio_auth-2.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76e0b0eba2140a1c3d645b651336707f24876bbda7ffd5489d748bcba513346f |
|
MD5 | d57b9a311d4c003d27868d23f69bf18b |
|
BLAKE2b-256 | c5d3a85338250100a350c9587b6e2c8266cd7a67c004831b67bbc5eef500eabe |