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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

anycrc-0.9.3-cp312-cp312-win32.whl (76.8 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.9.3-cp312-cp312-musllinux_1_1_x86_64.whl (505.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.9.3-cp312-cp312-musllinux_1_1_i686.whl (482.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (469.4 kB view details)

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

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.9.3-cp312-cp312-macosx_10_9_x86_64.whl (94.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.9.3-cp311-cp311-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

anycrc-0.9.3-cp311-cp311-musllinux_1_1_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.9.3-cp311-cp311-musllinux_1_1_i686.whl (486.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (438.7 kB view details)

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

anycrc-0.9.3-cp311-cp311-macosx_11_0_arm64.whl (88.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.9.3-cp311-cp311-macosx_10_9_x86_64.whl (93.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

anycrc-0.9.3-cp310-cp310-win32.whl (77.1 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.9.3-cp310-cp310-musllinux_1_1_x86_64.whl (469.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.9.3-cp310-cp310-musllinux_1_1_i686.whl (451.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (413.5 kB view details)

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

anycrc-0.9.3-cp310-cp310-macosx_11_0_arm64.whl (88.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.9.3-cp310-cp310-macosx_10_9_x86_64.whl (92.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.9.3-cp39-cp39-win_amd64.whl (89.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.9.3-cp39-cp39-win32.whl (77.7 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.9.3-cp39-cp39-musllinux_1_1_x86_64.whl (471.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.9.3-cp39-cp39-musllinux_1_1_i686.whl (454.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (434.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (415.5 kB view details)

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

anycrc-0.9.3-cp39-cp39-macosx_11_0_arm64.whl (89.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.9.3-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.3-cp38-cp38-win_amd64.whl (89.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.9.3-cp38-cp38-win32.whl (77.7 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.9.3-cp38-cp38-musllinux_1_1_x86_64.whl (492.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.9.3-cp38-cp38-musllinux_1_1_i686.whl (473.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.9.3-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.3-cp38-cp38-macosx_11_0_arm64.whl (89.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.9.3-cp38-cp38-macosx_10_9_x86_64.whl (93.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

anycrc-0.9.3-cp37-cp37m-win32.whl (76.6 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl (449.0 kB view details)

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

anycrc-0.9.3-cp37-cp37m-musllinux_1_1_i686.whl (429.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.3 kB view details)

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

anycrc-0.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (390.2 kB view details)

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

anycrc-0.9.3-cp37-cp37m-macosx_10_9_x86_64.whl (92.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-0.9.3.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.3.tar.gz
Algorithm Hash digest
SHA256 5a2ccd9b0dc0f96cde9b1625914f25f6016077524eb7c6e319774b5ed4a8b1b8
MD5 c4ff04dd57e6870b3dba83b0c15d9563
BLAKE2b-256 16d1c1a9340facb63035e1fecc6e72e0eac746e2628774b4c7fabfee86f30e73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ecf7ac20145b781cc351fb4d4dd9130cc8f52dddb286603898acbe9aa4479d45
MD5 b84a32c33d083c76dd9983a377ce0f4c
BLAKE2b-256 0f4a1f7f0a4ce6fefd686b05e6297f1acc6deb5304e2b3baa5168da0c32d2c02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 76.8 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5cdb37a1accb2ed271146efe666fa08ab1b92c90fc25c3720d9c29a8be4fc36b
MD5 93ec4107b47dac3c3a40eb2e4658c09c
BLAKE2b-256 edc6fe6bb6fc8c590e1bcb36083a05184868e7b964420206dc74aaa0908e1174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a697d0a2a8621142fed06b151003c08becd000335b58d9f9dd38672fee503227
MD5 3cdd35bbab75a8b6ded258cee68c6207
BLAKE2b-256 b57f26e74440bd95c60e36ba5ad72f59b259a9db101cf5b1f92815b91114bc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8a098cacb1def8ba7d81d1993632d159d51344072a7f48049879851b60577786
MD5 5e2e4f9166b36ed3490acb07e955cb47
BLAKE2b-256 e181c43adc96769aa0a1e74dd50040a7e4421ef8c78790a2aa03edb7665d0369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84e7ec8a97d5a96b0a5f181b1d6bc3bed0657e5ecdf243bfb045672e3a3904a5
MD5 5153f1aaa6c4dd24fb1284a8c7ecc4af
BLAKE2b-256 64ed3b0e53aae358dc23e73d277e731f80c3d551551746818326c1371ae3804d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5558ac82c222ec17b168c9e36ff45f703cbcaf4672059acddca4cedf12b79ed7
MD5 d6e91ceef559658c489347eba791c306
BLAKE2b-256 63a8f4c1f154a869d675aab37c61dda1597108ecc737b42d19bbfc4a5ee8ef9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6348ae64332f350fa19bc63f4b0ce989942ef6ce2e5a434ddaa78d41d56a663
MD5 20f1c0ef405456e0640871b18a89f6e7
BLAKE2b-256 26c6e7162a38ea5f5ef7dadeb20755bea72841254de9a42c1d9919ff21474764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 939dbf4cf54f508d266bde54f6af1567a2a3bf088a3b76a426682755f2fec234
MD5 96d1b0b71ff283bd8c578ee3cc298ba0
BLAKE2b-256 986bc5525ccb103c8b5c56f161a6106af726b37d2c80d6ab384e3073f1dae392

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.6 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8a06c12e3b904409d7b49d64a1ced7c7bf24b07bd3f6b53fbb6ac01f784bc0e
MD5 60ead9a060e45912cc0d8381754ace7e
BLAKE2b-256 acfb0154c01a41e6c7949faaa78912f385acd863bbd81cdc8e9773940a3c2d5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b2085377e7338bd677ef74ea1cf190110b2da1050d86d7b9c6bf00ec6dc8035a
MD5 27f39c470a040b7bfdbcbfab905c5945
BLAKE2b-256 bc2098b292c9fa689a402041b8b7fbb171d675272c6a571a07dbea870372b4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a44f00cea20b6ad6426343fff6aed4fbba0f7ad362ab10407752f9710dcd552b
MD5 2f8d3651cba5e6316aae11af207b9294
BLAKE2b-256 86c00043cfda306d8f9979b350f6e589e1598df0b7b548dd2a6cef1591ff5279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8d8b61e4f81102ce19934253e1a2601dde6e7091a077358c3feaad121584fa1a
MD5 1a14a65410ae5a35562785d22aa54b0b
BLAKE2b-256 422c3251fd6d205b4cec11991ee8567665efe32ed0443a9c0c956da1aa489703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42b17aac790704f6ccd14558ca832f7feb0d85d38dbbe45d931c7c499df3ae4a
MD5 7d01868acb41002a1bafe11384ac5d3c
BLAKE2b-256 920ed07177b89cbf6327e8a49a14563998a6ffe4605f61a1d88a4ae5e8c2a948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 814be69fdc47e851e2ef9f0d534e3a4df17cfb8c15385343a79f3f3b4db36ecd
MD5 54593598fbb54f41bc00b6762252cc72
BLAKE2b-256 481cb2fd9285188ae1dacb5ca3e39af3d14c92a372321aac57a5c40ecdca1198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cb07b30d3db6ce1cda9e965738c9cc27cf935272078570ce43a9c7850978a3c
MD5 60e1ae16355e61db21b05eda1833981e
BLAKE2b-256 f5042c4aaaadc92f6d53ea09dc16615179abcdf0299613d93031b5462430ebe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72f63c61a171a05beb9cbd2b9926c49911069a1ebfbb0be8725acd3d47f21615
MD5 a540c2be86737acca2adc52e7e27524b
BLAKE2b-256 0772a6e8936ca3ded4a6d0e1591ec80fd3cf39befda89f58e976bf68a30ab5eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f717161086de0ce8f708818c56e1e88b839867bb1da2fc2230ca2db6df472184
MD5 597031a203d51e8286d85ddc76db5a87
BLAKE2b-256 be11cba254c3b5949c760c719445f026e4edba20acbb3d48bf1da3a295ec2cd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.1 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6ee96818762bec324ea2e7a2dfe35c2392aac7a7ec84a123947f2fea6f3ee427
MD5 b573b69a3ca7dd354dd145a404f3fd37
BLAKE2b-256 e18a2b21f79ddf252ac36067190b9b62fcd775c9f1e8aec9c393d95ece8cc773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 84b6b765704c47b55ce671ffce91380acd5fbcbb222c15f75faae22cc7d1ee71
MD5 535fd69056cbd4b3ae392b52c4082771
BLAKE2b-256 7333bb77c409330db7e4ba549f723f41007d0a7e11fd9a69dc58814cf812c17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 40ae1575488a55ce3b02f7f9ed32d9350898425529181b607b59422f1eee7d99
MD5 909284f34144aa7c5ebeda1c6ffd620e
BLAKE2b-256 c0a9bb7949939dffac636e94a70c5f331ca62025ce624d256ddd8b0c56313d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f22bf670256c67ccc458a8b2f0f4c69a5d508185b29f5f518d318e5712cbe0af
MD5 40ec67aab3237e5be91285e2aaf0c114
BLAKE2b-256 1117c380f5e3b3955aaedd4f017f92601934b6787b4b749787e3b4ddb101111f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd38f2805cbf1084b7c75c9f5d31357a67f4e6c4530a459ab4d1b08d09e71735
MD5 c7e95862a519774b860bca8101d63227
BLAKE2b-256 a39e3019c8d009a7f8477964f7b9e5de8bf7715323df455bbf8c5347d62123ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c60230d7e05e76e8a9c1ebd91ad4635171e2acab37973946d5b0ecb31991b55
MD5 4f059043a4240ab4550e06eb612224ae
BLAKE2b-256 ed63ddcc121259cb6cb99a366250407b0151bae8f3af49194e1ab33f503ca3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc5a310988e295bd2420321d5f45e29bd6d90d886c8da4bb091a5510b84d394a
MD5 5f5fee28ed9412310468bb96134a1839
BLAKE2b-256 118eb5d0108eb181c7fdb162d935c2a4abf0971c9af9136dd3892edd0c372763

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.0 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aa7b72c90c40359ec1f530366aec24cc19d87b62cf48e6d6f79ba8b268ffb1a1
MD5 f45cebc9f8764f8ee1c5cf04310ae666
BLAKE2b-256 50fc43d84bb3bc361e8f5a8f30de3116f4740784a31bc9904aa87e090fcc59a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.7 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4a96d6ef1e52eec44ba3e1866abb1f8114c01a2b5af18e6d4cb1ca9e498512bd
MD5 2aa49db5163ea9c0d5f68433119b79a7
BLAKE2b-256 886aaaa7103f15682f66e024d7aff1a4ffd9a393b10b180c8820aa8b83f345b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf0a2eba277adadd63607f989561b709ab6bff71000c61395f746185cb27af1a
MD5 76d167e10cd16d68256aeca0e3caa822
BLAKE2b-256 d246fef996746c46df2ebc92a0508549c94f3c5d83443cf577f698a4ea8c8cc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0013c40b19ff35492938f2f8af6256497c3f5ce5508a540de916f1d7dadbdc88
MD5 5fe0182c7a2fe9b2ca1fe9b22fb9695b
BLAKE2b-256 2774d94425d631b38fa51385ad34de2b9cf1a7f499b9293d285b71bf4509ccc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5f9636912e4c07fa9f0a3bc99608b0002f2cdb353b78fc4f396a489039311c9
MD5 4d568b4ee99c246b2335905bf9effde3
BLAKE2b-256 129d3844610541221b4ca46d29491228fef8c8103cd4c3d464b0c8555dc5d21d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37c487ad1c29d8c1112a25793eedf704bc799cf2ef498c5621d522dee059d7c4
MD5 dd109b3d3588d77f9e72ceac9fae7d05
BLAKE2b-256 fb9725f509d1250730443b8df94e198cce2aac8452d5bbc045b71baa026f1229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a5e32d004af505c948aee320a177805ec41e835d4bb3f79870134a31bfc8421
MD5 376112d2032265784d8593e14513dd78
BLAKE2b-256 533b9c413b7eca1d94de84247c35d159ce9bd37e24961bd5e6cb9c736eb20b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa4461589c279cb07a0505a862338f6c2aad61c2e91e10e4f2f468ddbbfbf861
MD5 f0e8f5485ed4e5c14a8c72ad2f1a1c68
BLAKE2b-256 2dc03493127fb36f793404bf9b455ed87fcd9b2ddd2e336f5b970d0a98357666

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 89.1 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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 63a449f5e3ea297e4c86442c4b131be25ac2dcdd6a83b5e7a38521bb90ae37ee
MD5 b865404d1dca4e0003556a6ac47d47ad
BLAKE2b-256 c04df6d9795ea65f7e76f2d61e7787fdc039230288c0aac88c6ffa51551f9ffa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 77.7 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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f1fbeb660ae3f4296eb2398c8d505952c584005042c329ed129e038716e3a3ea
MD5 ed4b807da424f3b448dde39d4339d8bc
BLAKE2b-256 d0373c78b14d9c64d2992bc24d3156a4b10bbd2b1cbc0077ac49f43faedefd85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 25baee1c589d5f0f18a26cf8b229dbd47d2191acb71a6cc3fd4ef46cac9f9404
MD5 2a3ffef50b53dfbf87393b4100148781
BLAKE2b-256 08ba21f32546955e4ccbf874a7bebeb2dbec2823d1c987020c830bd06ea75b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bb1260b04073a76d84c9b0e0be0f0ef6bec8bd24753409fbeb11f350c8531148
MD5 c45767565a3c002eef9303f66d5cca8b
BLAKE2b-256 7c6c285c882791bfb784f654d891f1efa452859173ef47574b2fd55a44b6ee44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff2e10f2193c5217f6ab8056983416639fe11d9a5395405813ba6f82fb62917d
MD5 9f91bbcbc0aa0f4085b00d4bc0e5c6f0
BLAKE2b-256 e2eaf97fb5990c18d3806cedb5b2f74fc9cdbb820af03d2fa1ab645aa54d1ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a205f0859e81af329937065804bc1167075a435b43a482f4c9dce3f47038dd7a
MD5 32b7db031f224fcd879a65184d1884c6
BLAKE2b-256 c6fe421dfb44b2e240bcb67a9e74da86438b2fc84ca91598873886806cc96de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d30ad8964679057d3798f0a4b20520a12fbd0e4ea556ebc86f4d6afa32814316
MD5 2cd16ee2f32cc473daeed5a0985c55c2
BLAKE2b-256 d1d9a5d75199fd6b2938a0c96e5f42cc71d34ba5ada330c3e94e57080eec1014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5625b1b472fe68d587b6beef1108886bdba38a1e8ef3ec54216eae80e46fd909
MD5 f93301a7109b10a9acfc923cb38b5a1d
BLAKE2b-256 35bdd61618898b9e8a282e2b13bb987b130612e4a86df5b0dc4d2338a843c47a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 81022879d3dee3ed2a81c2519bb2bd8c39e57555ca3cc030dbc8358bb6b91b0d
MD5 b7eea9558284c2f2253f8441dbbadcdd
BLAKE2b-256 7bad0435c55ad0cbc12027ef1f842e6657bfb911ebcf90b3657de72b8f97f546

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 76.6 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.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5841331cff5d37c06013b97c076074427eda0edd3917e66f854a0ee8357cb691
MD5 fcfbbbb54cd8ea0909848ec54c7cfb88
BLAKE2b-256 6eeb2f93cf3b23712fbad5a3fe577997d77acc4f5b1e6353f88d39053e4cbf57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 afb831705354bf150815849de2bd249e9b3eeddf9a202bd5e8f21cc5ece77838
MD5 57fcec5040e51025088966cba34bbf78
BLAKE2b-256 244a7005f915b1a0e35d159240ec681b0d029276dd5bc8dcea8625389418f6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 df2efc8abd6a62a25ca80a7f30e1b1b6b3e142600d7d7fa5a60c0e27a34bbfe0
MD5 ed08b40896d40eab2cb737269086adb3
BLAKE2b-256 c034934ab6b7038e8fd4e6b59f1a2641855fe67b01a4b164d54118c7c966f9d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db0faf75e262accb06bf59689935310b644df9c5a7cb63de53a962d86c16d339
MD5 270ca7580cb8af6e82d36b0a97d329a3
BLAKE2b-256 a08657e49edbc2540b2c3a8a70264998ff2ad2b82f3c6da444cfae347f6f1d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18980ad681c3a82806d5146b0fa22503ad2e065c81858c2cd56f6fc1e1c9d791
MD5 1e1b30c6f0c31d427a56c25894256a5f
BLAKE2b-256 4b15e8f1256667612e3b8755d81b1fb84d49c59554996cdbc86015b0532fac39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 540ceec2a633b50b63c1b32f12d13ed062f6709517278847e1a1c0338272f4f8
MD5 69e48b2dd1cbba923972ced4b613605a
BLAKE2b-256 2b718b044f2383e7ed00dca5a7a819cea4551e59845c39019a94afadc727fcc4

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