Skip to main content

"Automatically retrieve credentials for Azure Artifacts."

Project description

NOTE

'artifacts-keyring' is a relatively thin wrapper around artifacts-credprovider. Make sure to also look at that repository for more information about different scenarios. For example:

artifacts-keyring

The artifacts-keyring package provides authentication for publishing or consuming Python packages to or from Azure Artifacts feeds within Azure DevOps.

This package is an extension to keyring, which will automatically find and use it once installed.

Both pip and twine will use keyring to find credentials.

Installation

To install this package, run the following pip command:

pip install artifacts-keyring

Usage

Requirements

To use artifacts-keyring to set up authentication between pip/twine and Azure Artifacts, the following requirements must be met:

  • pip version 19.2 or higher

  • twine version 1.13.0 or higher

  • python version 3.9 or higher

    If no matching platform specific .whl is found when running pip install and the sdist is 
    fetched instead, the .NET runtime 8.0.X or later is required. Refer to [here](https://
    learn.microsoft.com/dotnet/core/install/) for installation guideline.
    

macOS requirements

The platform-specific macOS wheels require macOS 11.0 or higher. This is because the bundled MSAL native library (msalruntime.dylib) targets macOS 11.0+, which is encoded into the wheel's platform tag (e.g. macosx_11_0_arm64). pip will only install the platform-specific wheel on macOS 11.0+.

On macOS 10.x, no matching platform-specific wheel will be found and pip will fall back to the source distribution (sdist), which requires a .NET 8 runtime or sdk to be installed separately.

Linux requirements

On Linux, artifacts-keyring is distributed as a source distribution (sdist) that bundles the default (non-platform-specific) .NET 8 artifacts-credential provider. This requires .NET 8 or higher .NET runtime or sdk to be installed.

The bundled MSAL native library (libmsalruntime.so) also requires additional Linux package dependencies. See the MSAL .NET Linux package dependencies for the full list.

See Linux credential provider setup for advanced options to remove the .NET runtime dependency.

Publishing packages to an Azure Artifacts feed

Once artifacts-keyring is installed, to publish a package, use the following twine command, replacing <org_name> and <feed_name> with your own:

twine upload --repository-url https://pkgs.dev.azure.com/<org_name>/_packaging/<feed_name>/pypi/upload <package_wheel_or_other_dist_format>

Installing packages from an Azure Artifacts feed

Once artifacts-keyring is installed, to consume a package, use the following pip command, replacing <org_name> and <feed_name> with your own, and <package_name> with the package you want to install:

pip install <package_name> --index-url https://pkgs.dev.azure.com/<org_name>/_packaging/<feed_name>/pypi/simple

Advanced configuration

The artifacts-keyring package is layered on top of our Azure Artifacts Credential Provider. Check out that link to the GitHub repo for more information on configuration options.

Environment variables

  • ARTIFACTS_KEYRING_NONINTERACTIVE_MODE: Controls whether the underlying credential provider can issue interactive prompts.
  • ARTIFACTS_KEYRING_VERBOSITY: Sets the verbosity level of the underlying credential provider. Valid values: Debug, Verbose, Information, Minimal, Warning, Error. Defaults to Information. Note: Setting this to Warning or higher will suppress interactive authentication prompts (e.g. device code flow instructions). Use Information or lower when interactive login is needed.
  • ARTIFACTS_KEYRING_CREDENTIALPROVIDER_PATH: The full path to the Azure Artifacts Credential Provider executable (e.g. ~/.dotnet/tools/CredentialProvider.Microsoft or ~/.nuget/plugins/netcore/CredentialProvider.Microsoft/CredentialProvider.Microsoft). When set, this path is used instead of the bundled credential provider on all platforms. On Linux, where only a source distribution is available with the non-self-contained .NET 8 credential provider, this variable can be used to point to a self-contained platform-specific binary (e.g. linux-x64) that does not require a .NET runtime, but does require additional linux dependencies. The executable at the provided path must already have the appropriate permissions set (e.g. chmod +x).

Linux credential provider setup

