Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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.

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 11.0+ x86-64

artifacts_keyring-2.0.0rc4-cp314-cp314t-win_arm64.whl (36.6 MB view details)

Uploaded CPython 3.14tWindows ARM64

artifacts_keyring-2.0.0rc4-cp314-cp314t-win_amd64.whl (37.9 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

artifacts_keyring-2.0.0rc4-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.0rc4-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.0rc4-cp314-cp314t-macosx_11_0_x86_64.whl (36.9 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

artifacts_keyring-2.0.0rc4-cp314-cp314t-macosx_11_0_arm64.whl (35.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

artifacts_keyring-2.0.0rc4-cp314-cp314-win_arm64.whl (36.6 MB view details)

Uploaded CPython 3.14Windows ARM64

artifacts_keyring-2.0.0rc4-cp314-cp314-win_amd64.whl (37.9 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

artifacts_keyring-2.0.0rc4-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.0rc4-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.0rc4-cp314-cp314-macosx_11_0_x86_64.whl (36.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc4-cp314-cp314-macosx_11_0_arm64.whl (35.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc4-cp313-cp313-win_arm64.whl (35.6 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

artifacts_keyring-2.0.0rc4-cp313-cp313-win32.whl (33.8 MB view details)

Uploaded CPython 3.13Windows x86

artifacts_keyring-2.0.0rc4-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.0rc4-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.0rc4-cp313-cp313-macosx_11_0_x86_64.whl (36.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc4-cp313-cp313-macosx_11_0_arm64.whl (35.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc4-cp312-cp312-win_arm64.whl (35.6 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

artifacts_keyring-2.0.0rc4-cp312-cp312-win32.whl (33.8 MB view details)

Uploaded CPython 3.12Windows x86

artifacts_keyring-2.0.0rc4-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.0rc4-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.0rc4-cp312-cp312-macosx_11_0_x86_64.whl (36.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc4-cp312-cp312-macosx_11_0_arm64.whl (35.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc4-cp311-cp311-win_arm64.whl (35.6 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

artifacts_keyring-2.0.0rc4-cp311-cp311-win32.whl (33.8 MB view details)

Uploaded CPython 3.11Windows x86

artifacts_keyring-2.0.0rc4-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.0rc4-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.0rc4-cp311-cp311-macosx_11_0_x86_64.whl (36.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc4-cp311-cp311-macosx_11_0_arm64.whl (35.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc4-cp310-cp310-win_arm64.whl (35.6 MB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

artifacts_keyring-2.0.0rc4-cp310-cp310-win32.whl (33.8 MB view details)

Uploaded CPython 3.10Windows x86

artifacts_keyring-2.0.0rc4-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.0rc4-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.0rc4-cp310-cp310-macosx_11_0_x86_64.whl (36.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc4-cp310-cp310-macosx_11_0_arm64.whl (35.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

artifacts_keyring-2.0.0rc4-cp39-cp39-win_arm64.whl (35.6 MB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

artifacts_keyring-2.0.0rc4-cp39-cp39-win32.whl (33.8 MB view details)

Uploaded CPython 3.9Windows x86

artifacts_keyring-2.0.0rc4-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.0rc4-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.0rc4-cp39-cp39-macosx_11_0_x86_64.whl (36.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

artifacts_keyring-2.0.0rc4-cp39-cp39-macosx_11_0_arm64.whl (35.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for artifacts_keyring-2.0.0rc4.tar.gz
Algorithm Hash digest
SHA256 b0cc0151acc4dee14176d9738666a9d3bda856c97502d3c06876cc69992d13b8
MD5 52e64f20801ea05bffe8fe07de89bc2a
BLAKE2b-256 75c4a7b0daaeffb01a99e84cfe85af9f2e446b7a97fed96387f9acf69c2c951a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c663c7a7fb8532be645a22c6138522c2b78dd2277feab03e17f744d20fb38d68
MD5 e70a4024c6b4243ba532df4e438797a6
BLAKE2b-256 dc9b8a96eeb66f7b9241241bd0a7eef2efd12d65c56a691b44aa650dbf96b72d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25db4fd84260b5b1449c104544921df4acefb6d79fa121fc206ec37ffeb604bc
MD5 d6f96b69c4be58265e3e31babd0a9771
BLAKE2b-256 18b8fab64e2e3afe3c896619aaa1deb71aaed62197509546e6609d46e733f9d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1dd60cea1acc11238c2428a7dda7a76bff651e52914b7b60e3e4b22985e839d7
MD5 80d191dde531632274dd379f118025c0
BLAKE2b-256 79f6d48250ee42f148c1e7c42d71e9d3e4f6ebea6805995061e7bf0cca24d5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 53acb033527865cb54407dbf804e179c38840f39537158c114b14416734ea6e6
MD5 0c37bfb59b00380a5ed3c8abf1dc6107
BLAKE2b-256 755ea234f0a0b30934a8749b9760e6f0ed0e35c53935dd5d52a360d6d425af42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9ac11afbe948bd8840d9f71e341be4113cb5ec21f37bc66a14feeed449cea556
MD5 077ef74cd44862bae3782f603b1b4c75
BLAKE2b-256 517d23ae1eb7f9b802ed97a80ce2cdea603ea502b4f5368daadabda0907716fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2cd2c2579ea9d2ce3a9f3ca6ff775070afef3cd86d037bbdd5be052affe68b9c
MD5 60687952b4da47e093594732ef56a838
BLAKE2b-256 b98113c3cc1ecc3c1a84268277cc8d694aa001cfc981e547117599ef4e0bf92e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f2800ec262276db28af3d1a4675ab9ea0a1ded8cecd6a7d4f853822ed6ddede0
MD5 5ac9a90423b6fafee3f9d46cd3df8312
BLAKE2b-256 063459a7065e000fd87b7310e8db34e698cb4d866feda5b5325a7b4398ecaf77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c83f669911458b3bfb63fbbf7a5a4c8d2ccceaceeef3347b9e05a6f857ab41b6
MD5 ca87030ed84eb386c6f0d37e691d0767
BLAKE2b-256 cb3b174758012efb9e85889b5d70c4d0d627e0119585e7e2018af0b36fa93286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de5f515937820921488dc2b8d43553278f078af01db6d8eec6e18e945f7eef44
MD5 29c8106076441511775b1cdf99d6b016
BLAKE2b-256 76b20616065ef65d24dcd09b337b8264936973fa0864544b85caacf17cf8a407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3a3a0168ebe541a9ed5b4be3c65d907a50fa38c865bee80a5db8d8bf21a9e8b2
MD5 bacadf6a374880ccbf04aedc73da62e3
BLAKE2b-256 19fd0ac0a7610fbc45757d8064fc5c82f253f067eb86c7411a837fd965fd207b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7764f27359c685a508725ae7a2b47ffc2d14ba9a4c6ab6af9d5742764f2adea
MD5 d950f9101cccb4fe545c6bb474451c7d
BLAKE2b-256 0d5e591b2865b1ed4b07a1395ebcde6175322fa56ed9915413275ac91929c293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 54243287a40d5f36ad89e96e2c8a2838446e45194785da0d5f0335c7dbfeb792
MD5 cd7c5fd249367d2153b8048f48fbce78
BLAKE2b-256 4545c266f4f1e175d2a352538dc996618b0baa304f854a9bce4dbf032144e9a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4998ce064d769c4941a43befc88985be5e4551875e2fa256953999682cdf9289
MD5 cbbc14572f4c2aacd5da0a1646fdb642
BLAKE2b-256 802ce1c6b1d2729390cf210d332ed3538d469a7e901baac210ee27a1b96e8377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 41c56793864b98fabc6b55b039ca31cc92ae90f8520557bfd498181d9891ee11
MD5 f6629af72c6d83bad1ee32d6346fa48b
BLAKE2b-256 5f0f78a829b8bfa0f69b4eccd445c384cbd7d6ff11e16038140bafed2371f5c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebb2c5a42f3f8471065ac7271e784ad870d6903947fe8376769b3c09c9eb1093
MD5 7182d6f734ac8b7648b1677981d03773
BLAKE2b-256 842f2a148f1cf32023c4ce5100d19a0218ecb216ee6c8404edd3045166e136d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f14e7d5840c8558bbf0ef9431ec37e3dce38b99940bbac1be97fbef5dfb402dd
MD5 7c0492ec1465d562f93799d557012530
BLAKE2b-256 f108d06bd14138e7c8ec8ee162ab8592cbcf18617c1c969dc70f7e460fbca702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b22e1b57c95cf4b6b039fc6424749c85754bdf5c5743e0f2b5f671d49cc94bff
MD5 dc820f243be25b1bff70fd49e369582a
BLAKE2b-256 bbeba07450374f14e406942dcef20a0ef2d1d500773006728f9cd8c744596905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f97e65e026c2624c33ec9bac12b835a761b5d717be29408239a94808e39e613
MD5 3b5eca10e5963178abc53bf092049dbd
BLAKE2b-256 597665ce91752568ac2655dd10067982ab48331623dfcaacc62e4ffb87b4bd49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d2a31114b13b633e45e1a3439b19ce09ac5062dd1221b46b3b50d0879249245e
MD5 9320747f29133fa2274cac84fa7d2d35
BLAKE2b-256 c97c813f88dde50778116df2a30469447ad2ae97490a680414d28f23699268d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ecf3ca640ce26ec8d1c3fa4704858bc89979a664de84f8819224f14c8ef51d02
MD5 0e3cc2facae268295eacba4f4a0a5197
BLAKE2b-256 74678f01e7587b4dcd7037bf39bd53403337596e18f868294d91e6dce8597aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4df2e31e47859dd1d9199914d359b7fded9d721fc61e69dfb6bb0a34135bdf6c
MD5 6f5e07028d0d84d39a820aa9fb8ae2f5
BLAKE2b-256 5cce63024d6819f8391ba39667238e944ff4d49f97cb0efbdda5d874a5d6f418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7d807bdbb74ac1f161f76496d2250fa00a616c49344986157475adc55909fa4
MD5 463c6ab89982cee2d33357f347806614
BLAKE2b-256 5035829dc85ca37023c1c3d6560895653d6de83c5d478ba1f12ecb0d420442e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c387b602c9491b0b60a82692cbc80c7c74f918ab78bab87b590275fcaa1d7ba
MD5 86bd784865696e4d026103e82b1ab512
BLAKE2b-256 1cff6481de14f74f6612ff78f91d8b54db8d8d99aedbb8ca4f10ae362086d1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9dd70e3669941537ffdd986dd21dc5477dcae7e58551c09a525b8c83f929d04d
MD5 d14b4e3189c6a059fa0175205a774bd6
BLAKE2b-256 ae90584d4823c5d8efafab85c3bbb849a4db2379e1c3d0ea3ac61a7b67081c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 086c947b481cf2994dcb894d90b86cd6643b19990f1aa2504449a252c6d47a89
MD5 2e9f70961e9a2320a7ae6847d955a42d
BLAKE2b-256 bacf9c1b46b29312b164a4c8230eca00bc39274c1a2097c450017cb9411a769a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 80da2811f56aad2e363884934b07ba42f6e804175eb5f99b4c4c93ba0bb12bb3
MD5 9bf12b178df6f6da8cd843d56fabb572
BLAKE2b-256 c3ff6fcf627ddd8a312739bbf0d2bd4f3e4a42ef48f81ffa68012a98c00095dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a40c988d1d3b8bde737fd34b9ae397d20cf3d2ac50f9a9996d7d406fadee0b7
MD5 b6038fa1530dbc84e0dd2e99ce87638a
BLAKE2b-256 d5bb81be0bcd2b247119fc29873e9ece0667bc937e6f44968ee820138d396302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1980d9a821d8868641a2462566344104bd5772447bf52a725b8f1ccf017fe770
MD5 dcda9ffce0162df87faa5758d7ac7644
BLAKE2b-256 8c750d07d694ab355c2e8acbb3b2622a42256b08d9cbda31260999fa33e562ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fba314920ef25e597ffd83a74b8de1d120dfbbc3494b85b5504947bcd47e880
MD5 043ce958d4cb1271a947078c9036a671
BLAKE2b-256 19d6063dab73c677e556af8890743db89263d52959d77d8d30ae5c7c9608262e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0adfac7f7314fe4a8133336fba028aa5ab97c2f5e8de809e71d7407f9fd01c17
MD5 b75996c5d2032796ed88127aefd777e5
BLAKE2b-256 783c0ea9e7ee17a5dd4923f3ec74fba903a46d359ce538992e1b3165f9ffd2f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c1cc364d8b62b1d516ed516b5c0d498df7ad56a2b1ed3a04184d67d8db51322a
MD5 1ca9e7e7bc63cf1332ce2ca464a40130
BLAKE2b-256 4ac5fc3e0a88748c62119dcc52abf00f2d903e25a134f1c7a83b534c070a97cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdb44dd576171c5fa8bc319545b620f6680261975b373eaeea7bbb1615fa763e
MD5 889b960d3d7b81fc0fa828e96d841e5a
BLAKE2b-256 d6990a97eef0ebfb78cbe1d8b57188000f6d3c5a45d675eda22b58ad91bca882

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 27029a2df7855dff52590bd686c5feb1e47b5de7463c43363fe589020c44061d
MD5 6bb4d57495e59a35c5564f4cb3ffd4e0
BLAKE2b-256 636e5257117297c439b5abde0dc8a3bbb688b99e39def7835b58957172f24ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9320f38bb02bf6f1a2e779bb10160f167ce8ffd8d91caaa37a6f5d4dcd3dc3b7
MD5 1ca5dff9c2d8ceeeab8d17606c4d9d33
BLAKE2b-256 fc314f8392048516c23c0a2f2a3321b9f0eb7c56eba9cecdea44daf23eb2f32a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bfe06b8bf6ff423cdf87c3804c725d8cf7d4c52a01384e02c6767c512b71b0ce
MD5 3605e09c5ccc6e52a7a038bde7b3dfa5
BLAKE2b-256 b76f6fa51ad9011b1a8ad10e7db90a366499df6a30b855c2a83a6a396032e682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9f737c009aa0e934855047fdd2c652596c2a0fb85a6200ca62a848be325ae02
MD5 dafe77825842aacbdec12235e58a6b86
BLAKE2b-256 075f6ddf20e555c60f4fee442f0860b1bd4ddc6ee505c0b06df453e9a3097f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a7f8278f20384c023b24e505069b28672756b5b6a6f2298784cafa6eceaab24
MD5 a832fcb20f620ff686937cc92768532c
BLAKE2b-256 48cc052519c8538f8478fed237166f1d360f6d96e5937feba01ba877a734fefa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 423a51c1ec27b21c40fe329b5a530baf47a423036080134a36cc1935657759eb
MD5 3090ae58b6aa7f5c91afb5ce7ed8279f
BLAKE2b-256 f4afc8916c4fe3acc6d4f6ba01cdc181c0101fd2b0dfa004fbdd735db0987b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de5aa5cd3fad351c6aab45e5b3477ce6888afee2fe6e2d2562bf28419fd4b0bc
MD5 82d955248cdf0337ebc317cfb1685cd7
BLAKE2b-256 e4c2f9afd9b94e4de1d9706f2d64ce27d98f36dc0cc139a6353fe7e5f74610ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a5faa4e324eab2295499977308facc68e04cb211d411c85eb83673ef568e175c
MD5 b619afb4d272e360e57b465f1fb73b4f
BLAKE2b-256 ca8a4be1f9219c09c2543b041ea1eda24d890bae28b4dcb7fbb83cf7a9c08399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c880b78024610a00f0577e0f89909d1efbb39ee80098e14626d8777004fad77a
MD5 aa892e017c472f59e700d1e90a8f3b7e
BLAKE2b-256 61b91afc9d00f341c85108e56597defbc5b07b274421f7fcbe27512782b39b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f09023fa0a95168bb610383acbd9134463dfbdf7f1ec9dd64a067271a6fd488a
MD5 fb90eaecd54a9bf7a66a072738790aeb
BLAKE2b-256 7e1905ecf97df1d1b7ab7dd49f1f26354c5034e35b926c94ad5d7a3876be3d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ede671168bdf1ae78e8335866ed3d5e033524223698170126d77b31cf466dfb2
MD5 28d43e1805f5e57bf06115fe347bb910
BLAKE2b-256 9265aa9f7531d9765be65a84c7beb6326b94a1997afb7fb59bfd684e042ac12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ef5ce29ffa113d4064f9c93b5d9daa2c7842987e05af7cd76318b4bcbaf1f68
MD5 ed33c8e7ee21a50cd499e04ab833bf7c
BLAKE2b-256 f31d8ca8fc04d23759ca4862e7901d1916ce8bd28f6a7397d058381d21834d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a6b670536a28fedd78f1255788d262bd298377189085018144e4cb37f624f20e
MD5 e693b6c6d6634e96688dac3d287ab8be
BLAKE2b-256 d51e155fd88e019027a1f213c8012800c82dbf695d095f6b3d8d08e60cb6032d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddcdac0c5d08db84bcb6fd6d90254282dbf77f1821d341fac3678aeb77d334a4
MD5 806778f07d3aae3adaaf43e47147ed84
BLAKE2b-256 a140c242ae998de6130edbaad0d2784c04f2346cf3ad08a8a25881c31d9ccc77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2663d20158fe94df4317fe5ccc85608162680d8408076618ce58b1407badfd19
MD5 0cce2da87ff28979e3874ee2c4f0f5b1
BLAKE2b-256 949f3d80c50a54a0380ebcaeddde6c4587ad275f2566d5654b7569f27267fd6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 24a502dae58874645c965941eccd41227023089a0cf24a2c3bf2b61edfbd3629
MD5 b71addd9c61729c330eb2456fb19b420
BLAKE2b-256 52d9175d3f0c1496ef80fe3fad72b5a627e3c5675b777a2d8cb6f59b9d61b08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9a674b05abb227d5f07951cdef101cb2497fb24d84548fb1767feaf92b1eaf63
MD5 4f3ae09bafbcaa2dc6e07090dd913a08
BLAKE2b-256 6dc498d75dc2303ccbd168d40b5f65a6a954329ad6292639527ffc6e40bcd9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a45a8260b62ed9011913fd12045dfa739d62a30dded48c51bbe6598718d921d
MD5 387b8abd7bdc86ce3b2742c7bce75838
BLAKE2b-256 ffd52ddcc69b7299069d69debc510aa005728b5477223d3d0360bb62a9bf40b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2aecd76073f9d02357a305d2a91175fbcb8c550cd32457c49dbffea0ad53a23
MD5 f0de5a83f10ceea4e065606c4ab32f4e
BLAKE2b-256 a9d0df46d0d9b888747669a207460bf4bfde345083d8019796b281a76c6c18ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9db23c7f03591af77a77ae3e09a4a46f6a8a854ef205de4bc99de5a6734dfddd
MD5 13832fd43af2d4eb0959bc2e3b616181
BLAKE2b-256 fa56c41e8073b095caed843faf370152ffdde99019f38b15b2d6c54ea8fad206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for artifacts_keyring-2.0.0rc4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79f83764dd78fde62f37e20616b2c9a0b5d3e60a1cd78cda2ac470fe1cf2f81b
MD5 c94764389408a9e2cae168781ad86b90
BLAKE2b-256 103af4491f104fd780aa65904c84db1079dfed2eaccd5b02af7f9527de43ffae

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