Skip to main content

The fastest general Python CRC Library

Project description

Fast CRC for Python. Supports calculating CRC hashes of arbitary sizes as well as updating a CRC hash over time.

Installation

pip install anycrc

Usage

Use an existing model:

>>> import anycrc
>>> crc32 = anycrc.Model('CRC32-MPEG-2')
>>> crc32.calc(b'Hello World!')
2498069329

Create a CRC with specific parameters:

>>> crc32 = anycrc.CRC(width=32, poly=0x04c11db7, init=0xffffffff, refin=False, refout=False, xorout=0x00000000)
>>> crc32.calc('Hello World!')
2498069329

Read the data in chunks:

>>> value = crc32.calc(b'Hello ')
>>> crc32.calc(b'World!', value)
2498069329

The length of the data can be specified in bits by calling calc_bits and passing a bitarray object:

>>> from bitarray import bitarray
>>> bits = bitarray()
>>> bits.frombytes(b'Hello World!')
>>> value = crc32.calc_bits(bits[:50])
>>> crc32.calc_bits(bits[50:], value)
2498069329

To use bit lengths with reflected CRCs, create a little endian bitarray object: bitarray(endian='little')

To combine two CRCs, provide the CRC values along with the length of the second CRC's message in bytes:

>>> value = crc32.calc(b'Hello ')
>>> value2 = crc32.calc(b'World!')
>>> crc32.combine(value, value2, len(b'World!'))
2498069329

There is also a combine_bits method where the length argument is expected to be in bits.

For a list of pre-built models, check models.py. To get a list of the models at any time, use the following command:

python -m anycrc models

The maximum supported CRC width is 64 bits.

Benchmark

Module Speed
anycrc 26.65 GiB/s
crcmod-plus 628.00 MiB/s
fastcrc 552.12 MiB/s
libscrc 198.88 MiB/s
crcengine 9.92 MiB/s
pycrc 8.15 MiB/s
crccheck 1.30 MiB/s
crc 0.45 MiB/s

Tested on a 12th generation Intel i7 processor.

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

anycrc-2.0.0.tar.gz (26.7 kB view details)

Uploaded Source

Built Distributions

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