To remove the .NET runtime/sdk dependency for supported Linux platforms, you can install a self-contained version of the Azure Artifacts Credential Provider and its Linux package dependencies separately and point artifacts-keyring to it using the ARTIFACTS_KEYRING_CREDENTIALPROVIDER_PATH environment variable. The self-contained binary still requires the MSAL .NET Linux package dependencies.

Example: Using a self-contained credential provider binary

# Download and install the credential provider using the install script
wget -qO- https://aka.ms/install-artifacts-credprovider.sh | bash

# Point artifacts-keyring to the executable
export ARTIFACTS_KEYRING_CREDENTIALPROVIDER_PATH=~/.nuget/plugins/netcore/CredentialProvider.Microsoft/CredentialProvider.Microsoft

Once set, pip and twine commands work as usual:

pip install <package_name> --index-url https://pkgs.dev.azure.com/<org_name>/_packaging/<feed_name>/pypi/simple

Build Environment Variables

  • ARTIFACTS_CREDENTIAL_PROVIDER_RID: Controls whether or not to build with a specific runtime of the self-contained .NET version of the Azure Artifacts Credential Provider.
  • ARTIFACTS_CREDENTIAL_PROVIDER_NON_SC: Controls whether or not to build the non-self-contained .NET 8 version of keyring.

Troubleshooting

Enabling credential provider logs

For debug logs of the artifacts-credprovider, enable file logging by setting the ARTIFACTS_CREDENTIALPROVIDER_LOG_PATH environment variable to an absolute path before running pip or twine:

Windows (PowerShell):

$env:ARTIFACTS_CREDENTIALPROVIDER_LOG_PATH = "C:\path\to\credprovider.log"
pip install <package_name> --index-url https://pkgs.dev.azure.com/<org_name>/_packaging/<feed_name>/pypi/simple

Linux/macOS:

export ARTIFACTS_CREDENTIALPROVIDER_LOG_PATH=/path/to/credprovider.log
pip install <package_name> --index-url https://pkgs.dev.azure.com/<org_name>/_packaging/<feed_name>/pypi/simple

Clearing credential caches to force a full token refresh

The credential provider uses two cache layers. To force re-authentication, clear both:

1. Session Token Cache — stores the short-lived token used by pip/twine:

Windows (PowerShell):

Remove-Item "$env:LocalAppData\MicrosoftCredentialProvider\SessionTokenCache.dat" -ErrorAction SilentlyContinue

Linux/macOS:

rm -f ~/.local/share/MicrosoftCredentialProvider/SessionTokenCache.dat

2. MSAL Token Cache — stores the underlying Azure identity token used to acquire new session tokens:

Windows (PowerShell):

Remove-Item -Recurse -Force "$env:LocalAppData\.IdentityService" -ErrorAction SilentlyContinue

Linux/macOS:

rm -rf ~/.local/.IdentityService

3. pip HTTP cache — stores downloaded package metadata and wheels; clearing ensures pip re-fetches from the feed:

pip cache purge

The next pip or twine command should force a token refresh.

Local development

  1. Install build dependencies with pip install .
  2. For local builds, build the project using python -m build --outdir %DIRECTORY%
  3. You can also mimic the CI build using cibuildwheel --platform auto --output-dir %DIRECTORY%
  4. Open a new terminal window in %DIRECTORY%, then run pip install ***.whl --force-reinstall

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

