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

Uploaded Source

Built Distributions

anycrc-0.9.5-cp312-cp312-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-0.9.5-cp312-cp312-win32.whl (76.3 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.9.5-cp312-cp312-musllinux_1_1_x86_64.whl (503.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.9.5-cp312-cp312-musllinux_1_1_i686.whl (480.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (467.8 kB view details)

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

anycrc-0.9.5-cp312-cp312-macosx_11_0_arm64.whl (88.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.9.5-cp312-cp312-macosx_10_9_x86_64.whl (94.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.9.5-cp311-cp311-win_amd64.whl (88.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.9.5-cp311-cp311-win32.whl (76.3 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.9.5-cp311-cp311-musllinux_1_1_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.9.5-cp311-cp311-musllinux_1_1_i686.whl (483.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (436.6 kB view details)

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

anycrc-0.9.5-cp311-cp311-macosx_11_0_arm64.whl (88.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.9.5-cp311-cp311-macosx_10_9_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.9.5-cp310-cp310-win_amd64.whl (88.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.9.5-cp310-cp310-win32.whl (76.6 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.9.5-cp310-cp310-musllinux_1_1_x86_64.whl (467.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.9.5-cp310-cp310-musllinux_1_1_i686.whl (449.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (430.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (411.5 kB view details)

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

anycrc-0.9.5-cp310-cp310-macosx_11_0_arm64.whl (88.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.9.5-cp310-cp310-macosx_10_9_x86_64.whl (92.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.9.5-cp39-cp39-win_amd64.whl (88.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.9.5-cp39-cp39-win32.whl (77.2 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.9.5-cp39-cp39-musllinux_1_1_x86_64.whl (470.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.9.5-cp39-cp39-musllinux_1_1_i686.whl (452.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (432.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (413.6 kB view details)

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

anycrc-0.9.5-cp39-cp39-macosx_11_0_arm64.whl (88.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.9.5-cp39-cp39-macosx_10_9_x86_64.whl (93.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.9.5-cp38-cp38-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.9.5-cp38-cp38-win32.whl (77.2 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.9.5-cp38-cp38-musllinux_1_1_x86_64.whl (491.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.9.5-cp38-cp38-musllinux_1_1_i686.whl (471.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (424.1 kB view details)

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

anycrc-0.9.5-cp38-cp38-macosx_11_0_arm64.whl (88.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.9.5-cp38-cp38-macosx_10_9_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.9.5-cp37-cp37m-win_amd64.whl (88.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.9.5-cp37-cp37m-win32.whl (76.2 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.9.5-cp37-cp37m-musllinux_1_1_x86_64.whl (447.9 kB view details)

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

anycrc-0.9.5-cp37-cp37m-musllinux_1_1_i686.whl (427.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.9.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.7 kB view details)

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

anycrc-0.9.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (388.4 kB view details)

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

anycrc-0.9.5-cp37-cp37m-macosx_10_9_x86_64.whl (92.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-0.9.5.tar.gz
  • Upload date:
  • Size: 10.9 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.5.tar.gz
Algorithm Hash digest
SHA256 166cb5699c7e61bc33d36461790346b74bc1ed5212dc0173d26c4f3d01ef441f
MD5 c93c66b2bc25aebe26b3f1ee09900b8a
BLAKE2b-256 ac5c1d7fb1e056c507598fd9d2697114dd6265464ec06825f18bb428f274cb47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 88.4 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 701823b2005dbcd380ddf6c218a55fbb082c36bf32b4da5342deaf321c28c3cd
MD5 be95cdcc7e038d2d9205eb9f3896c6f6
BLAKE2b-256 738af8708e2e9a05e2668566002c10ad39a15c9ce48ae3c9c05f1caac789b49b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 76.3 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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 423bd2272faf983df1c670b7c95ada81d8662fa195f4e5ec89776d60fb2c5b40
MD5 e78c3a4050ff0983b7d1358a06765c60
BLAKE2b-256 b2b700dba332879c227a59771128a11a9187211116e41b7b4b46d58d233a2d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a44c2c90ae8a2367602899889cb4cba4dfcc86603415382f6ce8210d32d3e76a
MD5 660443a3c5aa3db8f2ba1413d0937ba4
BLAKE2b-256 cdf4e2be75bcf16eb0f475d9fa3ebcdb6be924bef0a32842a0348f139c814984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7f7985a30347861a6358ed46edf8ff50d9db6243b5ba56f18c976ec925b44245
MD5 523a24bdaef0c7432de3e9e6c2d6870d
BLAKE2b-256 48b0606b02ec5a4ba400c61f0c178be78183ea4f24a06a32bea381231c6d9498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06236f50289339bfae222e127f95aef83d8f466401c5babcb6296a90aefe7487
MD5 cb02ed09afa7c1b34182fc7a004ac541
BLAKE2b-256 5f9d024d87397510551dcf41aff82a6ae8113a6e033f163275ec1e352521b7f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb590c08cd9688229aec21647ca58758366cfc59a5fbf562403167bc496bb092
MD5 af0f614c6d29a0eccba800cafa5a8581
BLAKE2b-256 bd1489876a021b5aa0916dae68ffe023fefac7a51f9c8f5e2b6aeca0e5955065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f5ffbe9ac46ab00fbecb9b5f1370250eaa8c2de4d8b49ccb94b2e777f8241ab
MD5 123b57265e9a9af262b4e849ad49a5d4
BLAKE2b-256 d8c9255922949173f9dcc67641a7a0ae762247ec99f94202e1cddefc461e13fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 155aca165d22778cdcd5c0dd94d5942cffbc06e103c3af97812818dc7f6a6e9d
MD5 a3d5a5d8badc8e32b1d215a61cd07909
BLAKE2b-256 a10d730d8bc497d804b72b609d4c0074d1b758ebedf2899e0aad372cca6d2ee5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.1 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8728ee5a237bcef4f3760b3813285dda4479138654f5357a049caa0d45f5a7fa
MD5 346066771c3bcd933b4d161adf64b8ac
BLAKE2b-256 7940c1e8e83cc26f9bc4cb759d1e9410aef3cea9a665ba9c3acbc02fd5b34d16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 76.3 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 02864f09fe1fdc48253beaf41ece9d28e647c6db2ac068860f4b0b228805953c
MD5 ae1f1aff757b5358fc7d6c221a587ea8
BLAKE2b-256 e1c57aaf8cfb3f5298436a052f04956cffe60b35f16b0217de399348db8abab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a96334b0fa21b2abf556aff5d7335ec6412dc60328c762e1ad17673c4a9fbfe
MD5 758e30c49cfed9053283c40248ac3d59
BLAKE2b-256 40f9970d0095da0e9630992e1ef8a304f0839bb337b27b0951650c28297708b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2ae1de21a5f8f6fe86b77315e7aa7349ce1d288bbe852f7d1f8b2faf32bb2cd6
MD5 4c0c1d7587567b1bd003c249187dad46
BLAKE2b-256 38a3445548d8775fcf250257a1992b17dab37df6786a7f018f25979f3454705e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 563e5636de314c482b8b31f611a5555e4efe14e73508a1f04276b7bbeea7cb68
MD5 5331baa6b9d78f52a4980910629e450e
BLAKE2b-256 53069dedcd9703488643b550d89275408797eec353161d97c6100d183710aa37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a15801ef42e87117a0806ebec7652922fb68d654bb03f9ae05eebc0ee9256f6
MD5 74f24a5c19f51c0d2fefea0a5bd9f285
BLAKE2b-256 95e2f9a5fc441212bf8b0be86cbdb64d136f862600e08105f2a24f04861ebc9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f10269fbd18b8f17c714a03fe7cae803033152cd3ff96d8258fa98ac23ea611b
MD5 2f30246e6b5e7e1a7db14a08af0f8582
BLAKE2b-256 f04f57661fb51fec6a041801f56d168af8713ff9c6618745a426ddfd6ceb8a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ca7d74031c480d1b1699481859896ce17e1091ce6eb651f6db84383b7d75664
MD5 2a5ca5edf809ddc95f97007d75b74a7b
BLAKE2b-256 c01cb506269293729539f7ff3dc0d13f5df812d794956bb2df16436a80c599c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.0 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2123900165ad327a3486fe9f6b2c762fd4f3d9ae1a1dd8fce22899ea2bb6ef2
MD5 d49b14d277ecb5bfd7fad14747f88c52
BLAKE2b-256 d978f46b452fa7a6d18651500fafbd6b5204499ffd6ce3cef4d90d0a66731ac4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 76.6 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e946f79765c45773a47b45557e1423d0e54feed080168ac8f85b768107d9355d
MD5 9c797d8aad72993ccfe751b05cf7ff6e
BLAKE2b-256 923c7b2cd651cdff9d4e986a3b76696110413e898c9784860bc566b71027401c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 213dd3c4548923d26f29b6ca2eed5cb66aeaab0c0771bca5cd85ca79dc799f15
MD5 e749d1922fa673ed827ed15468c8cd90
BLAKE2b-256 7dee38c7ac59ee6b8a078acc186d8a4793f6dcbecaf3010a9790b8e844353bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e7e635ee07aca277205d263a5819ee75d80f4cbb004a9cf3db60d5209f649d45
MD5 4bb611278d3b89137dec21fdbbc54ce0
BLAKE2b-256 f940e7b9565042fb62b6c75f00965a2ca235ee789a0d07e0d551002dabdc91f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c2ebc3bbdddf02515cdc555a0174e2d73b4ff2c145e5e7bddf62c3878f40414
MD5 c890f5c1b39b22e65912d9c14f865f75
BLAKE2b-256 864a58d0add0aeb56ef02e3e9e4c462f48bf30643bd4ea074a5d423cbdc738cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad91625ee98f6a56bdc518bdf0a3f670fe385fc9b40b9c250fa433b03216fc4b
MD5 4ddab00ce08896fa086d74f093eae405
BLAKE2b-256 01ad9c0162860bfcba2073caecfe6111a3b49e236118bb2109dc200a937e9f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef3b30c602af266f19f71510602aab4d4dfb3a2fd35df06631b7287320eae7ff
MD5 e00c328d15f371100d238d2ded7a0bd3
BLAKE2b-256 e0ab5db217715c608669ba6d43c43d695187bb8a2cd1bb819f7d25b5e1afdb4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f14a89bb6f485a928a182b7f276eb9157c40ccb933fc54fbf737c5fdef4059f3
MD5 1307d6f8d51a46e799331cc98c000751
BLAKE2b-256 a75b490b3e6c671796c1f8f6bbfb5786df5ad3f9ade7bfe8db3facb4dbd88f7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 88.5 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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 50be9d51e365122ef3b609e262e0f5736ff85503507cc4451d3102cde7054cd8
MD5 18a5681514e3a2dd571d74571fa19cf4
BLAKE2b-256 7e937592ece3d8e10e1ac624db206b1a2db7bf9394aa9af35826ffda5bb64036

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.2 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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 92ffc83a6e66dbed20f577eff8b8a6cc3d9270e4e714645ebe51caab0c3d42dd
MD5 827574e42665ed9d020f41ac55c5d682
BLAKE2b-256 f020330a68507cf6362f3727d184ba3ea63889bb27d543b591fb4c6d7cde10bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9302d4afe5997ff69e94ea74612a395370f1bf0e0795a21c25ee5a50c0e8107a
MD5 d18010892eb1ccab2b1835bad9735cba
BLAKE2b-256 30390b319aa580a1623b9ea1556af78f01f872c021ec22a7506c39b81b5dbf17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 36d18b09f61693383e49b9d13387fc36ec499b3fa4b5eb704852efade37aafc9
MD5 2631b0bdb2f87c46100ba4b4d071c3d4
BLAKE2b-256 747b9dcac908e1c5625e45afe112dd64cdebe7b30a041d80b1d7da45cec4477d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0159802113b5b194831464360f05bef69cb97f7589424a37a24cafc950b56051
MD5 8d6174a23b4979ee0ef52d603c5141f7
BLAKE2b-256 c41c835d2d1dc750ff020f18184fbe307f5e41027f74edadfa8d3b94a8af1163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e9dfb06069f6098971b8eb5bf148698e93da1f52826d8259ccf864c582ba12f
MD5 208839c16a315d14fb8511a282152daa
BLAKE2b-256 896680e8b3209558fc3093488a67c1fbfeaaa30adb0266b1f5568caffed95aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6155709a47ad70f5c60ba25a1e1acb9446939ba710495dbb4fc42b626047949c
MD5 ebdf6fd11aef65d30293ade2a19c03e2
BLAKE2b-256 b6511dd03e41a2fa0f108b2c22c55b422e648e1b91cf36ccfc35aade3de4815c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13fa01515522cab93cf2210bac98f310407bf33dbf072a9432f08f9ed9ed1848
MD5 de38064ba7a2606f9f7e92c75fd001cf
BLAKE2b-256 35c91966609018814db3c9471af9afb6489c359d675ffe9aba2b7d3694526aa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.6 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.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a8a4351a09291b72241b35091001996c90bea0a89e4c886ea46c9e46d8b010f5
MD5 2fcd30688749c382e9a2e9b075477a09
BLAKE2b-256 900a9e32d1b0b7d35351ba8330b92151fda6b3197984ecd7221fe774f4b86358

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 77.2 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.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c5d61dead2d50e1d12bceb4a21828797ad48728fa7ff105fadd7bbe563e8a162
MD5 39d87d3e8b3f39fbcfaa3b23d4af2d19
BLAKE2b-256 16e0240f49a64958f416dc01e126667c7ee6df36670fcace8415196e73fc66ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 edfe2aa9ca460bc3c4aff182e34485d0e031c092432879214604c5ca8c51c1d0
MD5 23bc2e3ec2aba1e484f635f931fbc611
BLAKE2b-256 2d35444487e735d3fe4372a159d9ee1d4398a25cb741768ea1d157f3f6fbcd6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5db15a01405d759f7ce53816338da588eb291cff8b21ceaec4d0f361517b25e5
MD5 7988451e4bbfbbda01c830f1a464d84b
BLAKE2b-256 97ac18149509d8e6cc2269bab98f4fb50ce6c9c62a7555deffe11a65e3ed43d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0095879c8bb035a5dde7771069f9f374fdd4049a76d6abf940e271a79f71252
MD5 9299d4b60ac55ce7bce7f970cae9ead6
BLAKE2b-256 66f05ec9ab81a2d59fa4f78da3f4f0db5c846c0d393995cb01fcb9e87d81c52c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7425ed28cfb12d2f33bb2fcfe27e2cb6dfc02da6ef55177e76c3ed61bbab5165
MD5 42e1460e64bcb5905ff1c1e7047c57b6
BLAKE2b-256 47362172a62f86ac4a03223ca3907b9cadc79dce992499311f4df81e1b919e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3be92f350ca6efa498bfe133253753fe1c498c8323cf94c06cba204e0220a64b
MD5 a10209377395edf7b6d1569c505dd88c
BLAKE2b-256 157cbccbd21227c43b2276bf90ea6e58fd3aaefc09f53ebcb95b43f2c145add2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1797222e5329cc02c827513f33afc9e3b7fa6e9069c4c66cfe150eee309797ce
MD5 ea7d6fab2c04aeeaba3d7731786f90ec
BLAKE2b-256 f5e5ca22eeeded7ad6d976c950c608014da425b5ab6cd389886a49747c420c4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 88.3 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.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 525d756d62c081bad8d607dca7331335b37b5f91ed90f6db9e3b02f5b272058d
MD5 69e93d8eebf9c9fcba973ffb0ee78bcf
BLAKE2b-256 d18d49f5f78fc57e66298b7aa3d541594a5615b1ba4b8e3b36d0d2d8d14ae948

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 76.2 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.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ab2c5f21662e287fb1ffea612a0c65168e275b589d1ef7e9346ce00736911ee9
MD5 d1772f22003060868e2a8ffeaa796305
BLAKE2b-256 8edddb64485376a50b6f376e2a33fb88e644152cd45364630e8acc51a47ed7f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3773b86a3247849b838541041df1ac07a785bc25e05fa304f8014af35a0fa9ac
MD5 fc36834683f1808e302d7dff9ae038cc
BLAKE2b-256 e2d85d970fc2c1150311ead1bbca8df042ba8611ab4f08d01125cc582bb91a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8667cd81d32ed0c21f11deeffa0dd52cfaf8649dcec234234eb5e180c939ba04
MD5 83a3eb2d27a79a3eec53efc06e267e2d
BLAKE2b-256 88f24fa9757a74ffcc578a59234ef01964af10f442c6257be03a9788e63d3354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97f896b1bd55626b95ee51f345172dbe4d628e3a700493661d2eb2c635876a00
MD5 3c084c66573c40cf349808efd43df4c4
BLAKE2b-256 04ca6f06e920902c3bafee9bbf46876c801ce230ea9949475e0a50ae4d3853b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc654f7527d53d912708c072024d6fb3f3f058f309ff43e33eb3bf311a5663f7
MD5 1afaced648fec0f422c41a9a757a6f71
BLAKE2b-256 d969b15721a1060622181895dae80b08e7fdae517dee0a26525c6c1288303044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81990aa5c4b635588d151839b5741f6e0dc794b5dbaf6ca67728554c6ef6af6f
MD5 10939f5dac82c1b16a1ac0d17bebbb36
BLAKE2b-256 a26c9e776534ca98e04ebbaef2484c77af9a38f73e67cf516b2867a327591171

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