anycrc-2.0.0-cp314-cp314t-win_arm64.whl (77.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

anycrc-2.0.0-cp314-cp314t-win_amd64.whl (100.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

anycrc-2.0.0-cp314-cp314t-win32.whl (82.6 kB view details)

Uploaded CPython 3.14tWindows x86

anycrc-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (555.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

anycrc-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (554.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

anycrc-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (564.2 kB view details)

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

anycrc-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (575.8 kB view details)

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

anycrc-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl (99.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

anycrc-2.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (101.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

anycrc-2.0.0-cp311-abi3-win_arm64.whl (69.1 kB view details)

Uploaded CPython 3.11+Windows ARM64

anycrc-2.0.0-cp311-abi3-win_amd64.whl (80.5 kB view details)

Uploaded CPython 3.11+Windows x86-64

anycrc-2.0.0-cp311-abi3-win32.whl (67.2 kB view details)

Uploaded CPython 3.11+Windows x86

anycrc-2.0.0-cp311-abi3-musllinux_1_2_x86_64.whl (536.3 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

anycrc-2.0.0-cp311-abi3-musllinux_1_2_aarch64.whl (524.1 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

anycrc-2.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (539.6 kB view details)

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

anycrc-2.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (533.4 kB view details)

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

anycrc-2.0.0-cp311-abi3-macosx_11_0_arm64.whl (87.5 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

anycrc-2.0.0-cp311-abi3-macosx_10_9_x86_64.whl (87.8 kB view details)

Uploaded CPython 3.11+macOS 10.9+ x86-64

anycrc-2.0.0-cp310-cp310-win_arm64.whl (71.2 kB view details)

Uploaded CPython 3.10Windows ARM64

anycrc-2.0.0-cp310-cp310-win_amd64.whl (83.3 kB view details)

Uploaded CPython 3.10Windows x86-64

anycrc-2.0.0-cp310-cp310-win32.whl (70.5 kB view details)

Uploaded CPython 3.10Windows x86

anycrc-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (546.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

anycrc-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (533.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

anycrc-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (548.0 kB view details)

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

anycrc-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (543.2 kB view details)

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

anycrc-2.0.0-cp310-cp310-macosx_11_0_arm64.whl (93.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

anycrc-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl (97.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

anycrc-2.0.0-cp39-cp39-win_arm64.whl (71.5 kB view details)

Uploaded CPython 3.9Windows ARM64

anycrc-2.0.0-cp39-cp39-win_amd64.whl (83.6 kB view details)

Uploaded CPython 3.9Windows x86-64

anycrc-2.0.0-cp39-cp39-win32.whl (70.8 kB view details)

Uploaded CPython 3.9Windows x86

anycrc-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (544.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

anycrc-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (531.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

anycrc-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (546.7 kB view details)

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

anycrc-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (540.8 kB view details)

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

anycrc-2.0.0-cp39-cp39-macosx_11_0_arm64.whl (94.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

anycrc-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (97.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

anycrc-2.0.0-cp38-cp38-win_amd64.whl (84.6 kB view details)

Uploaded CPython 3.8Windows x86-64

anycrc-2.0.0-cp38-cp38-win32.whl (71.7 kB view details)

Uploaded CPython 3.8Windows x86

anycrc-2.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (559.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

anycrc-2.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (549.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

anycrc-2.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (562.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

anycrc-2.0.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (559.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

anycrc-2.0.0-cp38-cp38-macosx_11_0_arm64.whl (95.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

anycrc-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (99.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file anycrc-2.0.0.tar.gz.

File metadata

  • Download URL: anycrc-2.0.0.tar.gz
  • Upload date:
  • Size: 26.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0.tar.gz
Algorithm Hash digest
SHA256 326d7689af4ba89fd9041899bdb3dd25ef43a766780fa8b6228500f69b655b06
MD5 dc16f832d772cf712aa9a5edbbb6e2d1
BLAKE2b-256 3adbc581235b72b3a23be4575fa7627d6ce0d7c6c9432b4a7a4b58681362dc0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0.tar.gz:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e6abee23b3dd527616ede0705e2a9ba0da4b7d40239588e2e5ba13663a5291bb
MD5 f44a172c8af2ac1a25f5a34f2c3bc0f4
BLAKE2b-256 520225ea29b8094f106a6677d5fab27c8021b2269413cb87d0fa2489055709c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-win_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 100.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 da48a73e87096cb99853e1ba5bc37becefca44a03fac820c83323d1ebe4a1e5e
MD5 83d4256b50c420cc83f2f8d4bdaa0794
BLAKE2b-256 9ddb3a9b21bb13fcea4478b3fad558251aa022dfb4e8f6fe00f2340253906fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-win_amd64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 82.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dabc2c251a17d0c2855dafab95dd732c0e415cd7164b0622bff1a701d47767c4
MD5 f48bab18c48fc468946aaf6e803159f9
BLAKE2b-256 85683f13eaacb9d6e0e77b68395ad6feffccb5be930b61b200c0cdfa4416897d

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-win32.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4816fee93b5e9c60f3279910ba9c9e49ea5ca8e76e425ff7ec6663d9c0f8841
MD5 aeb53762dce5528b2338a2a0f76d2ecb
BLAKE2b-256 4384effc086fbadd14921c489dc4396570d201ab6f30c9d3fcdf6eb58d5b6bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f467c7cb6330e4afcac33e91e90035fd81712faa548554c3bcf603a585ccaa1b
MD5 4ca205ab197e94000cef8cd69f05d9cd
BLAKE2b-256 9d71b7451b5e85dbf31670fca0e088b1d3605557b41b7d1aedc8616903e2877e

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6521b5ddac578231baa20854962bf097cd759e295bf61a9d059e1d5a59221ffa
MD5 f19eecb8f06bcfbc1eccfbe5b1f5511b
BLAKE2b-256 11b3d48c08eef0af9725f454834e234d168f4723b076f5895017690ca7ea462c

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86781df255eedf97a05cdd9a1da3fc5c922832eee70302dfb310efc7a51f46f1
MD5 5b1640c0a03e27d2abb08ca5c33a2112
BLAKE2b-256 c8a409129f61e5d86907b536c36dea1c2fd81139dec3f3af51d20f2ccbc99140

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29ada3581aba074c13c9977891900a8ac07bde02b9c2975d1946f4a43e02cdee
MD5 c2ac424444796976b8bf16c117418d5d
BLAKE2b-256 8109bdb0f628aaa9f29039d3bef7dc23fa12c38b72c7733b3b23e66d5084bc2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9e62ac3952357c6ebb455821803c48f2ef5e3510a486becd373a28eb8510ebc4
MD5 c1c696977264108a874efb0c120756ff
BLAKE2b-256 6c10616ed65eb040751fe96b9c41ac7f858363457c6a385d06a5bb5bc3a4e51f

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-win_arm64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp311-abi3-win_arm64.whl
  • Upload date:
  • Size: 69.1 kB
  • Tags: CPython 3.11+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 ac5018ba3516eeed145d0e84684241b8eb2ba5c5ed1edd39e664e451f56be73c
MD5 501420909c16b03cdc1f29029ab51eb9
BLAKE2b-256 aaa76f3d1856eff85753ba5af90787070fdbc2236d089d438ac76ef12a373577

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-win_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 80.5 kB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 c16eb69e4c71f450be57d7a002a847427aedd4140751335f079a7c360bb94413
MD5 b877e484e55cf032a5f7c4bb904163b8
BLAKE2b-256 e30c9161cb71e1cd2059bd05175ed81ca199bda51983559ea60570308127358b

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-win_amd64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-win32.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp311-abi3-win32.whl
  • Upload date:
  • Size: 67.2 kB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 1d715aeccb76c2f12af73ef0addf2f481b8d950211b41c18e30b3c7274295332
MD5 e5ff0926f9741c8ada15fb8d8f47e9fc
BLAKE2b-256 40775b7cfc9ab6064a32f0ffac1cdec158e05ba78dbd27b6df3b81c824fdcd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-win32.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a64e202fc2220997e2285f60f2d42a174db54c3af9b88ffd8e38f6370d1e4b9a
MD5 048eeb98ad9c7356cc562112aa065862
BLAKE2b-256 5eb47d0cab22158577d175b1df4aabec5689454a5e07a442b607a63b845ada78

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-musllinux_1_2_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 460fc6582932c7b05f161b19b108dbd0da58d994ed638e302bfba47ed18247e3
MD5 1841154969579c27485ccbc61aeeae64
BLAKE2b-256 44cc9d03ee13b9f7306e2c68edd186737c8255d73e356ce1798c3e803f0e588b

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-musllinux_1_2_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d044548f70c786f6a088d9c257e56a1acd478c81a60a8f3d4a667570539ca98f
MD5 918e2bc92ac180950d53da0069a3cee7
BLAKE2b-256 0e69bf0e0e15b0a9ea627d902d835cf7385eadfba2162423e0cc86bff9701b09

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9939586dcb02dd0d403eb7f2bbfbd3e4e5b8ee7484c385a4509489b85fbff3f9
MD5 b088ec0284c958bf1e096f254bea5696
BLAKE2b-256 478e106732d0b7a9a52c2a8fa9cc7f0acdd5dec02a6486ee41a6f076b5baca98

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e17b72a2609a66a144643b5115e418ca3c7e07f1eca47ff2a4de403f5ba45263
MD5 c9f17f64d2bad12d934dfd3f5ae3efe1
BLAKE2b-256 7b56b10cd6bb297d9296fcb6c344cba4c69c9414381ac8c3557250af6a140842

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp311-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp311-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12e2afd1f040c1ec6e6be58c6f62ba47a311bb56b11ba5b6f7fcaf8e5261c107
MD5 1b4cf35c8b074ea718e071b8b6918a44
BLAKE2b-256 25436751e2799d56ed72320aa71202228f8205241445a6a00b7a5fbee0311ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp311-abi3-macosx_10_9_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 71.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 89c3d518ecc52690c9a836c27d12a2be3f47baa31ef203fbacbb89179aa21108
MD5 7990e992edb5c2d11fe5fa9b8982c914
BLAKE2b-256 ce6eb14b61420a324f48759b0e514a38a98c83e1be988f40d5e8c74038d39840

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-win_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 83.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4697d881d2705bea6ecec85e9e9b0f85cd729613064dba6edb090d54dfed85b5
MD5 800e87fb7bf9c57ab1541a211ba12a68
BLAKE2b-256 80c00545358fe6c8da62611e02091a9d674c44588ba323e5d69e71b7c8bb7b70

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-win_amd64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 70.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 03f84cc41e262bba551de3f762fac9e189f1a51eda28eaf21acb9cfde6756ba4
MD5 b7edeea2b5ef3468c5acd58719512118
BLAKE2b-256 7be911340a0b30a79ea7fb82e7a0c59dbfd5cc118e3198d5cd75ba022b845904

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-win32.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 230fefe0be22962d040cb96c1f1fbd0e1f90aced4adb459ae461054291a65598
MD5 91fe53c85ac540771d3b18d78b234aed
BLAKE2b-256 74a509011ab71e6f01619b698e1a17d1957417293b7debf79c74fc0475acd54c

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb61cb5530509f0de5684f64f10abcf6a8d38d78232e1b2bb4ec9e1c385ff616
MD5 895cb2fa09f58280ebb752ceca2711ca
BLAKE2b-256 044f583f552d8e30ad6b22649d994b068727beed7dca5d5e3c41f2b691d3e9be

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa98ab903b1ef2526cd83e25f3273f018d80505222e65ac21e9420fc9a7b134d
MD5 0e23adc7e03d630b7585029f5cbf22ef
BLAKE2b-256 c12abbef2873c4e57e8ec063855c4c7d426158a687f5f6d181253b3d1a8f2ec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b73dfa0bf9c706e65f1f766d9c733e9f8c97f678b5ffd204178342ef05cbf890
MD5 be24a5f3660d3fe19eafdab2ed43de7d
BLAKE2b-256 56e5ef6e6eb85c6323298c5262f4b73462bae805751d230d6237d83f806df6e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a697a9cfedb704ab7fbd9172f28e94f4ca6fc5764e98d2b2b0e87a02374f9d3
MD5 f21889ebeb961e30ebb498de4778b6a8
BLAKE2b-256 e3cbc0944eb83970f96f8420a3f5fa18f5af7d82c82c50de3b7ed80f1f1b8ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5a965336df7766d03e92239a656ac3cbe9dc35b9f923674c8611e8be97fe4a7
MD5 5941475b1e5124cca91476d47d2dd329
BLAKE2b-256 ca4b3ce4cf9b44c7dbad609166f0b242fda3332bd10eb5b3ae7d0cf8292a83df

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 71.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ced9f342c5ef876c645fe2ee703aee5c0a3675845b278601adfc1fe22e2471e1
MD5 cfefd49803539cb168bc08a3ffcad6cf
BLAKE2b-256 38eb30b11f3e109dc14e05e3c873b638ffa421fb284a647ad71997d8f3ae3738

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-win_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 83.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9f45cf455060a603af4af387f4f40fa26a6e11b54c806939b0116d906128eca0
MD5 5d5e39982d41f4b48336807f2cdb46a8
BLAKE2b-256 717d27693d09df98c7d05594e9cbddeee3c9e11ac1b3feb35c79fa032521a2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-win_amd64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 70.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 783abf91ece47ebf5743f8965303280febda88824564d7720d72c9f2156e7ec4
MD5 deb19fa89b57f68aaf5c821f3060eace
BLAKE2b-256 6241c55e0dd051bdf9e737b8680f52ccaada4d0af6f72c39b9d79c461e52c796

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-win32.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d1de9735ccb13b03caa725ab32310d114692fe01bee22e7c6460c1aed4a8751
MD5 446c408b660dc424d23a1dfeaa93e69f
BLAKE2b-256 afacb9cece5304dbf90f1670f1a60ddbd8830dfc819bca225962a64355618c73

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8dea03474a91006148a3bbe8dd1034eb4a0ae536e8bf1b2e61d94a8ae5fc5680
MD5 971f51f6b1fec76ed4b753684602fe80
BLAKE2b-256 b7c8f10c45ea69d877a665b838ddbde1a2b22882543aca00f9a70da7c2653b54

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 671c3c0323c89cf7e182c3f5c7e6e20797630ad9e379c80b2fb09f151723d018
MD5 57b341962da4afc54075a555701ca501
BLAKE2b-256 dc84863d317292278c3b5ee66cf725f244895c320324774400b2a76c1d35cd5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0586d70b5b304e488e340dc58535111caf11cc47c4c9cee959751d322e16947
MD5 4b801c2ee1f2ae8286d51ef46a22c9a2
BLAKE2b-256 46b1ebd2b8eecaf87e26620627ef9d70f6b1e9a9b80462c1cb314cc059095eb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45fc1f13b8e4c2af07cc3dd483860afb1fd3748a7a6fd240b15bd605e26cd937
MD5 3c8bbc5064d379724d3cfaf84e3d53f2
BLAKE2b-256 a563876c6695aeb4125a9b514ae5549f362d360e0524091e432f0e4ed5226806

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30d91f1cb3a478888583851d3c5675e7e269f5045b0fd40ee3f6d19442232e16
MD5 9dae6f8c0350dbffe9c9f0d9e322929e
BLAKE2b-256 876cc174166f65824eef7fcc10a874aa596ef47f8bbc5ed8f62e089badbaa79b

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 84.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 82bbb502e9cf2d4eda84d73513e5b3a91ddd0e9c6322d4c1393fbf4753af85bd
MD5 5f3691f55bc5d713806f170aaf7d080b
BLAKE2b-256 bcaed91acf702824f08789daeca8e4ed672a99540664f33b10401501741a74d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp38-cp38-win_amd64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: anycrc-2.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 71.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 60b493d8a9c6f2e60f4389c44a4fd1a2159819e40c08879c405d2a163d2a432c
MD5 38df4e616c53d0d6d10298084ae3b4e8
BLAKE2b-256 ea817e002b35384ed86c127bef6757a3f5693f901c9ba3b8ad8c6db7ef25b5a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp38-cp38-win32.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c21c9cb2c2e8e59f4dc1e30a7fbad1e5f2d73e1ed8bab59c791c0da935adc61
MD5 c8affacdfe4591089565bb4812892a5b
BLAKE2b-256 92b1bb326fc6f4d8b13a89feb4d1010e639f6a0d2ea73d539002747f679d4b3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8976e7defee5e92107d7dc31073be5f1ab24b5fb7344aca7a90333ef0b6a97bf
MD5 3abc65acbffadd520b769f2f9a5c9457
BLAKE2b-256 7ab5690d0ec06adb9e96ecd4a4fe6dd75231f07fe4492d0a22de6ccbb0690b58

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d52ad6dd463e08e84702952a6be35cfd1490b69c9b0f1ca3fca02d729396c3a6
MD5 8ddc966706e5ab93db95d6c4a536d62a
BLAKE2b-256 830a78af0525e9c54d2cb12600b6e080430addbf4e4ad8aee5db989c7e361b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac8e196f57c08f3c7d8ef7cb3e8b9e75fc6ef56ca78d9b394a49cceb757ff5b8
MD5 0cbffc9b9e661f2dbde8c38bfc682694
BLAKE2b-256 77d6a5c8d724f0f7443a0eb900e238a1c1441009f729f3a0525f2427950a1f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44219b38b6ac2df0b4bd9933c93e642e6d724b6592781565efd24382432ff378
MD5 a0590891c441464d478acd7b8d3c7bdf
BLAKE2b-256 847bd705147df24582065c8b64af86972355ff9ea046998bb114fed13a9ec89d

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anycrc-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea65cbeb0b03c49ae84d41be27d6aedd701e6e3e6d82ee94057a6edb73b41361
MD5 bf3cafecf95f625b9cdad5b0bf0e836d
BLAKE2b-256 0246a968e6bd137a89a7e1fd39713da9e95b8221b5d8f3ccd271baa9ed6ca3e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: github-deploy.yml on marzooqy/anycrc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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