Microsoft Azure Identity Library for Python
Project description
Azure Identity client library for Python
The Azure Identity library provides a set of credential classes for use with Azure SDK clients which support Azure Active Directory (AAD) token authentication.
Source code | Package (PyPI) | API reference documentation | Azure Active Directory documentation
Getting started
Install the package
Install Azure Identity with pip:
pip install azure-identity
Prerequisites
- an Azure subscription
- Python 2.7 or 3.5.3+
Authenticating during local development
When debugging and executing code locally it is typical for developers to use their own accounts for authenticating calls to Azure services. The Azure Identity library supports authenticating through developer tools to simplify local development.
Authenticating via Visual Studio Code
DefaultAzureCredential and VisualStudioCodeCredential can authenticate as
the user signed in to Visual Studio Code's
Azure Account extension.
After installing the extension, sign in to Azure in Visual Studio Code by
pressing F1 to open the command palette and running the Azure: Sign In
command.
Authenticating via the Azure CLI
DefaultAzureCredential and AzureCliCredential can authenticate as the user
signed in to the Azure CLI. To sign in to the Azure CLI, run
az login. On a system with a default web browser, the Azure CLI will launch
the browser to authenticate a user.
When no default browser is available, az login will use the device code
authentication flow. This can also be selected manually by running az login --use-device-code.
Key concepts
Credentials
A credential is a class which contains or can obtain the data needed for a service client to authenticate requests. Service clients across the Azure SDK accept a credential instance when they are constructed, and use that credential to authenticate requests.
The Azure Identity library focuses on OAuth authentication with Azure Active Directory (AAD). It offers a variety of credential classes capable of acquiring an AAD access token. See Credential Classes below for a list of this library's credential classes.
DefaultAzureCredential
DefaultAzureCredential is appropriate for most applications which will run in
the Azure Cloud because it combines common production credentials with
development credentials. DefaultAzureCredential attempts to authenticate via
the following mechanisms in this order, stopping when one succeeds:
- Environment -
DefaultAzureCredentialwill read account information specified via environment variables and use it to authenticate. - Managed Identity - if the application is deployed to an Azure host with
Managed Identity enabled,
DefaultAzureCredentialwill authenticate with it. - Visual Studio Code - if a user has signed in to the Visual Studio Code Azure
Account extension,
DefaultAzureCredentialwill authenticate as that user. - Azure CLI - If a user has signed in via the Azure CLI
az logincommand,DefaultAzureCredentialwill authenticate as that user. - Interactive - If enabled,
DefaultAzureCredentialwill interactively authenticate a user via the current system's default browser.
Examples
The following examples are provided below:
- Authenticating with DefaultAzureCredential
- Defining a custom authentication flow with ChainedTokenCredential
- Async credentials
Authenticating with DefaultAzureCredential
This example demonstrates authenticating the BlobServiceClient from the
azure-storage-blob library using
DefaultAzureCredential.
from azure.identity import DefaultAzureCredential
from azure.storage.blob import BlobServiceClient
default_credential = DefaultAzureCredential()
client = BlobServiceClient(account_url, credential=default_credential)
Enabling interactive authentication with DefaultAzureCredential
Interactive authentication is disabled in the DefaultAzureCredential by
default and can be enabled with a keyword argument:
DefaultAzureCredential(exclude_interactive_browser_credential=False)
When enabled, DefaultAzureCredential falls back to interactively
authenticating via the system's default web browser when no other credential is
available.
Defining a custom authentication flow with ChainedTokenCredential
DefaultAzureCredential is generally the quickest way to get started developing
applications for Azure. For more advanced scenarios,
ChainedTokenCredential links multiple credential instances
to be tried sequentially when authenticating. It will try each chained
credential in turn until one provides a token or fails to authenticate due to
an error.
The following example demonstrates creating a credential which will attempt to
authenticate using managed identity, and fall back to authenticating via the
Azure CLI when a managed identity is unavailable. This example uses the
EventHubProducerClient from the azure-eventhub client library.
from azure.eventhub import EventHubProducerClient
from azure.identity import AzureCliCredential, ChainedTokenCredential, ManagedIdentityCredential
managed_identity = ManagedIdentityCredential()
azure_cli = AzureCliCredential()
credential_chain = ChainedTokenCredential(managed_identity, azure_cli)
client = EventHubProducerClient(namespace, eventhub_name, credential_chain)
Async credentials
This library includes an async API supported on Python 3.5+. To use the async credentials in azure.identity.aio, you must first install an async transport, such as aiohttp. See azure-core documentation for more information.
Async credentials should be closed when they're no longer needed. Each async
credential is an async context manager and defines an async close method. For
example:
from azure.identity.aio import DefaultAzureCredential
# call close when the credential is no longer needed
credential = DefaultAzureCredential()
...
await credential.close()
# alternatively, use the credential as an async context manager
credential = DefaultAzureCredential()
async with credential:
...
This example demonstrates authenticating the asynchronous SecretClient from
azure-keyvault-secrets with an asynchronous
credential.
from azure.identity.aio import DefaultAzureCredential
from azure.keyvault.secrets.aio import SecretClient
default_credential = DefaultAzureCredential()
client = SecretClient("https://my-vault.vault.azure.net", default_credential)
Credential Classes
Authenticating Azure Hosted Applications
| credential | usage |
|---|---|
| DefaultAzureCredential | simplified authentication to get started developing applications for the Azure cloud |
| ChainedTokenCredential | define custom authentication flows composing multiple credentials |
| EnvironmentCredential | authenticate a service principal or user configured by environment variables |
| ManagedIdentityCredential | authenticate the managed identity of an Azure resource |
Authenticating Service Principals
| credential | usage |
|---|---|
| ClientSecretCredential | authenticate a service principal using a secret |
| CertificateCredential | authenticate a service principal using a certificate |
Authenticating Users
| credential | usage |
|---|---|
| InteractiveBrowserCredential | interactively authenticate a user with the default web browser |
| DeviceCodeCredential | interactively authenticate a user on a device with limited UI |
| UsernamePasswordCredential | authenticate a user with a username and password |
Authenticating via Development Tools
| credential | usage |
|---|---|
| AzureCliCredential | authenticate as the user signed in to the Azure CLI |
| VisualStudioCodeCredential | authenticate as the user signed in to the Visual Studio Code Azure Account extension |
Environment Variables
DefaultAzureCredential and EnvironmentCredential can be configured with environment variables. Each type of authentication requires values for specific variables:
Service principal with secret
| variable name | value |
|---|---|
AZURE_CLIENT_ID |
id of an Azure Active Directory application |
AZURE_TENANT_ID |
id of the application's Azure Active Directory tenant |
AZURE_CLIENT_SECRET |
one of the application's client secrets |
Service principal with certificate
| variable name | value |
|---|---|
AZURE_CLIENT_ID |
id of an Azure Active Directory application |
AZURE_TENANT_ID |
id of the application's Azure Active Directory tenant |
AZURE_CLIENT_CERTIFICATE_PATH |
path to a PEM-encoded certificate file including private key (without password protection) |
Username and password
| variable name | value |
|---|---|
AZURE_CLIENT_ID |
id of an Azure Active Directory application |
AZURE_USERNAME |
a username (usually an email address) |
AZURE_PASSWORD |
that user's password |
Configuration is attempted in the above order. For example, if values for a client secret and certificate are both present, the client secret will be used.
Troubleshooting
Error Handling
Credentials raise CredentialUnavailableError when they're unable to attempt
authentication because they lack required data or state. For example,
EnvironmentCredential will raise this exception when
its configuration is incomplete.
Credentials raise azure.core.exceptions.ClientAuthenticationError when they fail
to authenticate. ClientAuthenticationError has a message attribute which
describes why authentication failed. When raised by
DefaultAzureCredential or ChainedTokenCredential,
the message collects error messages from each credential in the chain.
For more details on handling specific Azure Active Directory errors please refer to the Azure Active Directory error code documentation.
Logging
This library uses the standard logging library for logging. Credentials log basic information, including HTTP sessions (URLs, headers, etc.) at INFO level. These log entries do not contain authentication secrets.
Detailed DEBUG level logging, including request/response bodies and header values, is not enabled by default. It can be enabled with the logging_enable argument, for example:
credential = DefaultAzureCredential(logging_enable=True)
CAUTION: DEBUG level logs from credentials contain sensitive information. These logs must be protected to avoid compromising account security.
Next steps
Client library support
This is an incomplete list of client libraries accepting Azure Identity credentials. You can learn more about these libraries, and find additional documentation of them, at the links below.
- azure-appconfiguration
- azure-eventhub
- azure-keyvault-certificates
- azure-keyvault-keys
- azure-keyvault-secrets
- azure-storage-blob
- azure-storage-queue
Provide Feedback
If you encounter bugs or have suggestions, please open an issue.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Release History
1.5.0b2 (2020-10-07)
Fixed
AzureCliCredential.get_tokencorrectly sets token expiration time, preventing clients from using expired tokens (#14345)
Changed
- Adopted msal-extensions 0.3.0 (#13107)
1.4.1 (2020-10-07)
Fixed
AzureCliCredential.get_tokencorrectly sets token expiration time, preventing clients from using expired tokens (#14345)
1.5.0b1 (2020-09-08)
Added
- Application authentication APIs from 1.4.0b7
ManagedIdentityCredentialsupports the latest version of App Service (#11346)DefaultAzureCredentialallows specifying the client ID of a user-assigned managed identity via keyword argumentmanaged_identity_client_id(#12991)CertificateCredentialsupports Subject Name/Issuer authentication when created withsend_certificate=True. The asyncCertificateCredential(azure.identity.aio.CertificateCredential) will support this in a future version. (#10816)- Credentials in
azure.identitysupport ADFS authorities, exceptingVisualStudioCodeCredential. To configure a credential for this, configure the credential withauthorityandtenant_id="adfs"keyword arguments, for exampleClientSecretCredential(authority="<your ADFS URI>", tenant_id="adfs"). Async credentials (those inazure.identity.aio) will support ADFS in a future release. (#12696) InteractiveBrowserCredentialkeyword argumentredirect_urienables authentication with a user-specified application having a custom redirect URI (#13344)
Breaking changes
- Removed
authentication_recordkeyword argument from the asyncSharedTokenCacheCredential, i.e.azure.identity.aio.SharedTokenCacheCredential
1.4.0 (2020-08-10)
Added
DefaultAzureCredentialuses the value of environment variableAZURE_CLIENT_IDto configure a user-assigned managed identity. (#10931)
Breaking Changes
- Renamed
VSCodeCredentialtoVisualStudioCodeCredential - Removed application authentication APIs added in 1.4.0 beta versions. These
will be reintroduced in 1.5.0b1. Passing the keyword arguments below
generally won't cause a runtime error, but the arguments have no effect.
- Removed
authenticatemethod fromDeviceCodeCredential,InteractiveBrowserCredential, andUsernamePasswordCredential - Removed
allow_unencrypted_cacheandenable_persistent_cachekeyword arguments fromCertificateCredential,ClientSecretCredential,DeviceCodeCredential,InteractiveBrowserCredential, andUsernamePasswordCredential - Removed
disable_automatic_authenticationkeyword argument fromDeviceCodeCredentialandInteractiveBrowserCredential - Removed
allow_unencrypted_cachekeyword argument fromSharedTokenCacheCredential - Removed classes
AuthenticationRecordandAuthenticationRequiredError - Removed
identity_configkeyword argument fromManagedIdentityCredential
- Removed
1.4.0b7 (2020-07-22)
DefaultAzureCredentialhas a new optional keyword argument,visual_studio_code_tenant_id, which sets the tenant the credential should authenticate in when authenticating as the Azure user signed in to Visual Studio Code.- Renamed
AuthenticationRecord.deserializepositional parameterjson_stringtodata.
1.4.0b6 (2020-07-07)
AzureCliCredentialno longer raises an exception due to unexpected output from the CLI when run by PyCharm (thanks @NVolcz) (#11362)- Upgraded minimum
msalversion to 1.3.0 - The async
AzureCliCredentialcorrectly invokes/bin/sh(#12048)
1.4.0b5 (2020-06-12)
- Prevent an error on importing
AzureCliCredentialon Windows caused by a bug in old versions of Python 3.6 (this bug was fixed in Python 3.6.5). (#12014) SharedTokenCacheCredential.get_tokenraisesValueErrorinstead ofClientAuthenticationErrorwhen called with no scopes. (#11553)
1.4.0b4 (2020-06-09)
ManagedIdentityCredentialcan configure a user-assigned identity using any identifier supported by the current hosting environment. To specify an identity by its client ID, continue using theclient_idargument. To specify an identity by any other ID, use theidentity_configargument, for example:ManagedIdentityCredential(identity_config={"object_id": ".."})(#10989)CertificateCredentialandClientSecretCredentialcan optionally store access tokens they acquire in a persistent cache. To enable this, construct the credential withenable_persistent_cache=True. On Linux, the persistent cache requires libsecret andpygobject. If these are unavailable or unusable (e.g. in an SSH session), loading the persistent cache will raise an error. You may optionally configure the credential to fall back to an unencrypted cache by constructing it with keyword argumentallow_unencrypted_cache=True. (#11347)AzureCliCredentialraisesCredentialUnavailableErrorwhen no user is logged in to the Azure CLI. (#11819)AzureCliCredentialandVSCodeCredential, which enable authenticating as the identity signed in to the Azure CLI and Visual Studio Code, respectively, can be imported fromazure.identityandazure.identity.aio.azure.identity.aio.AuthorizationCodeCredential.get_token()no longer accepts optional keyword argumentsexecutororloop. Prior versions of the method didn't use these correctly, provoking exceptions, and internal changes in this version have made them obsolete.InteractiveBrowserCredentialraisesCredentialUnavailableErrorwhen it can't start an HTTP server onlocalhost. (#11665)- When constructing
DefaultAzureCredential, you can now configure a tenant ID forInteractiveBrowserCredential. When none is specified, the credential authenticates users in their home tenants. To specify a different tenant, use the keyword argumentinteractive_browser_tenant_id, or set the environment variableAZURE_TENANT_ID. (#11548) SharedTokenCacheCredentialcan be initialized with anAuthenticationRecordprovided by a user credential. (#11448)- The user authentication API added to
DeviceCodeCredentialandInteractiveBrowserCredentialin 1.4.0b3 is available onUsernamePasswordCredentialas well. (#11449) - The optional persistent cache for
DeviceCodeCredentialandInteractiveBrowserCredentialadded in 1.4.0b3 is now available on Linux and macOS as well as Windows. (#11134)- On Linux, the persistent cache requires libsecret and
pygobject. If these are unavailable, or libsecret is unusable (e.g. in an SSH session), loading the persistent cache will raise an error. You may optionally configure the credential to fall back to an unencrypted cache by constructing it with keyword argumentallow_unencrypted_cache=True.
- On Linux, the persistent cache requires libsecret and
1.4.0b3 (2020-05-04)
EnvironmentCredentialcorrectly initializesUsernamePasswordCredentialwith the value ofAZURE_TENANT_ID(#11127)- Values for the constructor keyword argument
authorityandAZURE_AUTHORITY_HOSTmay optionally specify an "https" scheme. For example, "https://login.microsoftonline.us" and "login.microsoftonline.us" are both valid. (#10819) - First preview of new API for authenticating users with
DeviceCodeCredentialandInteractiveBrowserCredential(#10612)- new method
authenticateinteractively authenticates a user, returns a serializableAuthenticationRecord - new constructor keyword arguments
authentication_recordenables initializing a credential with anAuthenticationRecordfrom a prior authenticationdisable_automatic_authentication=Trueconfigures the credential to raiseAuthenticationRequiredErrorwhen interactive authentication is necessary to acquire a token rather than immediately begin that authenticationenable_persistent_cache=Trueconfigures these credentials to use a persistent cache on supported platforms (in this release, Windows only). By default they cache in memory only.
- new method
- Now
DefaultAzureCredentialcan authenticate with the identity signed in to Visual Studio Code's Azure extension. (#10472)
1.4.0b2 (2020-04-06)
- After an instance of
DefaultAzureCredentialsuccessfully authenticates, it uses the same authentication method for every subsequent token request. This makes subsequent requests more efficient, and prevents unexpected changes of authentication method. (#10349) - All
get_tokenmethods consistently require at least one scope argument, raising an error when none is passed. Althoughget_token()may sometimes have succeeded in prior versions, it couldn't do so consistently because its behavior was undefined, and dependened on the credential's type and internal state. (#10243) SharedTokenCacheCredentialraisesCredentialUnavailableErrorwhen the cache is available but contains ambiguous or insufficient information. This causesChainedTokenCredentialto correctly try the next credential in the chain. (#10631)- The host of the Active Directory endpoint credentials should use can be set
in the environment variable
AZURE_AUTHORITY_HOST. Seeazure.identity.KnownAuthoritiesfor a list of common values. (#8094)
1.3.1 (2020-03-30)
ManagedIdentityCredentialraisesCredentialUnavailableErrorwhen no identity is configured for an IMDS endpoint. This causesChainedTokenCredentialto correctly try the next credential in the chain. (#10488)
1.4.0b1 (2020-03-10)
DefaultAzureCredentialcan now authenticate using the identity logged in to the Azure CLI, unless explicitly disabled with a keyword argument:DefaultAzureCredential(exclude_cli_credential=True)(#10092)
1.3.0 (2020-02-11)
- Correctly parse token expiration time on Windows App Service (#9393)
- Credentials raise
CredentialUnavailableErrorwhen they can't attempt to authenticate due to missing data or state (#9372) CertificateCredentialsupports password-protected private keys (#9434)
1.2.0 (2020-01-14)
- All credential pipelines include
ProxyPolicy(#8945) - Async credentials are async context managers and have an async
closemethod (#9090)
1.1.0 (2019-11-27)
- Constructing
DefaultAzureCredentialno longer raisesImportErroron Python 3.8 on Windows (8294) InteractiveBrowserCredentialraises when unable to open a web browser (8465)InteractiveBrowserCredentialprompts for account selection (8470)- The credentials composing
DefaultAzureCredentialare configurable by keyword arguments (8514) SharedTokenCacheCredentialaccepts an optionaltenant_idkeyword argument (8689)
1.0.1 (2019-11-05)
ClientCertificateCredentialuses application and tenant IDs correctly (8315)InteractiveBrowserCredentialproperly caches tokens (8352)- Adopted msal 1.0.0 and msal-extensions 0.1.3 (8359)
1.0.0 (2019-10-29)
Breaking changes:
- Async credentials now default to
aiohttpfor transport but the library does not require it as a dependency because the async API is optional. To use async credentials, please installaiohttpor see azure-core documentation for information about customizing the transport. - Renamed
ClientSecretCredentialparameter "secret" to "client_secret" - All credentials with
tenant_idandclient_idpositional parameters now accept them in that order - Changes to
InteractiveBrowserCredentialparameters- positional parameter
client_idis now an optional keyword argument. If no value is provided, the Azure CLI's client ID will be used. - Optional keyword argument
tenantrenamedtenant_id
- positional parameter
- Changes to
DeviceCodeCredential- optional positional parameter
prompt_callbackis now a keyword argument prompt_callback's third argument is now adatetimerepresenting the expiration time of the device code- optional keyword argument
tenantrenamedtenant_id
- optional positional parameter
- Changes to
ManagedIdentityCredential- now accepts no positional arguments, and only one keyword argument:
client_id - transport configuration is now done through keyword arguments as
described in
azure-coredocumentation
- now accepts no positional arguments, and only one keyword argument:
Fixes and improvements:
- Authenticating with a single sign-on shared with other Microsoft applications only requires a username when multiple users have signed in (#8095)
DefaultAzureCredentialaccepts anauthoritykeyword argument, enabling its use in national clouds (#8154)
Dependency changes
- Adopted
msal_extensions0.1.2 - Constrained
msalrequirement to >=0.4.1, <1.0.0
1.0.0b4 (2019-10-07)
New features:
AuthorizationCodeCredentialauthenticates with a previously obtained authorization code. See Azure Active Directory's authorization code documentation for more information about this authentication flow.- Multi-cloud support: client credentials accept the authority of an Azure Active
Directory authentication endpoint as an
authoritykeyword argument. Known authorities are defined inazure.identity.KnownAuthorities. The default authority is for Azure Public Cloud,login.microsoftonline.com(KnownAuthorities.AZURE_PUBLIC_CLOUD). An application running in Azure Government would useKnownAuthorities.AZURE_GOVERNMENTinstead:
from azure.identity import DefaultAzureCredential, KnownAuthorities credential = DefaultAzureCredential(authority=KnownAuthorities.AZURE_GOVERNMENT)
Breaking changes:
- Removed
client_secretparameter fromInteractiveBrowserCredential
Fixes and improvements:
UsernamePasswordCredentialcorrectly handles environment configuration with no tenant information (#7260)- user realm discovery requests are sent through credential pipelines (#7260)
1.0.0b3 (2019-09-10)
New features:
SharedTokenCacheCredentialauthenticates with tokens stored in a local cache shared by Microsoft applications. This enables Azure SDK clients to authenticate silently after you've signed in to Visual Studio 2019, for example.DefaultAzureCredentialincludesSharedTokenCacheCredentialwhen the shared cache is available, and environment variableAZURE_USERNAMEis set. See the README for more information.
Dependency changes:
- New dependency:
msal-extensions0.1.1
1.0.0b2 (2019-08-05)
Breaking changes:
- Removed
azure.core.Configurationfrom the public API in preparation for a revamped configuration API. Staticcreate_configmethods have been renamed_create_config, and will be removed in a future release.
Dependency changes:
- Adopted azure-core 1.0.0b2
- If you later want to revert to a version requiring azure-core 1.0.0b1,
of this or another Azure SDK library, you must explicitly install azure-core
1.0.0b1 as well. For example:
pip install azure-core==1.0.0b1 azure-identity==1.0.0b1
- If you later want to revert to a version requiring azure-core 1.0.0b1,
of this or another Azure SDK library, you must explicitly install azure-core
1.0.0b1 as well. For example:
- Adopted MSAL 0.4.1
- New dependency for Python 2.7: mock
New features:
- Added credentials for authenticating users:
DeviceCodeCredentialInteractiveBrowserCredentialUsernamePasswordCredential- async versions of these credentials will be added in a future release
1.0.0b1 (2019-06-28)
Version 1.0.0b1 is the first preview of our efforts to create a user-friendly and Pythonic authentication API for Azure SDK client libraries. For more information about preview releases of other Azure SDK libraries, please visit https://aka.ms/azure-sdk-preview1-python.
This release supports service principal and managed identity authentication. See the documentation for more details. User authentication will be added in an upcoming preview release.
This release supports only global Azure Active Directory tenants, i.e. those using the https://login.microsoftonline.com authentication endpoint.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file azure-identity-1.5.0b2.zip.
File metadata
- Download URL: azure-identity-1.5.0b2.zip
- Upload date:
- Size: 215.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.1 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
095873d61c6a4474831794b6232f156c255ff883cdd14195dc3d2c5f823559ae
|
|
| MD5 |
ea8d9be91113ff369d2f9c8b2eaf115e
|
|
| BLAKE2b-256 |
6d4bf63eba115af0c896a16730eca54242615e89eaec7722e731a0eac890ed8f
|
File details
Details for the file azure_identity-1.5.0b2-py2.py3-none-any.whl.
File metadata
- Download URL: azure_identity-1.5.0b2-py2.py3-none-any.whl
- Upload date:
- Size: 98.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.1 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea415bf5b76ea160f311d8a89c0b97200c48d74046ec4e393883351dbbf01056
|
|
| MD5 |
e797224f70d2d4ed5c10ca6657a8cc0b
|
|
| BLAKE2b-256 |
7d3d796ab48023cf1b3660f731bd3d9831466404115a06bacee572238e80246c
|