Skip to main content

The fastest general Python CRC Library

Project description

This is a Cython module with bindings to the crcany library. It 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 (MiB/s) Relative
anycrc 2615.78 x1.00
crcmod-plus 612.24 x4.27
fastcrc 535.86 x4.88
libscrc 193.20 x13.54
crcengine 9.85 x265.47
pycrc 8.31 x314.77
crccheck 1.32 x1975.24
crc 0.46 x5673.25

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-1.3.7.tar.gz (13.4 kB view details)

Uploaded Source

Built Distributions

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

anycrc-1.3.7-cp314-cp314t-win_arm64.whl (75.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

anycrc-1.3.7-cp314-cp314t-win_amd64.whl (97.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

anycrc-1.3.7-cp314-cp314t-win32.whl (81.3 kB view details)

Uploaded CPython 3.14tWindows x86

anycrc-1.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl (538.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

anycrc-1.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl (533.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

anycrc-1.3.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (547.4 kB view details)

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

anycrc-1.3.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (553.5 kB view details)

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

anycrc-1.3.7-cp314-cp314t-macosx_11_0_arm64.whl (97.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

anycrc-1.3.7-cp314-cp314t-macosx_10_15_x86_64.whl (98.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

anycrc-1.3.7-cp314-cp314-win_arm64.whl (71.1 kB view details)

Uploaded CPython 3.14Windows ARM64

anycrc-1.3.7-cp314-cp314-win_amd64.whl (83.2 kB view details)

Uploaded CPython 3.14Windows x86-64

anycrc-1.3.7-cp314-cp314-win32.whl (70.9 kB view details)

Uploaded CPython 3.14Windows x86

anycrc-1.3.7-cp314-cp314-musllinux_1_2_x86_64.whl (542.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

anycrc-1.3.7-cp314-cp314-musllinux_1_2_aarch64.whl (525.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

anycrc-1.3.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (547.8 kB view details)

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

anycrc-1.3.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (539.4 kB view details)

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

anycrc-1.3.7-cp314-cp314-macosx_11_0_arm64.whl (91.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

anycrc-1.3.7-cp314-cp314-macosx_10_15_x86_64.whl (93.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

anycrc-1.3.7-cp313-cp313-win_arm64.whl (68.5 kB view details)

Uploaded CPython 3.13Windows ARM64

anycrc-1.3.7-cp313-cp313-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.13Windows x86-64

anycrc-1.3.7-cp313-cp313-win32.whl (68.9 kB view details)

Uploaded CPython 3.13Windows x86

anycrc-1.3.7-cp313-cp313-musllinux_1_2_x86_64.whl (547.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

anycrc-1.3.7-cp313-cp313-musllinux_1_2_aarch64.whl (527.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

anycrc-1.3.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (551.4 kB view details)

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

anycrc-1.3.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (540.5 kB view details)

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

anycrc-1.3.7-cp313-cp313-macosx_11_0_arm64.whl (90.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

anycrc-1.3.7-cp313-cp313-macosx_10_13_x86_64.whl (93.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

anycrc-1.3.7-cp312-cp312-win_arm64.whl (68.8 kB view details)

Uploaded CPython 3.12Windows ARM64

anycrc-1.3.7-cp312-cp312-win_amd64.whl (81.0 kB view details)

Uploaded CPython 3.12Windows x86-64

anycrc-1.3.7-cp312-cp312-win32.whl (68.7 kB view details)

Uploaded CPython 3.12Windows x86

anycrc-1.3.7-cp312-cp312-musllinux_1_2_x86_64.whl (551.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

anycrc-1.3.7-cp312-cp312-musllinux_1_2_aarch64.whl (532.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

anycrc-1.3.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (554.6 kB view details)

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

anycrc-1.3.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (545.9 kB view details)

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

anycrc-1.3.7-cp312-cp312-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

anycrc-1.3.7-cp312-cp312-macosx_10_13_x86_64.whl (94.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

anycrc-1.3.7-cp311-cp311-win_amd64.whl (80.6 kB view details)

Uploaded CPython 3.11Windows x86-64

anycrc-1.3.7-cp311-cp311-win32.whl (69.0 kB view details)

Uploaded CPython 3.11Windows x86

anycrc-1.3.7-cp311-cp311-musllinux_1_2_x86_64.whl (557.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

anycrc-1.3.7-cp311-cp311-musllinux_1_2_aarch64.whl (545.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

anycrc-1.3.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (553.9 kB view details)

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

anycrc-1.3.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (552.8 kB view details)

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

anycrc-1.3.7-cp311-cp311-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

anycrc-1.3.7-cp311-cp311-macosx_10_9_x86_64.whl (93.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

anycrc-1.3.7-cp310-cp310-win_arm64.whl (69.2 kB view details)

Uploaded CPython 3.10Windows ARM64

anycrc-1.3.7-cp310-cp310-win_amd64.whl (80.5 kB view details)

Uploaded CPython 3.10Windows x86-64

anycrc-1.3.7-cp310-cp310-win32.whl (69.4 kB view details)

Uploaded CPython 3.10Windows x86

anycrc-1.3.7-cp310-cp310-musllinux_1_2_x86_64.whl (525.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

anycrc-1.3.7-cp310-cp310-musllinux_1_2_aarch64.whl (515.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

anycrc-1.3.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (524.5 kB view details)

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

anycrc-1.3.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (524.0 kB view details)

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

anycrc-1.3.7-cp310-cp310-macosx_11_0_arm64.whl (91.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

anycrc-1.3.7-cp310-cp310-macosx_10_9_x86_64.whl (93.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

anycrc-1.3.7-cp39-cp39-win_arm64.whl (69.4 kB view details)

Uploaded CPython 3.9Windows ARM64

anycrc-1.3.7-cp39-cp39-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.9Windows x86-64

anycrc-1.3.7-cp39-cp39-win32.whl (69.7 kB view details)

Uploaded CPython 3.9Windows x86

anycrc-1.3.7-cp39-cp39-musllinux_1_2_x86_64.whl (523.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

anycrc-1.3.7-cp39-cp39-musllinux_1_2_aarch64.whl (514.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

anycrc-1.3.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (523.6 kB view details)

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

anycrc-1.3.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (523.2 kB view details)

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

anycrc-1.3.7-cp39-cp39-macosx_11_0_arm64.whl (92.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

anycrc-1.3.7-cp39-cp39-macosx_10_9_x86_64.whl (93.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

anycrc-1.3.7-cp38-cp38-win_amd64.whl (81.9 kB view details)

Uploaded CPython 3.8Windows x86-64

anycrc-1.3.7-cp38-cp38-win32.whl (70.6 kB view details)

Uploaded CPython 3.8Windows x86

anycrc-1.3.7-cp38-cp38-musllinux_1_2_x86_64.whl (535.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

anycrc-1.3.7-cp38-cp38-musllinux_1_2_aarch64.whl (527.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

anycrc-1.3.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (538.1 kB view details)

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

anycrc-1.3.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (537.3 kB view details)

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

anycrc-1.3.7-cp38-cp38-macosx_11_0_arm64.whl (93.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

anycrc-1.3.7-cp38-cp38-macosx_10_9_x86_64.whl (95.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for anycrc-1.3.7.tar.gz
Algorithm Hash digest
SHA256 8c7aaa9fb4804fd07b71c510e865fe25e271f25ffcb29a8b2dbb84f2e9fc198e
MD5 b2139c460846ff84a7d77624d5360bf0
BLAKE2b-256 71171b38bc9fe8c74130775dfdf1d39a9fe34ca019a6492fb09f638cf2408b75

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7.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-1.3.7-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 75.5 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-1.3.7-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 037a51e119b5645d81a11ac5355baa5e5b82ffcf252f0b34662d0a0cd44d623b
MD5 4a9eda1706be58cfaa027a6749f28283
BLAKE2b-256 bdd4e6fc74f5c1fdce240e7fb36ea4c7f78406cfef3bb5c921b1641f40d8e822

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 97.3 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-1.3.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 25f443e4226c480591882511ebea4b7e68d200d7974f57f051df2a4d1e225535
MD5 67da06a1b701e824e67abfcbad8e6c55
BLAKE2b-256 4773dd1a539c5ef835c5b49758ccadeb12d1250e7ccebc539e0a46b0f0b15cdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314t-win32.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 81.3 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-1.3.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8c02a4da9aee28bed21baa320439446c06c083d7602dd510447ec4595cb091c0
MD5 0aa67b2edb0586fb04f2b37cc98b33da
BLAKE2b-256 cd87f091427e392bfc46c2c9b7c70dc723115420c7d1223ba3894aa2f4fc6bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cbde1dffc93a684c543c332da569451526430592970b6e44aa512f899018d06
MD5 8d90dbba38e9c172e3c45571b6bea316
BLAKE2b-256 ce64bc7bd589e2248fd4b79aa32ed20243c73d310dff1ce68a443f585588cedd

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3c2ce5f882ec810ccedc4f309884c256bf337571ab698a7e732e5045842f3fb
MD5 127d639190401ec60d260fca28c50aba
BLAKE2b-256 cca877c3fe231cfc8ec7a25e3de472d925fbd1c06414cf5437781196c040433b

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7b127fcf53fa8f266e1b5e8861700edfca3ab8d236c32689c5a83349685bc85
MD5 89ee22f97bc3cc313a5d38e5c2e6a5f5
BLAKE2b-256 9d9a0c93fc892239d489b748c35307895df272c1cc4780f3abcdd17b3083ddd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 971181ba3c5185ea9de20472baaf164716d0100e198b466014ca97636d8a93b7
MD5 9cf55d517a62c67eb356434d00f2447b
BLAKE2b-256 c987d8d2a9f121d17a9b2ad41f18f3a8bbdd189b10abb05f7c3ce7e94d416adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e78aa85e83e8efc238557363b9af876d9dc1c09a371fa6fa29939dd7980c99b
MD5 e2b12fcdfb60dca31317c1d04539c9a9
BLAKE2b-256 ea2d7b396eb42946b9c41f71c449e281be23a21111d8a014ae70375bce4f1e23

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f5eb05768b3e43e20fecfc18614ece65eb860d60221e297f82d8e05898cbc226
MD5 39e952647c3039d0897bb968565808a3
BLAKE2b-256 3412a7f326c48556c962fe9422937b2f5b982f845b13ea2d61c8e001312f5beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c8c401561055694e26f06ce0e972903dd8f2e832e9e044405363ae53ea4f2e0f
MD5 e2de8a4721a0afa7aaabb80699a8d2bb
BLAKE2b-256 e2699b2f4b621c36886391c495797d7a4306ab9ab540fa5ca8aa252e291322a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4612e8f70155dd7a9f400dfe34d69bd8ee41cbfa6eb429681fbbff8fdce20fab
MD5 9dc64d3b6beb6d22877b8e07485156ef
BLAKE2b-256 e96fbca2fb09e6c215c180cbb941ee7b803b2ef11c75681494f08e7d1e95f111

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f7a63682dabc57f4892ce90c2de64ee98bc51cb095886d5b66fb8cc83d08cc77
MD5 e40840a082bf936aa2ceaa6101bfc72f
BLAKE2b-256 6db6d30eeefa3dc22d8c3c7a5f4ba6530be900248c6148b68a587f9f27f865cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5349f06df8bce492714420b19073ed75879e66f1534af52bac3ca554858a1035
MD5 2aaeefff2f5ca101c853e20e8f6ccf24
BLAKE2b-256 dd3dcf1fa325bb10c0c3f20a25d60200ff3156a7ef91896145ac9791dadc399a

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17327426c0981eebea0d67c15b4e226212cd85d8e6e628620fd5d21df5e8e505
MD5 7a3c91d14081ecfc99a6a518aa909618
BLAKE2b-256 134e31e3d84d1e4ebee8b6c949f3ce5b7ac021890e77b651ef1d8a98097f14b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0ea6ebdc3bc37297d951b4795c28442a4c9a6d54bea03230b32d7e99b1804a6
MD5 9684492a9ae82484c7fc68bd7fb05186
BLAKE2b-256 4bff4bc595bfd280aeb2adc1b133555344eabfa63f743c69a72a8164cc9ff198

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8da2c0d6fef202c263712c50d37ef8ff94d0a7503eaafaf58134938e29bb277
MD5 076619fcc875626b8748ccba633e84db
BLAKE2b-256 115dc76098edfbcdf69d553c05d18a1965baec5a7d8e96aa88cebbdad71ee380

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0746f7870285a8d772f5b06e578e591d4658bd224af06773cde8fb1ecfa5658f
MD5 5a7dfd24f2caffea8a048c6f4e7cad1c
BLAKE2b-256 f51bdc3749987a4b8425fa21ceb1ed8d0558560d8093657fcd9611a5b640f570

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8619a5afaee3cc380b0a3d8e1eea6e05f50a3b547407e8708993592c417ef0c4
MD5 40dc887e2c8203228f74743562f518b0
BLAKE2b-256 c7dc423aa0dd1cb4b0dd6aee3120f17b504e0ee8497cbe4fd73a4d5f4029e7ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp314-cp314-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-1.3.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 68.5 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 48cc64c5aedeb58755281ad4b1a6543ebb6ec31ada7c58c3f3cd868397327e65
MD5 c65c73d252193b712fbb44c442dabbda
BLAKE2b-256 9b878e920c7b5fd4bd7c200559a8142fbd9f88d1fb91a695463c74edcff347ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-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-1.3.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6a8017bfe86418ff08e2ea336f14e274db49bfd0266777305a8d89eebb5e7a1d
MD5 7b33a0d1f5668d4b244db7a052e297d6
BLAKE2b-256 9fc891bb6129f9f3469f00ed7736829a5fd6a0b2ba28a9aee0a34a6bed7c34ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-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-1.3.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 68.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 87613e97bb729eada54ddad330a0e70fa3be49adc43be1129795c5076c1e58cd
MD5 d66995a3299089a0c327c8d144b1b1f3
BLAKE2b-256 1d509be879dc78ec6f5de62c5e69d52c558fcbd997dfd9408935b2b53f0c8701

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-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-1.3.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77f88f384f363a622e5cac775985a7bdbe0f18e2ed68067a1ea678141bf4be19
MD5 8dde2eb31a707d1302f3981eb59ff6ba
BLAKE2b-256 82cdbaf67140af94c35f3ae212e1fc847a0fe6c00a235751cb3b8cf751e2f9b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-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-1.3.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae986cd7dc912cc6103b0e9f6bed84ff048fcdaccf1c48e364322024c4a06835
MD5 fc4b5e11d572a0e1eaa2d802f10c8ea5
BLAKE2b-256 955fcfc05336cfa2299eac9a838f87ff481172dc4c00f2fab1380d6dc5ea35b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-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-1.3.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c02279cf6b7ca0fe85de95e2142bd15d368fe2cc18f2732a50d185733eb1552
MD5 7a02d884fba4433ae10d073a76a2baee
BLAKE2b-256 8742d8b044871e01c0c54e399e8ae036deefc6a5071646f7e897a26c054bf9a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-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-1.3.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4ccec7a638d27aceb61331cdd0c0f6c1bbc2fd0163a23d59b0b28093d13f79f
MD5 e14024ed232638aefc068ae01d8d5f8b
BLAKE2b-256 2b537ae2727ea242198fd956d8b3357ff1bb596a8503566a9bbfa5e3b07e9d77

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-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-1.3.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fee2ade47383e1f85667aad63fd29a5703bf21f90d153914be1f2d1e44713e01
MD5 45d871e0d14dce622e05a93101aec5fb
BLAKE2b-256 be5ee9e238e4fd20e4d3277994b43c77b8cdbcf3117d55e2d4023ef3085b000f

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-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-1.3.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d09b83f17700ca2d37392e740bd9dc8fea9590e52d743812c3392645806b6a6d
MD5 3987a1995b5569ba2c51b49516d08833
BLAKE2b-256 90a2e6452baadfa5f5c2b73f5c96fc136e3b4adfbdd25e58fe3294ba9b0f08af

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp313-cp313-macosx_10_13_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-1.3.7-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 68.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b24cd3f7ac6fa142ffe581c18f1bab33c346bacdec85e6fba8c5b537e339dfe3
MD5 a68abb19e1d650ede16abbacadf61c5c
BLAKE2b-256 2d0b73a2fe6474ebae3af2136f7f9bc922ff044abe044d1a4d8ee1f917d7cb64

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-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-1.3.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5fff7f1bc0782fd24e7690559167180c859142932904f7a8d662c3408cacc354
MD5 831567dda568405d36c61791b8b513c0
BLAKE2b-256 a126a97e3cba870b5d03d8a3b5217f9910c4117cbcf19236ba7d0b4f3b9b8f5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-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-1.3.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 68.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 01afe2e9a272ba8c674b53276105673e61be8de9d61d400c2c603652bcebe291
MD5 0def85e9e0a25ffd75f24030bda552ba
BLAKE2b-256 e3f12b8fb2f567089c822f42318f8ba078c7af652e49ac5ea8916fe4a921086f

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-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-1.3.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c64275183589de583faf5a82b2d0cddabb86990ed85b1181419e464a29f70ec3
MD5 23e0457275b273bef8883e927456773f
BLAKE2b-256 ffa768c82b5ba03402cb75cc745f39d8eb2825f2c65a676c06e259bb56990b7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-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-1.3.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cda7e1edd8b1e1fa518a2c0af89b65692c7e32ed205cb770ff935ec0caa734e
MD5 927efd20db982ad031432ad23cbf0d34
BLAKE2b-256 747c4683e7dbc523f4073241454a293504a9f300bb513c79d8fe89750960072f

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-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-1.3.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 834df97fc58cf2784ba8ad15da9dd76b289657e4d2212009ba3cc706e8068458
MD5 010c81223469fdfe56e80ca05f34be12
BLAKE2b-256 a880fc83366a8ed0c6620965b124be745d2ea8eea57d47dac5c7dc209bbd61a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-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-1.3.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 676627306510fa7b08437dc2ec7144ffa2eeaf0c450aec16ff80b211c51300a3
MD5 7fd54312173e2999b469b6b64b64e49b
BLAKE2b-256 2e12fc176271142d8c40378bcceda557b24fb77fcd6c931149a6ae1f0700e543

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-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-1.3.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35e05a73d3e999f6fd629f5ec2958eba054af987d6a7c79e359392c0c715874c
MD5 9fd7d7337fe4fb316da9176f2479983f
BLAKE2b-256 540b7e9cdf312f32a8ab9fa6e8d38c6744cced4d3aa95030be2ad6f42e933cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-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-1.3.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a50ce285d6b9754616236df448460037aea4c548d39cfccffeb627b71cec08a1
MD5 f1e6d4e83c02723a5956f1adb1081367
BLAKE2b-256 b51fb3e917f88e61d4a48cfb312997c219f5604a37d0a6dd5d43d0b81a92c661

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp312-cp312-macosx_10_13_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-1.3.7-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 14efd3f4b212a7cda45f803c7fea23e88062a857adc6a1ceb41c46c8d6d38833
MD5 391fb28b9b7c0c87ade77c98dced4446
BLAKE2b-256 594201849f547420904a06d90b1654dff48cbbbaba02267751501c6b4e7d423d

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 80.6 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-1.3.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6ec258298c65fc801726f19076a018080e3b65a701254c917b9deaebbf80f506
MD5 d7d9646722d6d546c6af5365289316d8
BLAKE2b-256 ba8d4840de5483106f24cc398fa8fc3010823311483c6ce381451c872cd26b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 69.0 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-1.3.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 71c8cbd3254acf938fe48ae348f30246deea56cf5f15e833aa627c012cca460c
MD5 db3e30c61d548ff81f53f8346bcfd86c
BLAKE2b-256 a48a9e5d70bef67c3a0a457306c974bfdbc4cb1ee7eadf4adbd86fb1d06b752f

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44659553b8fb489e55bc75bbf2db62e22dbc2fb170816c7d56668de632d9b771
MD5 f82f71dbf8c9c65f097748b5e5ed4a59
BLAKE2b-256 a53b433f885bfeb4d33451231b70b0639fb54a40b7e8d060532a00b5e6ef25c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b815487c97afd284a9cc8ed7f1b113fed9927fc40135f017d5a02dbae9d24b65
MD5 fd9352645f47762d84290a6b212d4b73
BLAKE2b-256 f91fe966470c208010ef5cab17895b4b37bbdc09a0c3d4cd810dc32cc1787b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b25fbaf059bfea0cf9aa390c26b2036441b188f59dc54027c0fd6d77fb7c683
MD5 ab0942fe98f74d41fcf8ce0f55c698a8
BLAKE2b-256 b7904e31b95ab29c7ebb22de409bf6ed57e0f99cc78a2b4cf75c521e62c8019c

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86a20db0bb9c32573e24651056f55b45839d45667b2080ddacf46c0ceee8df5d
MD5 183b83c3717d7dbc11ff0048dd83afaa
BLAKE2b-256 2264be0c69145cdbbc6a624e884e0ba5eae66d46101748a335b29cf6ebae8edb

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47d85310fccfba515ca782861710619df0a730bad36a8b8cbbc9d4370b15391c
MD5 e5c8bfc9748c4567c4b9016aece79bfa
BLAKE2b-256 243ad4aabcb94516f00ec5b3c4780d0752afcbe5284e30e1b24d38db25881343

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18ed02601aa64e77c1780c902672e4b95b99fb300461c2a2656aec8e6a271d62
MD5 03815e0b2619a1fefe6f3190d86858ff
BLAKE2b-256 19c56beb80e2bbf6495c74f5546a3f353ba8b74bcae47ff406c702f21253c892

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-cp311-cp311-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-1.3.7-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 69.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-1.3.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 310e684e7d0f575b6f0a08f459f77222705a46af834d1b7e640be14db09df58d
MD5 3610e1fa13c135eb88076678175a0374
BLAKE2b-256 3c0703430ba239d2f16678edd2e91ae2f7acea328e7535e4bb74a68554538605

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 80.5 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-1.3.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3d19d0182ae52d487b3fdf14a733bde1fc63489660ace7f91347b0fdfe590ab
MD5 c4fccaeb57eb5aa919d68383827459d8
BLAKE2b-256 ab0d1eb8b0119ca57d988419747dee87eace3e890dc30e57b2244ad862d57f19

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 69.4 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-1.3.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 373ab8591080f18214d2cd8c01c5d89c851a7e50d74e3f9bbfacd945d7c7d5d3
MD5 09af8e48dfcd41b05fc9cafe883cd092
BLAKE2b-256 b80114c2ed2be0443b3f76a64d15a1a2610b460184b8f1374bb859614a32d4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b0945a364b114b6c5e22fd1d1d405e19b869bff279f35d181a1a14caf42847d
MD5 6fa449c621c32e7224f4a7f3909f5751
BLAKE2b-256 a3e57c61f8f3a1ab9b8c14888d32ed47ef7b64ff3a71004a2d7c4246e07ae665

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be7d0677c360e55c3658c53ce09dcceff644431497578472bd76ed8bfd847cc7
MD5 ca03614e4498fc29bbc65f64d241846f
BLAKE2b-256 608c6fbb855464cd08c22c25caf839cb15e32a5a1201ee963708efd889bbf43a

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53a1d4784894b3d778907b8d78703efb73ac55f2e3f3e8001468f9e3dfdfa926
MD5 01a796b095b3d06f22ff82b0a8f2b0d2
BLAKE2b-256 045c71e04b54e9d4b5ba44ab34ba91cfe1e0fcac34545130dbcba4d4ac46eebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7b212801fb4ac872676727ea8bfb809738de735b3ee69aa09973c93d6039dc0
MD5 a71ca98bd41ae9c6a9d7e3ae265a1875
BLAKE2b-256 fa078f81e4f255c09281f8b74a5e54e32030474085d39c5ebaf42a6075275a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b15a0387aab5a0cd4da9bf9eb6bcd9796065f909ac119400accc71e37617e85c
MD5 e8635028dd3f03c6baec20ac9b1ff028
BLAKE2b-256 23fc1da2054a962748ab72d82f97c66197f001e785334c4b7a32f17212869dc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ecadf3d933fe07c2f3a61b8a92414eb311a8279de6b8597f2752559fb3ccc6c
MD5 80dfbe36ef8eb5cd9fc93bff4dd60408
BLAKE2b-256 9eb01946e5b0e3c47ce4e690e189899e58fa1bf678ce115a485855d87c558e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 69.4 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-1.3.7-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1c87569e61c2888e9c7cb5c522f323f3901cd4af6f072f881c7500063f7db4c1
MD5 219f7b76687160cbfc527531946ead6e
BLAKE2b-256 401e425562ea4a1225a440fbfd33a78a0d39c3bab4b06ff0910b738fa94921b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.8 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-1.3.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a24168df4219e63daacd6bc4deb0b07c470580a7c278cfcf33cd9c8e5d6d215a
MD5 26d77901cff2ac2f63592702307a2899
BLAKE2b-256 3b406ed2d6f7aa5f68fe42f4f7c7f8b4fcb7e53652ef99dff86f66a8f7d3e0a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 69.7 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-1.3.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 721c0f2d0149d8d3a1a604115c5db25653e64c1442be3bd50340feee508119ad
MD5 b133f42aad3f2588177216d0f644042a
BLAKE2b-256 b068c8e9d81bbe8ee7868889d8115ef2cb377892070555b858d612abd69d8928

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4323f8ba2772ef587b4410928ae5e2e4bff99241635af2b2d2f97e1881a74f88
MD5 9a0045f83cbe1df6063ab00f9a8f7351
BLAKE2b-256 49ae29115fb2a07d5897d3e951c2007ed29c9d847d6588f9fc720820a1634222

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a66ba164bb7798f430dcfa88c666f07e35f09182813af12c9ce8271e308972a
MD5 342f8641722be47eb412ed91cc9a25d6
BLAKE2b-256 534047b75cf12f159cf653043757e42fb29f2dadd448b2b3da2ac2ac07abe86f

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 180daff4d1b31e9b6e17c46a4964a3124fd669588f36e66596d766c8b6269799
MD5 63d5d192ba8456e99c715c279a83476e
BLAKE2b-256 ebbd9de8134071cabfb4ab34a295628ee34ad00f78c1b16638a9d732516d9c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcbed39e01599c60d24f97cd1034bbd914a5ce28addcc9cd7b0bcfa4f4dacbb8
MD5 772cdc496be57e149f443f88dacfb279
BLAKE2b-256 d24cbfc6cab60aa548b15a39a311f485fbedd33c18f168a375c49c4abba08498

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84b9acf3bb5b7826f9fed4ce9cd8ac6b64df62a501e1347998a42f125ccbb431
MD5 a14564cbe58ac6afad813bc686462494
BLAKE2b-256 080d1d7f4ed525d83c7318088d97b02550ff8a5b8a0fe865f904e26412b12daf

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ceb85018b90b3a88f58601e1382a26b363253fc5fcf1ef2f02eb9ae174195ca3
MD5 feb5b29ef5bf06091e3a4aa08dab1990
BLAKE2b-256 84659beb4a867cb640cf44a78bea18e23c31b6f2d22df44dd5fe1923d6ad8b35

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 81.9 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-1.3.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3f24a9e3cd381d098eed39ea145af6aaa73b94da6bde7a0dea0470c423f79696
MD5 9e0df83f348cabd3606dac8d9786ec1b
BLAKE2b-256 5819272c2e2875747231105167f124a74c4b8837999172249978a073b3ff2eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp38-cp38-win32.whl.

File metadata

  • Download URL: anycrc-1.3.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 70.6 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-1.3.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b8661c596755d715a44d35bb8b30d8b0e664646df944e276ce27d861fc2944b5
MD5 7f5d6f43f32a1a35980679f0e0425acd
BLAKE2b-256 6c280f99933bffcd303b7cbd6c57486c0429c619313451ff57c69daa190b2472

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 025dbcc00ec3a229fe5fb9acc05e9668e323b546da791ac0b6591f50df80dcab
MD5 e616f3c2010e315555092410f62d4776
BLAKE2b-256 0827140c7c891ad3eff8faf037bbc2a7ce0a81d373b19ae23acc802b34f3192c

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bffaa17336d6b8f429b8b468a41bc11ca7fd8fc627be3e515d88aecd0c2e6fad
MD5 fe25c63ce936c1da8c92c71a48053a1f
BLAKE2b-256 2731e7e83322a24d635192ac19f6d563056554f85548f9f6fc1dca955e96cf46

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c75998a29ddef79cdb3f1e039de1ad86d0b3249066e9b1e3ed47fc3c5af3e8e
MD5 929a78d0a3fddffd7f2371b6cac03820
BLAKE2b-256 d24b269dce4ede2acd1abb3efb40cabd3c8c5c7af4e1898886b552253d70e3fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dde2fa2c8ce5be0f1cdb12ebe6ad1eab9f27afb584bf5d8944d0cf7b9dd3c939
MD5 30f33350b8d921b5044edd26f9543812
BLAKE2b-256 0beaa7aa100dd707951c375b4fdd68e27a5a3f13935d41357eaf66bb5a7411af

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 708c22423de831dd85faff7036838056591e8b85d00c439f73be4ae6a47556ac
MD5 e4cfc5d924faa936ef6abead1dfbf3e8
BLAKE2b-256 7b431622853f02dc47dc0385bae0fd5b89c94a965832f40d81380a7251ff7843

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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-1.3.7-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.3.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e806f92ef1e9d00c81cc0bb253b737d432dbe99ee3ef2dfd88233efe2e1fb93
MD5 88ba2635a44c737c775d0ebc48f18c01
BLAKE2b-256 d7cab8178783d932c4ccd3760b7681575fa6bba39fac52c237c1a72591f226fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for anycrc-1.3.7-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