Skip to main content

The fastest 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')
>>> crc32.calc(b'Hello World!')
472456355

Read the data in chunks:

>>> crc32.update(b'Hello ')
3928882368
>>> crc32.update(b'World!')
472456355

The update method changes the internally stored CRC value, while calc doesn't. You can use get to retrieve the CRC value stored within the object:

>>> crc32.get()
472456355

To specify the starting CRC value:

>>> crc32.set(3928882368)
>>> crc32.calc('World!')
472456355

To go back to the initial value, use:

>>> crc32.reset()

Create a CRC with specific parameters:

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

For non-reflected CRCs, the length of the data can be specified in bits by calling calc_bits or update_bits and passing a bitarray object:

>>> from bitarray import bitarray
>>> crc32 = anycrc.Model('CRC32-MPEG-2')
>>> bits = bitarray()
>>> bits.frombytes(b'Hello World!')
>>> crc32.update_bits(bits[:50])
>>> crc32.update_bits(bits[50:])
2498069329

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 Time Elapsed (s) Speed (GiB/s) Relative
anycrc 0.36 2.56 1.00
zlib 0.48 1.95 1.31
fastcrc 1.50 0.62 4.13
crcmod-plus 1.50 0.62 4.13

Tested on a 10th 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-0.9.4.tar.gz (11.2 kB view details)

Uploaded Source

Built Distributions