artifacts_keyring-2.0.0rc1.tar.gz (21.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-win_amd64.whl (36.7 MB view details)

Uploaded PyPyWindows x86-64

artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.2 MB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

artifacts_keyring-2.0.0rc1-cp314-cp314t-win_arm64.whl (36.5 MB view details)

Uploaded CPython 3.14tWindows ARM64

artifacts_keyring-2.0.0rc1-cp314-cp314t-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

artifacts_keyring-2.0.0rc1-cp314-cp314t-win32.whl (34.8 MB view details)

Uploaded CPython 3.14tWindows x86

artifacts_keyring-2.0.0rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

artifacts_keyring-2.0.0rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

artifacts_keyring-2.0.0rc1-cp314-cp314t-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

artifacts_keyring-2.0.0rc1-cp314-cp314t-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

artifacts_keyring-2.0.0rc1-cp314-cp314-win_arm64.whl (36.5 MB view details)

Uploaded CPython 3.14Windows ARM64

artifacts_keyring-2.0.0rc1-cp314-cp314-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.14Windows x86-64

artifacts_keyring-2.0.0rc1-cp314-cp314-win32.whl (34.8 MB view details)

Uploaded CPython 3.14Windows x86

artifacts_keyring-2.0.0rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

artifacts_keyring-2.0.0rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

artifacts_keyring-2.0.0rc1-cp314-cp314-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc1-cp313-cp313-win_arm64.whl (35.5 MB view details)

Uploaded CPython 3.13Windows ARM64

artifacts_keyring-2.0.0rc1-cp313-cp313-win_amd64.whl (36.7 MB view details)

Uploaded CPython 3.13Windows x86-64

artifacts_keyring-2.0.0rc1-cp313-cp313-win32.whl (33.9 MB view details)

Uploaded CPython 3.13Windows x86

artifacts_keyring-2.0.0rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

artifacts_keyring-2.0.0rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

artifacts_keyring-2.0.0rc1-cp313-cp313-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc1-cp312-cp312-win_arm64.whl (35.5 MB view details)

Uploaded CPython 3.12Windows ARM64

artifacts_keyring-2.0.0rc1-cp312-cp312-win_amd64.whl (36.7 MB view details)

Uploaded CPython 3.12Windows x86-64

artifacts_keyring-2.0.0rc1-cp312-cp312-win32.whl (33.9 MB view details)

Uploaded CPython 3.12Windows x86

artifacts_keyring-2.0.0rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

artifacts_keyring-2.0.0rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

artifacts_keyring-2.0.0rc1-cp312-cp312-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc1-cp311-cp311-win_arm64.whl (35.5 MB view details)

Uploaded CPython 3.11Windows ARM64

artifacts_keyring-2.0.0rc1-cp311-cp311-win_amd64.whl (36.7 MB view details)

Uploaded CPython 3.11Windows x86-64

artifacts_keyring-2.0.0rc1-cp311-cp311-win32.whl (33.9 MB view details)

Uploaded CPython 3.11Windows x86

artifacts_keyring-2.0.0rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

artifacts_keyring-2.0.0rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

artifacts_keyring-2.0.0rc1-cp311-cp311-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc1-cp310-cp310-win_arm64.whl (35.5 MB view details)

Uploaded CPython 3.10Windows ARM64

artifacts_keyring-2.0.0rc1-cp310-cp310-win_amd64.whl (36.7 MB view details)

Uploaded CPython 3.10Windows x86-64

artifacts_keyring-2.0.0rc1-cp310-cp310-win32.whl (33.9 MB view details)

Uploaded CPython 3.10Windows x86

artifacts_keyring-2.0.0rc1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

artifacts_keyring-2.0.0rc1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

artifacts_keyring-2.0.0rc1-cp310-cp310-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc1-cp39-cp39-win_arm64.whl (35.5 MB view details)

Uploaded CPython 3.9Windows ARM64

artifacts_keyring-2.0.0rc1-cp39-cp39-win_amd64.whl (36.7 MB view details)

Uploaded CPython 3.9Windows x86-64

artifacts_keyring-2.0.0rc1-cp39-cp39-win32.whl (33.9 MB view details)

Uploaded CPython 3.9Windows x86

artifacts_keyring-2.0.0rc1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

artifacts_keyring-2.0.0rc1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (33.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

artifacts_keyring-2.0.0rc1-cp39-cp39-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file artifacts_keyring-2.0.0rc1.tar.gz.

File metadata

  • Download URL: artifacts_keyring-2.0.0rc1.tar.gz
  • Upload date:
  • Size: 21.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: RestSharp/106.13.0.0

File hashes

Hashes for artifacts_keyring-2.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 c90b18a7ad8c29b430fc660b9aed631f12d9c09addc8aed2a851bfedcc64e423
MD5 6ad081e4d7b3d8bdba7844d25a5a72a8
BLAKE2b-256 2c4dbe51d19b88639e0be60490a731fba735dfe1d5d0e597ab078d40c2bd717f

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2820837fa11c3a70f8358301f25de4b41587e778d56e909e2b2ff4d9e9f2c3ea
MD5 d5589433c71cc71736972c6171e153fa
BLAKE2b-256 52d15f96502bb18d0babd1c380ff69b91ac4c9d89218c128b0aa67c77b35aa8a

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59e3419b0e96420c37c4a0a1ae9c7f7b52d7f09cda4f00259df7151ddcf6678e
MD5 6d70d1a5b36f00ce9ec2ab649afde6e8
BLAKE2b-256 992619601a95eab2f7803007e664f6facdf6ccb7beb696e0d87b8f74010788a9

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa916a41b8995e7c6824c2d54b1131d419ab082f22d14836796e6d2ca72747cb
MD5 d3bf87092d9a9097dfe57c4d82bf613c
BLAKE2b-256 b584c547b1ed5e350b38639e1edc7fc0c671401d645a901702d148571b1cd87f

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f2f3b047285c89c423035b6c2a370fdd768fd2533bd39653dee2a504dc5e0aa4
MD5 6890e9c40040fe5ed9599603d0054305
BLAKE2b-256 382c1dce7652e83c501bcf4d7373fdfd869b75ca7a4333c3ac7c80c24f6c96ec

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c4a9ea4ff7db2b672480fb7ee016d3a121850f0f25994f726bb946e5c00111ec
MD5 19e1ea86089b414144b44ce0b1409998
BLAKE2b-256 16445e803e6237171d63e0625a4555f71d9f2c6ac98fc536cb1e79c406ecfd26

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4a411ac5a7382e08f33226dbd09d1317d2b8ba274f8af2b31588ace2e84b71a9
MD5 4dfff4d4ec3f5bb83170229711939b0a
BLAKE2b-256 69edecea0aa0a66776755f69f943cdf72823e67437f8639e59388f1a9802a115

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0e96c9b804870825af0830e04c49b1298fc0be868380ba4e2dc5352cf0bd1150
MD5 b5f024c891901982a0494fa522bbb70e
BLAKE2b-256 54e717dfe03dacbfdde81f47ac73d4b333e39ad7e3960fca7b2b41b64700b69c

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8464f89404d00069b2befeabdffc33d06a5e8a33000e74bebe396c2adf87cdde
MD5 b43602595d9eb7c1aaef61826bedee5e
BLAKE2b-256 c85ed32f5976f7726d80033cc4cb530f70ae12b66adf50d0c0d48068a7c897e7

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f31c392a323766f646f523d8b25d303d3bc2b54b00ea2abef3b42e578674ece5
MD5 08138beee08f1d9a3a17b240f7795032
BLAKE2b-256 951fccb5a3a14999c141313a81edeee4e1f3d3684d2d96f8a3152a9bae026bbe

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 795b6d6b345fb7866be93464041478eac85f145473dc3cfe98e58f5078b09ca5
MD5 61fd42241201d53f860eb7402197ef0e
BLAKE2b-256 320e98b6d098f740637554045d4b08b92cb43d342d79fd6fa4b287067ccad1f9

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4d6eb665d2eb4d6e22e611379c0e62d785725a93676f88a847e0adce7f5a048
MD5 9d343fea01f77de57765ec68761ac326
BLAKE2b-256 8193548576a46169505d0cdcff5f70f528858101fd5d8539d8af2cab7313f73f

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c2fbd0f85a0f40df7b5d84131cfde93f5e273ba7868849fd6aeb74578e698383
MD5 23b4dd708bea68ac9986472fceab3256
BLAKE2b-256 c04cd85e1711d270dc71579b609cbda8c97166098989050275e51ded53f01f18

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6b6402af19b1774add955cb7653a13f18b910a471911404b7766eb8bfbd48da2
MD5 b03178487425500adeb4e59e51814d87
BLAKE2b-256 5f9d9eed9154475fc13943c510031de3654f56066197e8ec0acc4df4d033a735

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 df9d18ae4ccd87d5412da88a10faa6778bf2089c1ffc325d572c1c12c772b210
MD5 d18a536762d5057b55cf540f74a8f0ca
BLAKE2b-256 46bed9c204950bb599d34a934956b41c9404e60e6b2c12f2b97332f52c1b4d0c

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73698500feca6ec152a7d7fe048d42f93f5adb085e2a416cc6dc36c2ba18494c
MD5 a15d6dee5e31a9d4b2b59957889d4822
BLAKE2b-256 df58f00d7649c24d291f7fcace20fb5d194b694d42f294d822e1b2bdaebe9840

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d11dd0a8ff14c65b9be571d17a87d0e982ab769355240501bb0fb3ff79e7db5d
MD5 1dbbf9534f4357ddf7f0b687eee004b2
BLAKE2b-256 af9950c7481af64302a2a22297e5d3324b29049336b26a64616511ef45db1e7d

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ca94d85642c249227a4239d31ba27849ab03f5a41ec6c9c6e892bde60216ef0c
MD5 02d8500a31b363ce858c2949c5d67ca6
BLAKE2b-256 bce2942adc6941efd2253599e93bdce8c80e693b50aa23c16a8f55c55ac9083a

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee6aa0b2bc2c899b0f0294fbdebc41b831d8572ab23551a3c70a82b861935ca7
MD5 30584333ff2fc3755dd173acfc12d8da
BLAKE2b-256 ed9194bbf8120b9ad4eb3474d71f0933ad175a93789e8876ead5af0f72c64a1c

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0ae4b83813bff4c6f9ef1e6f9eb9618483cb947acf77928ceafa7f35464d8d13
MD5 6a763538938cf4d73b3c71af9519c7aa
BLAKE2b-256 14946b1b66045fb7fe15297f5fbc4bcaa08496c514aab23544c1767dbdc12d90

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9d18a8b84f963f0625afd5ebdbc862a90dd4bc74a57a65711e5ec54b833604f0
MD5 4f199e9c7c4187df472ebbd3dfdcbf4b
BLAKE2b-256 a7ec5b40b3c4170f6c62aff6b2453bbb358fcbf0a8d048e4deb1413cc25a2866

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b86adb81004a304c46fa11146a0836dbf23cf35759fcdd6d59fa5c5d8501e0c9
MD5 70e34ad8741bbdf2f2acaa987ad33bd7
BLAKE2b-256 0d89fcba41956857ab15a69823bdb6d5fbfdb7b58bdfb53ac925de640b47d4da

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5256a87c85411c2ce78b8e3c5b1148f7c45e06d54a3f15a0d2f0cc5fd2ba3238
MD5 a7978e62c153fb1ba72fafa1ce5a452a
BLAKE2b-256 5a069b4cc50dd505a82706d54547683a1243135ffcd05408152289acb1baef47

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49b839a903fcdb6c20fc03ce60c59aac4e5ffec9f836c0655f6121ce2ad02406
MD5 55ef1858cad311ccba929104dca72e4d
BLAKE2b-256 ebfa7ba74faeb6933075d45ab66c7e0427ece14de1e9a6b0a26d3805793098b9

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2eefce9532f6f097ee59fcee61044387c6e873ec3db4fa39d530f56b66f94a80
MD5 0ffb6fedbd4112eed8f6e95c47734737
BLAKE2b-256 4032af6fd8d62d488f7588b1a100958c8d3a825091fdf843e683fe2d889b6a64

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7925d8b61140144ef1d22f43eec7453df358e76593ccb8bd00a9d2897b86bcb
MD5 07463c3380c60ebd984e974d0f22fa65
BLAKE2b-256 d6ebc8c4b63b16df602a567074d430d02378be2ee78e04255d031eddac014907

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 fa672375025679ebed1edea368aa7a62d510027b69497fc91dc1c1df01802773
MD5 67c6e110a9677cd156af7a4b4d4839fc
BLAKE2b-256 62ce83e1a3b7e508cfd8638555492f1b4454e015b9129d5c928a00bddc006b51

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 14cdf202eb75a980d6383bb6fc1fa54634b933c2a39ba2b2139a9682ea0b4b8b
MD5 7ce5f7df4ab0fbf7c9ad6220892a1555
BLAKE2b-256 11945822eecf7cc49ec2d0bf5e2cfcded08255a2b75ce9cbd01525069b5c4e85

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f7109aef864c84a030a5c696def315479cf93806ee0d2cc11a603648a87fcc75
MD5 62ce5249be61b0cd710343764d232df9
BLAKE2b-256 d20bbc665574d2aa1cd9b0448e481e063d3758439b2495be62b0335d0679ff80

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1fa105912dcbf0aca34ac3a71eea0660b9b550258bc0a3451b01a2a11b22f4a
MD5 a58aa73f58c4f38bd01d723ef5793081
BLAKE2b-256 8d768436cfce5c7c6935d7ba0701eafaeb5997c84fe2fd3183dc7e9a0ce5300a

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50d0dc1e54ae5d56f2d8930410e9ad43dc21f5b76752a7575ac7248e0e3468c3
MD5 b8a2d6ffec70fb5be9483dcc08d2b35a
BLAKE2b-256 8f052f5affb8b914a8b1b57161ef6836c7c99aa19a1a75a681c60f0bc3737d3e

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 aaa83a8e1b42eeeed140907fff6780151cb509756a5a433bf1e6104d3059b392
MD5 b5e23967dd46c1aaf8729489f15070a5
BLAKE2b-256 760dc2302dcbdb908cddd484f5d13bf5a362439122c8a4f39ded10e565bf95f7

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2d3ee8067d3411b56c96bf1b20a9e3b110e04edeedff415ef9530a06a15b560
MD5 e0dd5f753e3aa1c973075e6fb06d60ec
BLAKE2b-256 d3b8fd9999bb7f26a31f3c5bd506e30c00255d8703cd0d274d91949329b85fb6

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3ed24ec4ffc0c7ba49c6bf02d5866ba993cc7cf2c85e234b7f90097654018053
MD5 ec607b416fed7daf5d67f0c5549488e2
BLAKE2b-256 3517f69b31449c803989976be8010baf3577eef3870365af9d9435a71666c8d6

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4732628cbba833bec515c0a17378b8644e2ea982d1b641d2fad4f51db7702989
MD5 d70bb49dd5dd0cd22ec4d2fad8ec5dcc
BLAKE2b-256 ff10888e0132358d258bdbf66b513310d88b390af642623909d017e88c0c7659

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 857900b8e135a7e75f530978e5183bef451273e915a273f2ad954ee7c11d71a5
MD5 4b39b6d772862ee820dd88f8ea989f62
BLAKE2b-256 ec91f41470e5123dd7749e6a4bb103e5b29d75add9e51393adfa60429c1980ef

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66b86098ba5b7f3685ee37658974079ec50165c27ce2afa9114fda89c427b238
MD5 abe4ff95c6332b0f005f3e6945918f16
BLAKE2b-256 d0a3d2ca5073ab6330e230200890112062b92b686a439fa47dcc04b11409a9e8

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 883c6d1f8d39a459c23d98faa5824bd857da830ac7395b361f2f4701912d6908
MD5 c53a36c2d286fb2fb70a8f2737a7e2ae
BLAKE2b-256 10c901f884ed8921c377c5066287726a3bca6baa0036e77ea696595052a860de

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a9186a2a9efa5f7418990027f0ea78eb620e2eec28702a7728452b19c58be099
MD5 b896d6883bf9fb64773a13be810bb0c0
BLAKE2b-256 b7922ffde36b3f3982dbaa4337e494b609387663c2cf3c9486546503754b7794

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d0d65e100f270dc80d18ee02222d48f7adffd0091b27fdfe0355a8a84af8395
MD5 63917e3d75c53ec02792188dba651e33
BLAKE2b-256 dd2a3469a94da5fe9d67572f4391525682a1373d59a5b7abc41cdd8a1b596bfa

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c179d55d3ebab6349d30109c9c4f484c507ece6bd65804efd9f89ca3bf81b590
MD5 4a42d1bb8b788d629b159cfa282a44d4
BLAKE2b-256 12bd4b09df481e67aa5c2713e2bc89c035821d2f2f6fc6ce727d7969bb53424f

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35054059b288407127acace540bd9e91c6771d20f3055f71c10d7e07ad015643
MD5 674928c6dac0a20ae3735d275fab8227
BLAKE2b-256 9355b488cca1af7692550dafae0278445bfd894e82540f642bcf91f96bc01373

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d302ff292c92f1882c2eaecc9a8445adee92bec363781b02e8df678558defbcd
MD5 5a96bcb6732950ef70e6432701795455
BLAKE2b-256 4acd92b69e66dfe58b556853d5fd810a34921243f4c771ef5f14ab7f034c7d78

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd64b013fb8ea80f6f89745729f1085a31f6a01add64c3508895301fb610bdcb
MD5 33b8c657f9aaca000dbfaa3d40693186
BLAKE2b-256 296ae52b6b1b71c5555b36295d5cc33dadbfde8de05d2abffe6584289eae428d

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbae415505ab7638d6cc8c3355f04c8b89c6fa94c54959502ddd452600433047
MD5 9313180518fb94273e5256c4ad21c0eb
BLAKE2b-256 555068df7f78169c5ef7c25eb8639170cb51892737811f13fd0235c0a8dd4580

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c10bc76fed07bd027406612bb290cf35e4d15e0878309b02cb0df260d8010728
MD5 4a29c2d2fb5b2905f837ff5c41670c24
BLAKE2b-256 39c65d94bb6d30227e652b5ccfe69856fea3d3be576dd9316ca50972ebcdc721

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda825c137425e6eec54788c623e3f7626ce8d6b72922441bc1e5df07742a5a4
MD5 6365bba780d5ef22fbc6d39992b53a55
BLAKE2b-256 1fee3df5ef7e45bcb8daf511151f7eae18031dda0d676935b76e5063415c7cba

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 422282bfa75df2cc4364ba830d5e6d6a5975387df668cfa9d53c410518e50b3b
MD5 46a64a0a75c5814be7fbad7bfcaa53b3
BLAKE2b-256 c966a72a0a3894bf4afdbceab2eb7ff2e7e184299e5c9a40c306c8b0fc40a0b9

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 69a79b3f71e5c3cb38a36b206eefd9db2fbb1a92b47f49efc39559f7ad1eebc8
MD5 1d1783e404ee8402dba49ba442e53ed6
BLAKE2b-256 648743543bbc0829b6b50df78bee362e4da9ad427c4dc523f964c5c3ee491f1c

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7acd999d95b9454019f829de802c8e3119d10afbdd39dfb07636c679be5960d6
MD5 48e74fa12b1f34a84efc8370afd2165e
BLAKE2b-256 ca18b4fc52a1a3c6f6ad6ebb7244252e418593529eff334e91a06241b502e36d

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73c2a94bb61e437e632ef4df2043c4042f756a1d6ed98ff2d2ec75863f1dc6ea
MD5 e7b26422520d41058c854754d7e64504
BLAKE2b-256 3b24847d8c1ec66ee25088302e74fd624211eb9ea067d76b7e4384bbc72451b8

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 efb35ab827cb26c724aa7d1038cdfefe5d7823d89f673940ffc1b4fae52e62a8
MD5 dad2c4ff4b1bdd3c038dcbebb75b31a7
BLAKE2b-256 b4b1db278d8ea701e9470fd3daa22cded4c6f29b013ee3a574f27cb6738f6a9a

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 532b195a750a502cf8c5b7ea1903f6cddb90b382197ac86ed706a0532edb49c4
MD5 d34c059fc35b165cfe87417bea77115a
BLAKE2b-256 3b14e93208529ae10f50b13a960f99805b4931270794b9cd0cc3a2f01cd23476

See more details on using hashes here.

File details

Details for the file artifacts_keyring-2.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f298ca619289aebfebd5823b13d73fe8d894c7ff0a0a9fd8d91597885191f634
MD5 807ca41ccc41b0fae4a0c4f07162bfc8
BLAKE2b-256 63162773dd649b12c0c38ea9152a2e04274a009883b5818bd4d59dd6a8f69de5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page