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

Uploaded Source

Built Distributions

anycrc-0.9.6-cp312-cp312-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-0.9.6-cp312-cp312-win32.whl (74.6 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.9.6-cp312-cp312-musllinux_1_1_x86_64.whl (490.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.9.6-cp312-cp312-musllinux_1_1_i686.whl (466.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (478.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.9.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (453.1 kB view details)

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

anycrc-0.9.6-cp312-cp312-macosx_11_0_arm64.whl (87.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.9.6-cp312-cp312-macosx_10_9_x86_64.whl (92.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.9.6-cp311-cp311-win_amd64.whl (86.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.9.6-cp311-cp311-win32.whl (74.5 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.9.6-cp311-cp311-musllinux_1_1_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.9.6-cp311-cp311-musllinux_1_1_i686.whl (470.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.9.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (425.2 kB view details)

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

anycrc-0.9.6-cp311-cp311-macosx_11_0_arm64.whl (86.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.9.6-cp311-cp311-macosx_10_9_x86_64.whl (90.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.9.6-cp310-cp310-win_amd64.whl (86.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.9.6-cp310-cp310-win32.whl (74.8 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.9.6-cp310-cp310-musllinux_1_1_x86_64.whl (454.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.9.6-cp310-cp310-musllinux_1_1_i686.whl (439.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (419.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.9.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (399.1 kB view details)

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

anycrc-0.9.6-cp310-cp310-macosx_11_0_arm64.whl (86.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.9.6-cp310-cp310-macosx_10_9_x86_64.whl (90.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.9.6-cp39-cp39-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.9.6-cp39-cp39-win32.whl (75.4 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.9.6-cp39-cp39-musllinux_1_1_x86_64.whl (458.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.9.6-cp39-cp39-musllinux_1_1_i686.whl (442.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.9.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (401.2 kB view details)

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

anycrc-0.9.6-cp39-cp39-macosx_11_0_arm64.whl (86.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.9.6-cp39-cp39-macosx_10_9_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.9.6-cp38-cp38-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.9.6-cp38-cp38-win32.whl (75.3 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.9.6-cp38-cp38-musllinux_1_1_x86_64.whl (474.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.9.6-cp38-cp38-musllinux_1_1_i686.whl (456.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (434.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.9.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.4 kB view details)

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

anycrc-0.9.6-cp38-cp38-macosx_11_0_arm64.whl (86.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.9.6-cp38-cp38-macosx_10_9_x86_64.whl (90.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.9.6-cp37-cp37m-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.9.6-cp37-cp37m-win32.whl (74.8 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.9.6-cp37-cp37m-musllinux_1_1_x86_64.whl (435.0 kB view details)

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

anycrc-0.9.6-cp37-cp37m-musllinux_1_1_i686.whl (415.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.9.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.3 kB view details)

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

anycrc-0.9.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (377.0 kB view details)

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

anycrc-0.9.6-cp37-cp37m-macosx_10_9_x86_64.whl (90.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6.tar.gz
Algorithm Hash digest
SHA256 495a0b4cd346495189757d7429c4befdce48a89bb22e978747e62f12ace66042
MD5 2fbc1ea11a786f1ed3d7945a7e514aa5
BLAKE2b-256 690d61af6be2875c721f2fbcb42708be9baa86bcd413bc0bf27ececcb195b671

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 debbd359562742d85410b0e2efb464b84d57d7d679b50ada9b6687b1b7e9e6e7
MD5 95b838eb83ff076ab04e97cad2049068
BLAKE2b-256 3c61c412d590fbe6d8325629f797c68142982fe01f53483dc728d8e8828378f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a7701a0a5d13153632d5ffb35c9724a7cce2e5d5f8ab5001957d298e130183dd
MD5 3ff63ef6a329bb5744ea44c2db89cfcd
BLAKE2b-256 da566df475f00b9c04678ecafa09527a485ee337544cfd9da4b633eedcda7d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f8f9f2c7118866b6df5fce86a784596d5ba8199cd511022aa032a5b432dbdc77
MD5 55bc87c5be37f56e1815b4d2506f3841
BLAKE2b-256 1d071e816c1cb5cfbb23c3035d32a461e59b9349c1c8171103c9fd06dfc60758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c20e037aac0b8b0183c5f31155b147dbde9af7fad91fe9848814e2102b47081a
MD5 5d950331e162b20531f09deacfb3a214
BLAKE2b-256 f2a7149ff0622fce3a1a4f8ef39e0259b89ee73fd58c740a43f49e1089c40b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 003117d68eb3a284e0cc54fe3db8883a6d70e183f3b9801c2b18ea945d36c2bb
MD5 772f2de645b2a1fc7daca8ab2ab3577b
BLAKE2b-256 89b106239fb92523ab2aacef4635451f353b675ab599171c538accefa927f57c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c309b9d7a4078e8006ac399c12615f16ab1b6ba3f016b2ea97324a6bd25cff1e
MD5 4af0fc9eb11ecdb255038fb4933fbfbc
BLAKE2b-256 33c5ca78c5e5e1afb11d544f130f8e90297c4a16262f34d92675efb1c9e5d7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d13f497dce8dfd88737b0f2a14a3419c4d54240b6962ea8b9964166035afdfc0
MD5 8e35efb9c2e374ae2d6b7ab6c0ed8883
BLAKE2b-256 6844b0b8c90a82536cf5f79c936f28a3a084afdaeeb2d6e32bf039aa5bb771eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5814e862a1af71bdfdb135c31e038c9c7dc181c682b89fc1035defa4e31f1eb
MD5 2c3210888f384664858d8742222313ff
BLAKE2b-256 2297cb8db8187f22f9e37207559baa9d4a58db8ab0b165c7ddc97f695c7a1a5f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3096779994b297cf1e4f36931ab36e93b189e31b99762e7fd8e4b1322a36c1dd
MD5 e515f66a8a6c5815bd96ab1157510e6b
BLAKE2b-256 cae326b9e998ec38917ea313a78c60c0368ef1182d54c13422ae4334c54e7e28

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cb7fc85cab3b101431d07a760ff288afd7ecde4220279577dca4b6a0a57704a3
MD5 7f967ac3f90776ec0f4e2701a1788c3d
BLAKE2b-256 a997d40416bb8a04a890e978c3164a4e02031a0adfa8adaecdaba3aef186ccd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 00564e7f81ae80255c90b361c22327692e7fe69dba3d61a45b62e011664fa78f
MD5 47acc1c7b6185801355291e12ee39f45
BLAKE2b-256 8dda7ec896bac3ef3889daf645f25f34b3e1a7df1d721fa3e1739782deb1a595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 559e26e618d359b217158313624f1f7b88ad808085d67dfba9d4ce0a239fefee
MD5 c5078ec828dc74cf7e6ac85fc4f12c95
BLAKE2b-256 b131ed2b4f3091cb214d7752f0f5e6b4900b00d12792151e657f348a5f05a45b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcf582aa9ec57a86b919f09087461d99709b5ffa884124c3c5c1869f8e808007
MD5 b753f564d90ef7b1a756319e2e7579e3
BLAKE2b-256 09f4d3db8c5baffe70e813b9e5a59d07e6296fe1e40e07fba26f8da8249922cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e7c7ffd8562e423043f2c52156cdaf6f592706ae392889a8709ff820bf70ee6
MD5 59a23c0f24e25260766ba2f5cd25fdb9
BLAKE2b-256 5d0969b01796bc41ace7987f06547ad3bfb9d8c662adfe34032930552aaa3a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1172211dfc71d1514b2fddae6dc6048f6305f37619ee5bd81060aea01ec6ae5a
MD5 e30b5ec7e3384258baf39458cb5be438
BLAKE2b-256 bd53dd649aad2e45aaef7567a7665ecb5656a579e0431a3d73ab8eaab3bc57a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b9bacbc1bbf6cf101b946a82c540facc357240e7bec66d4a0681fd077c1de4c
MD5 52463f974d9384a5dd59e71e2b468afb
BLAKE2b-256 d14c495e72a0962680ec997a4fa89df6279602c98354f1a76cb2e495fde02889

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5494838f689fd65345ec45e9a23120269ecbee6d3d000d06113b93f7ab7b3369
MD5 701637cd952a40ea70aed8a4d133a503
BLAKE2b-256 112fe3532d09e83b4d439b066273c95cbda2a565c848ecf10a3b2c3894a42631

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 94f7a411469908b92bc54cb76c3d9768b195fca7e84c940f99ec623c11fa7d2f
MD5 502fc534d2d5e4dfbfff779981c1b080
BLAKE2b-256 287de2cd4a8a035c58df680097a44c2c2b80d556c6a25537aec27315406a8e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 14018abb058484933507065a61a270bc708c30032748143cc782693fe756c8c0
MD5 2923928cc1e4d1157aa96a2bf8dfd803
BLAKE2b-256 93658576ade73d7449483ea7d797a6be69ef5282850d7ff211cbee3b586236d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2f55bd5d64924f132a8cad8bf87d211138867fa2b3c6151d3064a8a055635366
MD5 6f37a8151fb14f5eed3b956bfe10bc04
BLAKE2b-256 b381b51a159e47b2d71767fcbdbaeb91a7ddfc85b15b57bd0165d6e1bcd7b3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 908a0069ff5e5509c24f0b27222c5ebb3a097f4fbaa31386b74d95825fe9fd6a
MD5 cf4efbf2f0c99fecdc5a1620e51c9489
BLAKE2b-256 be0037c4a6b83cf5866c0cbcba281d8b1ffb70a6fb79e95b857a108b507d5092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db3a822d4c4f6d3fd0de06bad0f2c0733c46a39b43e98ffd3345b6b6680f6c2c
MD5 ac0e9ce73ebd0aea6f3ab2146da197e3
BLAKE2b-256 6f7c50b44d85bbff1bf073c189a65e884847dc6aa9bb40604d5400b23e034c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43898b9b2e728ddd70bc96d012680c8f3f17aa20efb6e555d27f147294cd1683
MD5 bd5d66c1321ada0567a94d23d1e35d42
BLAKE2b-256 18c0f74d9ea511cff586609788759bb24cc7b18c98145b0145d1a26232f4ee0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a273311fc2869a4078c4c77845ab2fe44bb3882d8ea69d99f9c7fbb9305dcfde
MD5 ecf43f57ca0a6272681eafeb663d9935
BLAKE2b-256 dfb2925f170450cb10ff4c1e845d0f6b6d078e3795ec35440b27276f317cf1b0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 982f477dc22ae4b4d478e08853fba6240b8427ba27e27e954b4ad1dd0635d012
MD5 99f67a1b011b3eb94a53b62ecd72e3da
BLAKE2b-256 70a8b027d7b85d1d669b3538a4dde12c2bdceafea160b0f08e8a990b3371a2d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 68b8a721f58ced4a79bc3b497ee4793bc770c0d8004183b55a38aa1b093f20a5
MD5 5e10f74de17b7a936310c48b583b0b52
BLAKE2b-256 a020b7803a4ba16f40076c8eaa696f7b175fc7d80e054d3fca3e3d24483506f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1ad07a0036d515b1e1389bb5e0add6833ed6125eda769e6c28469108fadd161
MD5 e2aa4b81cdde18ce673a7c7e60b0179e
BLAKE2b-256 ab991ea1cf60b7871b89b013ffd88d318b72a4e7eca1a754bd0a3526fded9f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 49b1118c6c3edc30bd458be5d8b42ee41f7291783f80ca8b673bacbc2b70fa80
MD5 5aa9db0367a23af25312ead9e594c04c
BLAKE2b-256 9bf395a33a8a2c8c5919aff951dd3f84f58e96c590b9f791e20d0e56ef719113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e802aec7a693cddb904046afb57481fb8e80e2460efd68cf0d3d9ea98dd379c5
MD5 40017f34027d2919d59b4a92f26f7dc9
BLAKE2b-256 ec0b927720062adb465c3bd72c8ccf2f34c6d524b72fb85a078d80098a4c024d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32eb8fecbaa7b539d8b22090cebcd5527a4df4dc4caf96d67b99c89c250d8362
MD5 b1e51bfcf7d7d248cf88b74852e3895e
BLAKE2b-256 e713068ef85a5f92ba987fba5c8df8a4a6ef2d6b36beadaf57c6d003de3790e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 219ef5e5bb07340f8c343d5798c5d9df7c7aaf9acf2bdd09577ba7780dcd3423
MD5 951b6f9cb4d7c1bfcbad2d3cfcf37d86
BLAKE2b-256 08d566b8705dab943eb99b79a1b7db407aec4f69d25b12bf07a9f9406c6a99e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3c8c70f772b74139ca193465418e46224fe182c0cdce8fb91005691cfdf5bcc
MD5 b921f59a4dc7c32b56b32622b541b137
BLAKE2b-256 8b286404b1212cd4f941caa14c26208f5c12e2d06d52d9dbfabd0ba35bc38466

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 487c4a34846f1c729baee4d48bf66c0e383e1e5caba0eaa29f51a2dccdcd11f8
MD5 28b3e85178d7f289d9557106e1ddaf3d
BLAKE2b-256 7fa34c6d188a5cccffb33ee13bd56a4d1e6d5afb53c1b22b8469e2fb0ba63319

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a2f0ac48b1fd18cdde955482013d1d06e7ee511c58e7412d7d2afd8e3018968e
MD5 5fbb32811d3dacb8cd188511d8b64806
BLAKE2b-256 bf695ea63d75040ed9e7848d59d74662f28e248b13a7c9c94ca95570dc0afe87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49f2997bd1aaee6b5a6c203d263662319bd07a01bbd5363ed61abf648b033cac
MD5 4a1753c5b550fb29cb4e0944152fd727
BLAKE2b-256 0303876ef902e7c68dfc38a302b9abac5c5b53a76d64020e452a8ed346b6aae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 af772ab320fff6ba0b76157231e1e3271e56459bef6ddb67dfc0e9fc8fc69147
MD5 24085073a2629205c357f807e15dafb3
BLAKE2b-256 c53ef1cd81b053aba00942cde378ec942844f0f84d00f06ae6464e43aae21bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07216b8eecc5a0a86bb3bf308dd64c93190a5035ca83be8ecc50ec4f113843b1
MD5 bcce98c92d8c520ab6b92e268abe34ed
BLAKE2b-256 a98a3b66f73b1964f6fcfdb79d8aaf7e3f531fa101a5b3effd0b42ee17353250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83dc26bf0a2725e74fcf77f797696539dad168d0883e6942a4b1cce15d07c8bd
MD5 783dbaabb60f11c35d87e44b087174f6
BLAKE2b-256 c31f4e4c0888effe0e72d3fd51ab9feeaee4bade6cd8aae168c00538b2036061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 221c91f15be293f7836295bf50e2d0c7982e3a3695bfc8b78ca5c38619650410
MD5 1baae9ea0314ac32159e045623432c34
BLAKE2b-256 5a2e299188ffe48efdeab09abf9a3f42e656245f2d15c5502701f5b9299f6262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d07f46bef113c69f76c2dc1cbdbe123dad9bb452857512fc8db3c9f6b6f68825
MD5 693de6cd1fef2e31c0ac981290179f59
BLAKE2b-256 d8f7d3e8661aa92542daca8f1a99521f6608849d75f8f8bcdfa24f34583d8781

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 16cd191645014cb35af8a5e6cd10ac0bf1a274cd792fd843c230b645fb65b93c
MD5 ea56dd93913d7cecf132b68e45daae22
BLAKE2b-256 60812f0247db5ca787e3e90dc12bac3fb04847769870f5d5e02169299b8a2cd5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cd6f2f0a53b1359c67adea487d83d7f1fd0a349da71c7d66f9e60e5624350170
MD5 2dccaa9b08cefe92feb66b65e62fb967
BLAKE2b-256 26d64ba1ab73809803b74386c33e9070ba81af2cad281a34325821ca3c2169ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 521799b99a443b36c04cf3807275d4cb8ac9f8ef589c32e27bde606dbf4b88af
MD5 e56aae14df9f98f6b2bba7149c73df50
BLAKE2b-256 224fac1d61304541bae83b7bba5578acf29e996ce5ddaacee3dff4ba995bbfdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d6f0d35a952e717c8b06f62c23bcc554ecb8a762b3e3042a9570f0a4b455797c
MD5 e23ee78dc0e2f09d2a9de651dedecae0
BLAKE2b-256 bb663dc9ad55e15d6a95593b6fbf4e95b4d243e92f45dd1c321c39364e33cc04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d295cadb31f14bd0a39d188f212942709cf9248ea177219bc10b79c95a1526a7
MD5 d3dddaa935355fb0511a248c589fdaa4
BLAKE2b-256 cbd83922187620593125ee34cf16599c28d2d727e6c7aa1e096a77c4fe242296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf6a55179210aa1af60d6e1f8f0a87b439832d4ae76a4996044f8c7fce8be853
MD5 8baae02a8913faee72f1cdbf24d2e507
BLAKE2b-256 acd84e84b662ed3d2c1451cd9f7246fdcc5ee911ffdbc121add7e958b0edc7d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae856c1d979a5835641cb045c7a27b16ce6a67cac4282ecefa59b96590db5fd7
MD5 e2593f82c9edec8c36964d20e483fe5c
BLAKE2b-256 37ab559d8d6d45123bab29f454da48759265d5af482c438bfc3f5d4998a80f5e

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