anycrc-0.9.4-cp312-cp312-win_amd64.whl (89.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-0.9.4-cp312-cp312-win32.whl (76.7 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.9.4-cp312-cp312-musllinux_1_1_x86_64.whl (504.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.9.4-cp312-cp312-musllinux_1_1_i686.whl (482.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (469.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.9.4-cp312-cp312-macosx_11_0_arm64.whl (89.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.9.4-cp312-cp312-macosx_10_9_x86_64.whl (94.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.9.4-cp311-cp311-win_amd64.whl (88.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.9.4-cp311-cp311-win32.whl (76.6 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.9.4-cp311-cp311-musllinux_1_1_x86_64.whl (505.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.9.4-cp311-cp311-musllinux_1_1_i686.whl (484.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (438.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.9.4-cp311-cp311-macosx_11_0_arm64.whl (88.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.9.4-cp311-cp311-macosx_10_9_x86_64.whl (93.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.9.4-cp310-cp310-win_amd64.whl (88.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.9.4-cp310-cp310-win32.whl (77.0 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.9.4-cp310-cp310-musllinux_1_1_x86_64.whl (468.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.9.4-cp310-cp310-musllinux_1_1_i686.whl (450.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (431.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (413.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.9.4-cp310-cp310-macosx_11_0_arm64.whl (88.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.9.4-cp310-cp310-macosx_10_9_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.9.4-cp39-cp39-win_amd64.whl (89.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.9.4-cp39-cp39-win32.whl (77.6 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.9.4-cp39-cp39-musllinux_1_1_x86_64.whl (471.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.9.4-cp39-cp39-musllinux_1_1_i686.whl (454.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (434.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (415.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.9.4-cp39-cp39-macosx_11_0_arm64.whl (89.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.9.4-cp39-cp39-macosx_10_9_x86_64.whl (93.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.9.4-cp38-cp38-win_amd64.whl (89.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.9.4-cp38-cp38-win32.whl (77.6 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.9.4-cp38-cp38-musllinux_1_1_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.9.4-cp38-cp38-musllinux_1_1_i686.whl (473.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (425.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.9.4-cp38-cp38-macosx_11_0_arm64.whl (88.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.9.4-cp38-cp38-macosx_10_9_x86_64.whl (93.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.9.4-cp37-cp37m-win_amd64.whl (88.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.9.4-cp37-cp37m-win32.whl (76.5 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.9.4-cp37-cp37m-musllinux_1_1_x86_64.whl (448.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

anycrc-0.9.4-cp37-cp37m-musllinux_1_1_i686.whl (429.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

anycrc-0.9.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (389.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.9.4-cp37-cp37m-macosx_10_9_x86_64.whl (92.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-0.9.4.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4.tar.gz
Algorithm Hash digest
SHA256 725f8d21d1a254c7cd633cfb329352b6c205ec4aa3fb8d40369c9b60544b155e
MD5 f7eb297717d48ebafe72d95f50b382bd
BLAKE2b-256 fbdbaa888f680295f6922e6b0b3645986c17c010f39f21c8bbd53079576e2858

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: anycrc-0.9.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 89.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2adcba10ac5aaaed2fe83f7ab1523e2af4edfd4865fbd5434c427ae51cc01318
MD5 750c27d703338a10910aa417559adcc7
BLAKE2b-256 20d4be7e3bab241b6a2fdf1b885a21298c119c00252c8179743e485c2db0b73b

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: anycrc-0.9.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 76.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8a099b234a16825ede1cb8cbec2392ed9735ea8e5cd3f3d886c256232a5bf90e
MD5 412b95a5e963c621b1356c53f9132e12
BLAKE2b-256 3f144c59129108fe34a7ea9d1dfc6a1ede0633f1348e48e6ee942776f6cf4ac8

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 884b3963e9d0710dcfa4061e5bc713d4b47ab0a6495869c25d01ffc98d8b4ea6
MD5 e5903ce7df73acfa4f8e3c8e7d3e1d72
BLAKE2b-256 7d609b12132427721204a6e63c0fa93a5969d90b2941efabe9caa54f26f6f624

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c15a4adb7d3b69856b01aa8926252046ac5ff3c927effc8aff6dbf91a1015d42
MD5 93b6a2bcd0e7d44efaf2c406b43ea140
BLAKE2b-256 19fc54263f3e811c549ee9e768086c862031e84965eed0bf62a4b08717e3ccac

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7241589226851496372d21404d317bf39a3da3eaf40b4567b10ad5d24b89e5b
MD5 0677df8638ea0f4d589aeb702bd025ae
BLAKE2b-256 4e1dec78fe2b32f36e9eef0ac272a96de0520ebe7c0d8d05dd3839a0a84d6a7a

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49f7b6f45cdb16b7f7a87018db8d9ec8eabfb0094f3f6d85ab5919acc769c612
MD5 24068f091b1434379fcb4e3a5df08359
BLAKE2b-256 42f99b706aca39565bc247a272575c0339819f6c17d888dc5b4d99c73cbce7b8

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 231a361004f4372ec84a6f64b144207350ad199b2c38a597e983c30d59cd18f8
MD5 d193f20cb78c4414d184d23f1eec23de
BLAKE2b-256 af02e285f1e1be6fd4433d5c6ed88b72fb63f501d0484887426379f3c53c441f

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c1ed4df2cc6c451b8b5d4df2452b375f6409ba52ad872c1bafbd4a7f4223918
MD5 ba884e6ad9b40ab9393069ea07223f6b
BLAKE2b-256 b387f81bc5ed3af0e367f59544b56d8cef16927fbaa4f35f9d7dbc4b20c5770d

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: anycrc-0.9.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a60fd6b9cc72768fe605fddab9953f9951ce1d864a3f88ff83ec352c4d1e0201
MD5 d33c7bdea40ec4988b2b6b77b5ae3ad5
BLAKE2b-256 074a626ff8463d73cea259cf9ed93e3f5e32c8b1fc788c4580e5322b430c3f0d

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: anycrc-0.9.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 76.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7155f8a3cbe7cd6f7901c9901a575919485131b4ace01285818ab8bc3f2cff8b
MD5 653564a21a7a489261b0c5cab11f1dc5
BLAKE2b-256 5f17ca83fdbc5eb1861c62dcd90068f5a1b199019da9e9aec9caf0b0f705e79e

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f713ab891b75a0fdff5ffff8ef480f171bffe4ab5b75190a38cf40df1f4993c
MD5 79b208a31bbfbf67c9ff67dd69568051
BLAKE2b-256 bf0e63cedc82b218a352bdec9cba7401daabd2ca01b0438e830e7a17e4de9d87

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 076d30f05710ee1f14aec68cbf26a6dfab4891014404764e8bf819ed8ad91084
MD5 9515c46d585faa9ec758d5be1d040f09
BLAKE2b-256 b9e259495e8808e173e691f7f0cf03d3051e2ef8be0484129a2d635198812211

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 219eb934684430b00dbd4c361f2286e1b83b097c8ecf646bc4db06bd84a2c0aa
MD5 f9867a9aee6a288776c553e971100ff7
BLAKE2b-256 9734378188226c726aa569165aec6df5d27716cfe4d2a69c00b2bf2d3cc83f18

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60021bace7c369cf700853dda304fbc66091221ad6eac844a65165a07410c33d
MD5 21f7b7a78234b06ff48f5911bf4c1706
BLAKE2b-256 2283e692399f6dba7b54d3a3956aca019615fc1ec2ee1dd3d586578d4d3a599b

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f070e09947b45b3994d153eb8a838ab05b927fb8ab09fa8e6f561c01db6ce8c
MD5 d2457d3d91a666674f9308ac628f567c
BLAKE2b-256 1695dd700be0787024d9c54459744f3924945b01f3ae2b9ea04afbb28ec77a8f

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bd3a5c13cc16a02ba0df9f5d36007ef1eb60f72949560a7b7102466dfe431f1
MD5 b81b87b2fd8bfe57fbcd74c57f65f47e
BLAKE2b-256 bb0ee446052dab9e4e91757231bfdb142e6984ba037e64531df4f91917e47a26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 db161d9782013edcc09edd6e4137cd98eaadf5ca07d315313313d0b20c342a6b
MD5 432163b2fae2e0ea201d654fbf26df07
BLAKE2b-256 a7447cdeb16e9ab2d13135e65d75ad70b5a8ac76ad1dd7c05e0db1f035ae8607

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 00b1f6db2b36a0c6f996f0be94023c328ce0d7d64f49f36a7616e346f89538df
MD5 0755f9f3ad6f2103547c70077ca4430b
BLAKE2b-256 b299483a9ce496034caf0e799e440bed37f72e6927ed4fd2433c6d0aaa27498e

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49ee316ef64ce836b436fa3131aa0a84b67360600796bdddb3fc77ccd171e83e
MD5 c3c399dd95acd68156af7d1ed8a4b113
BLAKE2b-256 053210195cdc273a95bb03853281a88941f5a784d8d8079a0d9b6d33e769f192

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d93c91e1cd30cb8e9f72b845f26a6c8bd5b1f7724ec82e0f9d622ca3a4b05cc8
MD5 b240a3f901aca431f3b2cf028659c68e
BLAKE2b-256 ee66f04bb153e273c7da60d56b09d946233a85bd4787657592167923c0050756

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d9abcc4befec1fdfacf27ab3fd618a9aa96e3dbeb662e0dd0e1b71fc41fe870
MD5 2a182100bb408cdc8cd8e8f5c457581c
BLAKE2b-256 1238ce6b7e50f417dfd8009e8a738b9bc9b445d2744317b2330652dfa16cb27a

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6bbea69a791056f4fa276379d657fb700836917f08313a6d29f6ebf3a60db426
MD5 9b2faca49d67d4517ed8a832204100cf
BLAKE2b-256 aa0d15a880497a3ad37a18ff3463d405b58acbce460308619e2be5cdf2b06131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7e4564463841177a62a4b5aeee783e502a7f6715fbe1c48195c39a2dae97712
MD5 0ab8feb0e4c6ce3b80f3ebf70d81074f
BLAKE2b-256 0968b92d96c0f71892015630868a16c0538db947c0bb479bfd5b1ddcff25caf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a697801e3b28695988fda86bf53790b10e83f796fb1a46a00bf56ed25cd5a5fa
MD5 3b215db7e7e3295035eec35d23c27872
BLAKE2b-256 21fabd04eaf09e502bc25d2cca59399ef33dd8ed98be7c48139b0838376de09b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cbe99fbb4d4f40aee52778da660b4af0e510c61831600132f2a0c212a1f4b129
MD5 d8f36663f6e80a7e69302e23e8ecba26
BLAKE2b-256 3c7a9566f78ca0508f53abccd217db31d6f16747ecd5bb18baa9be995f0e798c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 de3043320e77adf283b951de2c3b6af3498383db811ddedeb50ef8c04acbb3a8
MD5 6e8df16c0f7ebf5e193c9a08d0d4544e
BLAKE2b-256 d73a52219a721e27bf194e1b6b5aaaf8620d995d7e8d05bdcb16df775f5329a3

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 444d796aeccb0d380fbbfb4b84610342bbbfa616fe63bdcaf3448028e38a4572
MD5 0b71fb3ebbc8b2cf4b14fcca2ddee844
BLAKE2b-256 543878a61c52d763446f2324b828a6bc967caf60ebd06f25d89761d0ab2fa701

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6d461f61d789cc0755ab77acea31ae51dd60246418906629ea947eddc9314cba
MD5 9bfc24f035d1bb574538333d33b4427b
BLAKE2b-256 8188b4b4133d0d6b5e6c21311d19d75995a6fe371b4aa8eed1dabeb0fd03730e

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33fb6a9b63664faa8a562eaad1da14056c60c83709a7c890698430b9c0a64584
MD5 b3e0eda33e9bea153ab59538e1849195
BLAKE2b-256 4c51beb6e161774237cc475e1fd6a115162eeaf236d13209044fdee9843b52a6

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbc00cd44aa8336300a8806cc7d7e6b14d9c55926b7d0e20c288e3bef79e6f29
MD5 0ce1e52f0e5b293d5e0bfc2fc48a0c48
BLAKE2b-256 471cd1bd7229cfe60cfedce0b418238c37520d3c6be3c3c6f187f478ae11bd32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddfe425aabc4304159c9492a03a9ce0908f9e65a757c06e937a2e89f50c76c44
MD5 6113ed007a369ba9c4f0099728ed1c81
BLAKE2b-256 992d9e48f72eef870244068a8187f3913f199670399b82614b839ef98c192ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8d568820fa3410b958d556763b3b43ba9ada96ee0981190b8d3cd6b68f85ad6
MD5 d31c16da530acb9f24c5fa54cc8dd82e
BLAKE2b-256 be151ba203c3ec5454a3bf96ac245c2f3a01d11563c5fb44e42b70cbd36881aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 89.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e36f6ad674ac5ddeefdd7bbb8edf41524545d39aea00a41c68a25e3dbf3bd2df
MD5 1468d0ade7efaf03ae3142582bca8731
BLAKE2b-256 e725fefe08d8ce1ba7898ac941922d532b54f88fbe13234e44bf3659fa9d4cb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 77.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c87fb016c8d0a13dcd82405c6e5c07629befe32846dcedbe21e70589f5ef376c
MD5 a2116b3c2ec9188e2f58fe5cd0d7d3e1
BLAKE2b-256 4a8fe67f6b620418ed9e7ce7e099dc81dec87091c39e06cde9f30c2ae04c6473

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc67839f430fcac83351fda7e58241c3f2bbcfdd0d4bc5e078460d3e6f5a222a
MD5 2d0b754fe062c44b3b16cb63a9adfe71
BLAKE2b-256 cedcbd94e6f1e643dab95957ea81bfc257dc0b67f8253030009a0d5c15435e73

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 365e8ff0fe7ba43d277368168277305ee4df2e69f5891c81568fa84a65feed90
MD5 d0ee1ee3fc3a1cb615c5b86f2fae4f43
BLAKE2b-256 307a6d1595cdb9155dcb6e6a68f776115ab2a2a8cf9d5206243a662316e760d2

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 814eca456fd05af8aa560fad3d6168e4c86403aec27412296f2998b2d4176526
MD5 89e24899c7e05fee013c8e9074bd0bb9
BLAKE2b-256 53d704037ff332032bdb7527c319ba39ab832e2aaa59815a1750229dddc6a495

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7e80a2fb302916663f1ebcad79d561a1f05d25b2b0a72cfbc3179a837b99851
MD5 a12845a8a2c6e3be21a90923939a6bbb
BLAKE2b-256 05905b3c8bc060f1a4785d56e05b49272b0a667baebbb1c9227094595a5c8891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2e30fd16072c5b4623c2c4f9047efdc8760819c245f8b12806e732ef501218e
MD5 e60bad28fc2a81112941a7e923b85c09
BLAKE2b-256 f83a5c123a77f37b9e31790609aae05dcd2fcb7768fa7e773d5eb84e97d2125e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 341550919bda821163620806913d517104355e60555eff91581ee287dc3d8a1c
MD5 3a89852183e202324403bb2e52196e73
BLAKE2b-256 37881935d8e505c91a85ef3ebf6c615fe17055a157d65db3b7492d371deb6fda

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: anycrc-0.9.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 88.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0768c528df610501b86f1e8f59b974f5bd25ad3d6d275774aa42c7aaae79604b
MD5 bbb8262c28d9e22d20ec1331b470bab2
BLAKE2b-256 cf5243195740a2e2be1325dae97590e2605cc1d573fae4fd30312df777fe1497

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: anycrc-0.9.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 76.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for anycrc-0.9.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 df12bf3c48f0f9626af2412831d6f8b8906000ae5602d8c2b81119cdb6ccfffc
MD5 e1f221c571321249a1eaefc642618e3f
BLAKE2b-256 4e5f22e271a5e0214a6e781f30dde256c47c468b0837b666d91c1923eac3a7ab

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3cf52dcfb2c372794684b2e6578fa0ab7547974c15bea2b581ffdeddf7cc3101
MD5 6ed97874aa987367ffb987ee406d3db1
BLAKE2b-256 63fd85fec4855e5883358259f90ac7a07ebbbc0dd53ba3ebf75a2fceb949cd6c

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6692b6bbef8e9af35b62cb0ecc61206a382ba541d258ed840f161603d104c0d4
MD5 e9d32dd3fb50d92c72cdf4c36078df56
BLAKE2b-256 599b2ec1e332572e64bdb07d0cbcdd1f06635693e40d14eb3cb95b1000f4b4c4

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 809ae1964c3d98baadd4bd02185db3fbe3061a23f6f9cc52d6dd0915c85eb5a5
MD5 c13ec7c70c820aa07e3ce565c6eaaa8f
BLAKE2b-256 e2dd24e407b9a1d5a114f7c83be689b77831e0bf523ecf0f54995bb7d0ca6f02

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b840b91423fcb1fc95c66a362b4b5c8a2c99dd0ee388f824c4575d1a40a2ad45
MD5 97d0a710e3fbd8a513ebce813ed64b69
BLAKE2b-256 db1b33eb82db5ac81919188c633e8e1d2eeed0559ad342e523477853b7f81c4e

See more details on using hashes here.

File details

Details for the file anycrc-0.9.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.9.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 351ba91d7e84d0d9900185f6a3bd5c13fd74475562e7ef18d1b05b640ec02240
MD5 7a2c5320a390a553182e4d2fd5b6f762
BLAKE2b-256 9821ad0060c929985aeb642b555b0cba736918d7bf7af156ad3b0228c4159cdf

See more details on using hashes here.

Supported by

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