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.0rc2.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.0rc2-pp311-pypy311_pp73-win_amd64.whl (36.7 MB view details)

Uploaded PyPyWindows x86-64

artifacts_keyring-2.0.0rc2-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.0rc2-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.0rc2-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (36.7 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

artifacts_keyring-2.0.0rc2-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.0rc2-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.0rc2-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.0rc2-cp314-cp314t-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

artifacts_keyring-2.0.0rc2-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.0rc2-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.0rc2-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.0rc2-cp314-cp314-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

artifacts_keyring-2.0.0rc2-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.0rc2-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.0rc2-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.0rc2-cp313-cp313-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

artifacts_keyring-2.0.0rc2-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.0rc2-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.0rc2-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.0rc2-cp312-cp312-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

artifacts_keyring-2.0.0rc2-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.0rc2-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.0rc2-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.0rc2-cp311-cp311-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

artifacts_keyring-2.0.0rc2-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.0rc2-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.0rc2-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.0rc2-cp310-cp310-macosx_11_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

artifacts_keyring-2.0.0rc2-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.0rc2-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.0rc2-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.0rc2-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.0rc2.tar.gz.

File metadata

  • Download URL: artifacts_keyring-2.0.0rc2.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.0rc2.tar.gz
Algorithm Hash digest
SHA256 f2665ee6233e80d976a77a4bc5b75d5585eaf3d178971c1beb411bfbbdf7a826
MD5 54b39deeacbad47097af8eb6a9f32dc4
BLAKE2b-256 efeb0f321d6ddac03bbd65933da624b46c52a1bcd63a4b076747cdc4ccd6531d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 64e1bb2d40880f50541ac374c9b7ac6e7ab6d3d57d89eb814f246b46e61a3a4a
MD5 7012cae178464d09851271b948881e1d
BLAKE2b-256 26ae1487df20fa479d20c30e6a3d8a48c54e7ca09b871b72cf180139e534fafd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c65b4e60cccd8d774cec4172195997704ddafbe598c669d53d7b94ed776eead
MD5 9d60188e15cc73bcf09b421b5303522b
BLAKE2b-256 eb2dd0bbac59f5e6f9909806b00906d4c7337b333868cddf4a1613d723624169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39625cb2a02f9184551f52d53d25828a79c305d57c55778a41ea0b111769a32a
MD5 4027f47d0548fe21aaa902f9ea77d934
BLAKE2b-256 d60c116019a126825ce3862fd3bc1dccbfca5f3fb4ac15c0ef2422023061f516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d76ba3c89efcb656a77d51912e138fa1502bef46c3de94e32f96baf944e0ee3f
MD5 cc9bc6f6eff40f2f21148f1dafe2cf2b
BLAKE2b-256 d883b40d989016d2ac4423f1e8c240f8678ba615972c5edddc6cbc14174619e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c1e717d2ab52f00a6b00e68e3681686aea709256f184aa53e2f2b29a0c8623a3
MD5 e602179704743ec86331ab7fc249b524
BLAKE2b-256 26fc6850942370b6cfe6958a68011b93ecc50cbd0846949047cad745d1d3edce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1a4a1dc8095fc76f633a1e763222021cccc2191bd71fdee34587df9c407f19f6
MD5 d46d50c49369cf8a65367fefeb51d75c
BLAKE2b-256 1b3b234e42ad89b39dce6515f2aa48997bc57ca479fdb424ad87ccde2af7ebb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4cabca523773b4c3d479ec6050be0282b5786142066e1e5e0e85603c3b76132e
MD5 f015f9d62800ef4f95aac78d57febea0
BLAKE2b-256 289ed0558a3451cf7cfcaaa3c410f9aea0045b19584695b754c004235f8a91fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fea3fbbc9ea818895c92888a32bb888b096d79cb3bd8418666c6e0033412392
MD5 c815c7bef8b459ee143b8352b4c7f8f3
BLAKE2b-256 a03ff2c13549a9e7bf2256691af589425be1a96b0868500c8f40b8693f47f87b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 304d8173cbf7295ab44d818960e1518e451830ae8843d6f8e55596ff33c0bd67
MD5 c14ed15395f4ef23733b233f75a85e19
BLAKE2b-256 3d6e14af8f1af0ced4148fac05bacf4afe21772d32a64a74e31e690e979cb14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e396084218004fb195c2125d5a9589efd38a93c33c2551cfaaf1cb0f6ff80b02
MD5 1ce0921226f4f4b3f36d8a4d12132a83
BLAKE2b-256 f8010cad1474c661fd2dfc7c6a2ad84c93d3f9864f74a3714c4b9cac631d08a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88e7cc24257b55b33e44729b163935a841ba7bd7ab179745e543b87c31075b1c
MD5 221fd389cd4d9866e9cab87f826e67f8
BLAKE2b-256 657edd35a89d534ce123eb8ac0f4e203d0bd15de3d6f9a9443afca5f3f5d1f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f42eb05c8a993a10791c94f95708da890b5fa37f1bb25dc1471810291a79f39d
MD5 5816cb8ba09fd1c4b2e6c4b067646f52
BLAKE2b-256 09ecb92d1d69a6483cbf20f2fa20a28052d1ba79eb150c91af8b86a698f80c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 675176da2185b88b7144102cef2c11337b5f2360ec62fc73578486a04616ce56
MD5 eb1b99917c8789ef18fd899392565dba
BLAKE2b-256 fc384438f1f3d5e5335703f18e37cf98b93540b57dd8c01abd20b84f3a41fd9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 779f1bad8c7c086d9cd8b294b47ab53ec5a8733c0bdeee05650c4be325020bde
MD5 bdf1511c08e30fbaaa11acaa544500f8
BLAKE2b-256 3f1426368ec00f2ce9ff8f9505c8ac7014b4456b1e40bb657de060268993db69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9622d72b803a120b484824ab8a44ac69076d941a298b6071424e78a723d1cb4
MD5 72b60ebca02bc2c8b6c2d04063e45f5e
BLAKE2b-256 1c4957ba1532e69934aa4e2c1aeaf29d9f486053c0616e17865d502727f28a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ba53f2ffd925c2942120777d6b0608acb231033ad2d2b86708f29f5b51b2940
MD5 ce8157b0391d4bc403f99f3f6a53de89
BLAKE2b-256 752d1ff41af186052c3e0d2a4726371fd24e6ae9fa319f2827b8f322f57e896c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cf05beb93fc6af3b183651cead73205a96f8817fb2f35ef3e97992742ae56b00
MD5 cff951add1a1dd7c793439f44ecd3109
BLAKE2b-256 edc4482b8d03b30995f35ba04fed3f8bc8608c4cba53d0ea0108b20aaffdaa8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bba7d5b286f2a8952e973e3a4a632db5f71beb90e3031d7351fc8895bcb3f7d
MD5 9deefafa00474a708dbe109c2681125b
BLAKE2b-256 273b2d6e56faa1e66a545ce7e602f1f033e128e2b02bcc0567297c92fe2f5d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 295921ee7f3e47fcd1173d14a3ddbedff333764800bf8b2ddb021cedebc43ecd
MD5 a1d89bf08c5330f6656fb697c2746920
BLAKE2b-256 3f3b00f2918ec2457f8c1ae800c23123fa4af071cd234434a87edb74c982a311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b401c6419d831ea58902579b7c8f29f0c85111bb215b00934d98b991875c50d3
MD5 34277f09cd695bc529b80e7f0d439e5b
BLAKE2b-256 2cd03ec2ec80014e4fdf5f4d54e6a5d68c5b274ea0f39c4324c600c7e5fd9ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 879fa52413f6e6d32cceea362ace93ac063fe7ae6bd8162026684cbac2a71657
MD5 e517d5e10370e92c41c81d9edb7ea7d3
BLAKE2b-256 d69c81cc4da781a5095e54392cb3a5860f7cebe66deddc19ab0f79f3a2de5bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecb5ba8481827fa25377b7d781ce418fd0efc2eecf0aa011bc73003c0736ded0
MD5 eb909cbb583a029bdc232c57bfc71eb6
BLAKE2b-256 b92fbf19b32cf8cf53066be7d62fd9a71d171c21c7bc3016f03ffda30e075564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64ed661ea973b638c453e3dd63f2fcc5646fb4d6cea4ce8668b783dd20283b87
MD5 33bb614e94769b7ea0b1266b7c422a43
BLAKE2b-256 ea438c5a78a73bef437d03696bccf352fb98d5c23510dda60a5afcf5c4034fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f729a3c963d037b305edb1b60a7a212fe4352b0a451f3537e36e10b56f133eac
MD5 8853dae7cbff27b47da50252c0e9f9d8
BLAKE2b-256 2c37b66da4466889ea76fde26770ac079f365590a0d350a3fd16c3efb52c02ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53deb35f4ab132ac5e9726b29f95e8b94bc223f755db38d0251fa02b76d857bc
MD5 89c00322c321f9a86e7b96022a4db1a8
BLAKE2b-256 bf3346ceca680008f648dce22da0da992c545592c03715bc4710f05af15f077a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a1b40439b13d9167abb676b9b5c316519f7ab92e4e0ed0511b742630dd1bcc5c
MD5 68783fb57afe1dd6c5b3af68b63bc775
BLAKE2b-256 923b26253aa2cc14d02e2c9cbbbe421e64bbc3456d889dc194c7764e51e54349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 06fd875d3841ff6e41de68aeb525cb82a445c685de38f9f748f77ab97d29a2f8
MD5 e009e3c80ddd8fabe89b7246291f5915
BLAKE2b-256 35c70bad6c1b29c47b7b871a5a5136385fe2609ebebcd7b89e45ec981ca567bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d91bdeb7ed40ae373cc62c5026b3c75e4d855ab66113234d77c4a477cf095d2e
MD5 7d3e27f37ee39db39cde8f311a5da4e8
BLAKE2b-256 2a098379a2f2189cce2af43b32d95067e7d15b98eff2467ebbe24faaeb4c1c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36ed3676d6383e66282bf20b7ec59c2cb16e8c2de75492ac080b2a9b20f73c33
MD5 8bb6d1906b5f5db10c40bfa2bfcc69a0
BLAKE2b-256 1d6a951ccad53ab97a1903c6aa50e762e162243c5ea92e02dad3655b558e582b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d23ea6eb9bd55e70354a57a1303790665d48d017164633784bae30edec16a48f
MD5 1b7d5eb5154768458dee595767e41393
BLAKE2b-256 700a82aa1f8adf1820f6ed91e0508c867b5b1855dead4ca5b0bfc834c112c8ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3c3100fbdbfc72c82fa11a3c1a2285a2bddaa8c26b37d66bf50b60769f9741a8
MD5 d9df16877111f1e727418f1d45ab15fe
BLAKE2b-256 f0eec8f68fd6e7a49481e434ee115609732c83c3a305b1f52c4a82c920830e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed5fef2d577bd3373e0c77f1826434548da10a2fd0a4182e5557f929e916f4ea
MD5 7606363fb3a145554f4da2c7815930c9
BLAKE2b-256 99c9d88a978e3cf5239f9a9137f5b1c9cb7e758b7439bd3375cc8907fc632082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b4bcfa6693a98e4a90460b39b7baf737ac203a9a28abdb0cbd557912464c376f
MD5 7ade53c2c7b122814b6b1a30ea0414a1
BLAKE2b-256 9f1123b5dba785a2861fa0cccf11de586112e1c52ba286394e1283535388c00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c6f91bb59cfdf0d004cfd9d4c8bcfbc7e603aece8973a9732b400a0bf634cab
MD5 13d76d18dc3c9f2cf47d28bc66d66b12
BLAKE2b-256 3cff49230aefba07574a87d3feb9f2ab671e3b153af8682229632df2ae8e1b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 02d5f53275020d9ab0ac10dc26b7e03b71ec631484345c3ac14c0a44ae269236
MD5 aa6eac9f86d0ff526037e9048a363255
BLAKE2b-256 b0421bb615da0e3852f3d6ce34c118cca7c98bd9cbbeb08167ad133c00cacb32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a18eba400f7aa7eaefbbe3f7d8fb8e3bc460e01f76b7cf8c94d4bea21c80845c
MD5 3f06d277c9b7e883ae0689fc22bf72b3
BLAKE2b-256 1e60dfb4c2e272a2cb0b703588986dfc406391cf9f0f0c473c9787e5365a7aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7358320004676eec4fc110507ea3993579e57993b63d51a22f217f3d497ca1c
MD5 18ac485d93a0d5b42718375c5992799d
BLAKE2b-256 6effd57b460714e0b83d4af5c8c7f2bd6ba5b2d99bcaac9dc0a89e4d339740f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 01e525a8fea344ebaa5cdac2a47a2ece9d0cba399edc334004a22dee47763513
MD5 92609857de24da35d08192ed80631480
BLAKE2b-256 b72af95338d78947d3048e9bec38f918d0a1e98dc26716b4ad3e70205e515a89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc255fc7fbcb51a7349e381dff56aa5273a8c476144cfed8d41cf92e6eca7da8
MD5 de98cfc86b1631446a9d4d7e871f6636
BLAKE2b-256 130188d62a138aa9ed57a87ce2f969050c98d6c21da9286ecd5d1784d78a8797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 89e49e2862f8f666ea22237e5408df02ac81826be7cef5775a0395f1c5767aaf
MD5 ca37871864635860496ed534f0c36940
BLAKE2b-256 4112c80b26edba9541777c7a84871e2ec1f891ade064e6521f32e0b24166ce37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40a0ff95e92397eee5dda767c09d70f2e3f0c22138787ab20e978f64b2f8e969
MD5 3cd1a60ef1f79a2c1abe7c30ab979568
BLAKE2b-256 c09a9fed40dce732a1ad34df94983323e929b9655c517e07233f6af9768fe504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e68855c386754f236a560633af51068fac2fd62b45e8988c39576310d134dcbe
MD5 2cad20d6c23e4eeb02ac996bfb801648
BLAKE2b-256 6fc4488bf01f5dc6f4981304d2b83fa2efae70f2eb02f7424c758dd26ea0f189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d612bb52d35cd4ac090aeaf3090dfd97ceeaa269ab1b9b888dfe11aedda91f2e
MD5 69dcb40fc854e24ac0fe3e495d1af473
BLAKE2b-256 868a5114df5ef94b8f21b41b2678680075b26faba691a0bbbad7d4dc8df20134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f293099bf4131a075ac0cd0f901f91a6cfed9e95202ee400c6425de4b8081507
MD5 22202a63996416909f40deb94f7b0bd6
BLAKE2b-256 f32d5fb56fb419173aa9294c99ec0f107c955782fb7debd8507c38f9d6ff6903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3685c7d68cebdb5576ec191900de44b934298952e36ae1222804fb5e94ee0b96
MD5 6078f2ab924a0f00a8000eca65d23965
BLAKE2b-256 2e5ba2cb88f5c7fb7dc628009c7d498689c6a3b83d41c53f3d994428da476634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecf47abdfcb4ffea6a7b11dfa881bb41ed1e3affb50d045acbb1d6c2b49c6878
MD5 df27d7fad172c8d898e65ae37f40c124
BLAKE2b-256 b63d60f1d28a2f2cfd9fbb3f72ecf83456072b0df30e17ecbc02960f57742c76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 52e9e407c489c635dc2995ac744eb8b7c3f52b88dd120e7c7463bac1e2936621
MD5 7129727f51b101d7e36a45f6043271dc
BLAKE2b-256 644357d5cb5f9b690e5b764507c9344558997af6c68ab36c348fafb0120463c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 35dcf85bfdf9aac604cca5cdbe7af35083482e6f5c3b9aad0db045faa26c54af
MD5 679b7a1533226f2ffeb8af437c3e31fc
BLAKE2b-256 643026b0ed47e0c0ab043305f13419746c99b6f278bbfb7f128ba4e2a29c1a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 48970919c85e125b469b13195fb0240d22a0311b12769958c9d72e95218cbb62
MD5 e3b008a74f938050ffa922dcbf71d54b
BLAKE2b-256 1f42d2a94ed9fb21aae78a0558aa521aca5d47566d4cdceb7ec73e9f8b5ab269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6915d9602f84d5be9869987a3522ed518412efcd3536ce7108a21fa8148377b
MD5 f373ea6831296474a54fdb372a94e3fb
BLAKE2b-256 35cae5e5e1a31c8eb196b94ecba8e42af8359729b56af2d4efa96c91b9615621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3406bcfae8e8802f068bdcdb73a76a3cdac5b4ee4f55480bcb042221048db96
MD5 b23b46f5a136d5ae6aa478a191c6bada
BLAKE2b-256 74958abd55dac292fde241b31bf61b948319aa85257aa2dc31fa5dbdefe88af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9f23795e6d286a6f9c1c8a0313abd4c545c2f97e6770e96bc0e6fb6c9ee3d9db
MD5 9f5f53fad7b0753e019f87bf4acd389d
BLAKE2b-256 30a008bcd695e33146a58fcdd72394486abb9f8b8212819f688073fb09a6b31f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 393844333d488a943719e6ff2fd3c83c275d122a692763b9618c32046763dd69
MD5 fd4595351ace7425c2188a631b733324
BLAKE2b-256 808d62b9fa160a79a884167fa519f2cf636fdb8e6798f5f05439e3be650d857a

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