Keyring backend for Google Auth tokens
Project description
Artifact Registry tools for PyPI
This repository contains an alternate keyring backend implementation to help with interacting with PyPI Repositories hosted on Artifact Registry.
Authentication
keyrings.google-artifactregistry-auth is a python package which allows you to configure keyring to interact with PyPI repositories stored in Artifact Registry.
The backend automatically searches for credentials from the environment and authenticates to Artifact Registry. It looks for credentials in the following order:
- Google Application Default Credentials.
- From the
gcloud
SDK. (i.e., the access token printed viagcloud config config-helper --format='value(credential.access_token)'
)- Hint: You can see which account is active with the command
gcloud config config-helper --format='value(configuration.properties.core.account)'
- Hint: You can see which account is active with the command
- If neither of them exist, an error occurs.
To use the keyring backend:
-
Log in
Option 1: log in as a service account:
(1). Using a JSON file that contains a service account key:
`$ export GOOGLE_APPLICATION_CREDENTIALS=[path/to/key.json]`
(2). Or using gcloud:
`$ gcloud auth application-default login`
Option 2: log in as an end user via gcloud:
`$ gcloud auth login`
-
Configure twine (.pypirc) and pip (pip.conf) tools to connect to the repository. Use the output from the following command:
gcloud alpha artifacts print-settings pypi
In your
.pypirc
file add:[disutils] index-servers = REPOSITORY_ID [REPOSITORY_ID] repository: https://LOCATION-pypi.pkg.dev/PROJECT_ID/REPOSITORY_ID/
In your
pip.conf
file add:[global] index-url = https://LOCATION-pypi.pkg.dev/PROJECT_ID/REPOSITORY_ID/simple/
-
Install the keyrings.google-artifactregistry-auth package
pip install keyrings.google-artifactregistry-auth
List backends to confirm the installation.
`keyring --list-backends`
The list should include
-`ChainerBackend(priority:10)`
-`GooglePyPIAuth(priority:9)`
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 Distributions
Built Distribution
Hashes for keyrings.google_artifactregistry_auth_legacy-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 108e925debb873d6b805c3feb610b8de9a6e1995744480a27d3bfc43ccf43fad |
|
MD5 | 8ae73cf094115e19daa30e0fdc7fa6d0 |
|
BLAKE2b-256 | 8ee8423e139c79b88b1cc542ddd4b142cc8cd6143b831f91292b160304c303f6 |