Retrieve GitHub access tokens from various sources
Project description
GitHub | PyPI | Issues | Changelog
When writing a Python program for interacting with GitHub’s API, you’ll likely want to use the local user’s GitHub access token for authentication. Asking the user to provide the token every time is undesirable, so you’d rather look up the token in some well-known storage location. The problem is, there have been so many places to store GitHub tokens supported by different programs over the years, and asking your users to migrate to a new one shouldn’t be necessary.
That’s where ghtoken comes in: it provides a single function for checking multiple well-known sources for GitHub access tokens plus separate functions for querying individual sources in case you need to combine the queries in novel ways.
The following token sources are currently supported:
.env files
environment variables
the gh command
the hub configuration file
the hub.oauthtoken Git config option
Installation
ghtoken requires Python 3.8 or higher. Just use pip for Python 3 (You have pip, right?) to install it:
python3 -m pip install ghtoken
API
Note: When retrieving GitHub access tokens, no validation of the token format is performed other than rejecting empty strings.
ghtoken.get_ghtoken(
*,
dotenv: bool | str | os.PathLike[str] = True,
environ: bool = True,
gh: bool = True,
hub: bool = True,
hub_oauthtoken: bool = True,
) -> str
Retrieve a locally-stored GitHub access token by checking various sources (listed below) and returning the first token found. Individual sources can be disabled by setting the corresponding keyword argument to False.
The sources are as follows, listed in the order in which they are consulted:
- dotenv
Look for a .env file by searching from the current directory upwards and reading the first file found. Alternatively, a specific file may be read by setting the dotenv keyword argument to the path to the file. If the file (whether found by searching or explicitly specified) cannot be read or parsed, control proceeds to the next enabled source.
If the file contains a GH_TOKEN=... or GITHUB_TOKEN=... assignment with a non-empty value, that value is returned; otherwise, control proceeds to the next enabled source. If assignments for both keys are present, GH_TOKEN takes precedence over GITHUB_TOKEN.
Reading values from a .env file will not modify the process’s environment variables.
- environ
If the environment variable GH_TOKEN or GITHUB_TOKEN is set to a nonempty string, that variable’s value is returned; otherwise, control proceeds to the next enabled source. If both environment variables are set, GH_TOKEN takes precedence over GITHUB_TOKEN.
- gh
Retrieve a GitHub access token stored by the gh command by running gh auth token --hostname github.com. If the command fails or outputs an empty line, control proceeds to the next enabled source.
Note that, if gh has stored its access token in a system keyring, the user may be prompted to unlock the keyring.
Note that, if the GH_TOKEN or GITHUB_TOKEN environment variable is set to a nonempty string, gh will return the value of the envvar rather than returning whatever access token may already be stored, and this happens even if the environ argument to get_ghtoken() is False.
- hub
Retrieve a GitHub access token from the hub configuration file. If the configuration file does not exist or is malformed, or if the file does not contain a nonempty token for the github.com domain, control proceeds to the next enabled source.
- hub_oauthtoken
Retrieve a GitHub access token from the Git config key hub.oauthtoken, used by the git-hub program. If the key is set to the empty string, or if the Git config key hub.baseurl is set to a value other than https://api.github.com, control proceeds to the next enabled source.
Git config values are retrieved by running git config --get .... If such a command fails, control proceeds to the next enabled source.
If the hub.oauthtoken value starts with !, the rest of the value is executed as a shell command, and the command’s standard output (with leading & trailing whitespace stripped) is returned.
If no enabled source returns a token, then a ghtoken.GHTokenNotFound exception is raised.
ghtoken.ghtoken_from_dotenv(path: str | os.PathLike[str] | None = None) -> str
Retrieve a GitHub access token from an .env file as described above. A path to a specific file may be supplied. If no token is found, a ghtoken.GHTokenNotFound exception is raised.
ghtoken.ghtoken_from_environ() -> str
Retrieve a GitHub access token from environment variables as described above. If no token is found, a ghtoken.GHTokenNotFound exception is raised.
ghtoken.ghtoken_from_gh() -> str
Retrieve a GitHub access token from the gh command as described above. If no token is found, a ghtoken.GHTokenNotFound exception is raised.
ghtoken.ghtoken_from_hub() -> str
Retrieve a GitHub access token from the hub configuration file as described above. If no token is found, a ghtoken.GHTokenNotFound exception is raised.
ghtoken.ghtoken_from_hub_oauthtoken() -> str
Retrieve a GitHub access token from the hub.oauthtoken Git config option as described above. If no token is found, a ghtoken.GHTokenNotFound exception is raised.
Command
ghtoken also provides a command of the same name for looking up a GitHub token from the command line:
ghtoken [<options>]
ghtoken retrieves the local user’s GitHub access token from local storage and prints it. If no token can be found, a message is printed to standard error, and the command exits with a nonzero status.
Options
- -E FILE, --env FILE
Use the given file as the .env file source
- --no-dotenv
Do not consult a .env file
- --no-environ
Do not consult environment variables
- --no-gh
Do not consult gh
- --no-hub
Do not consult hub configuration file
- --no-hub-oauthtoken
Do not consult hub.oauthtoken Git config option
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 ghtoken-0.1.2.tar.gz
.
File metadata
- Download URL: ghtoken-0.1.2.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4369b0052efb91109391b5f4f797cd5fa6a2a3ac436b6d11205fd992de02adef |
|
MD5 | 7c7e56bf9a3e50383046bc950dec6e1e |
|
BLAKE2b-256 | a5b2758bceafb71b562d80d325839ba0bd9740ba369ab8572f4508605551bf73 |
File details
Details for the file ghtoken-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: ghtoken-0.1.2-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 759242a6937d087f77d43a9207751f8e81a034e6f8c22937bc06b126b2357ad4 |
|
MD5 | c014534ed02e11c2edfda2994c6b5aad |
|
BLAKE2b-256 | 90c756f14aa2725c92aba0a14dd638405a497275a439944f1c96b3719b3fc7eb |