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.39 2.42 1.00
zlib 0.48 1.94 1.25
fastcrc 1.50 0.62 3.90
crcmod-plus 1.50 0.62 3.90

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

Uploaded Source

Built Distributions

anycrc-0.9.8-cp312-cp312-win_amd64.whl (86.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-0.9.8-cp312-cp312-win32.whl (74.1 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.9.8-cp312-cp312-musllinux_1_1_x86_64.whl (490.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.9.8-cp312-cp312-musllinux_1_1_i686.whl (465.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.9.8-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.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (452.9 kB view details)

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

anycrc-0.9.8-cp312-cp312-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.9.8-cp312-cp312-macosx_10_9_x86_64.whl (91.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.9.8-cp311-cp311-win_amd64.whl (85.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.9.8-cp311-cp311-win32.whl (73.9 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.9.8-cp311-cp311-musllinux_1_1_x86_64.whl (490.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.9.8-cp311-cp311-musllinux_1_1_i686.whl (468.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.9.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.9.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (424.3 kB view details)

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

anycrc-0.9.8-cp311-cp311-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.9.8-cp311-cp311-macosx_10_9_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.9.8-cp310-cp310-win_amd64.whl (85.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.9.8-cp310-cp310-win32.whl (74.3 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.9.8-cp310-cp310-musllinux_1_1_x86_64.whl (453.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.9.8-cp310-cp310-musllinux_1_1_i686.whl (438.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.9.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.9.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (398.7 kB view details)

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

anycrc-0.9.8-cp310-cp310-macosx_11_0_arm64.whl (85.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.9.8-cp310-cp310-macosx_10_9_x86_64.whl (89.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.9.8-cp39-cp39-win_amd64.whl (86.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.9.8-cp39-cp39-win32.whl (74.9 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.9.8-cp39-cp39-musllinux_1_1_x86_64.whl (456.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.9.8-cp39-cp39-musllinux_1_1_i686.whl (441.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.9.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.9.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (400.9 kB view details)

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

anycrc-0.9.8-cp39-cp39-macosx_11_0_arm64.whl (86.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.9.8-cp39-cp39-macosx_10_9_x86_64.whl (90.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.9.8-cp38-cp38-win_amd64.whl (86.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.9.8-cp38-cp38-win32.whl (74.9 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.9.8-cp38-cp38-musllinux_1_1_x86_64.whl (473.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.9.8-cp38-cp38-musllinux_1_1_i686.whl (454.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.9.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (433.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.9.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (409.9 kB view details)

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

anycrc-0.9.8-cp38-cp38-macosx_11_0_arm64.whl (86.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.9.8-cp38-cp38-macosx_10_9_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.9.8-cp37-cp37m-win_amd64.whl (86.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.9.8-cp37-cp37m-win32.whl (74.2 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.9.8-cp37-cp37m-musllinux_1_1_x86_64.whl (433.6 kB view details)

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

anycrc-0.9.8-cp37-cp37m-musllinux_1_1_i686.whl (415.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.9.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.0 kB view details)

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

anycrc-0.9.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (376.3 kB view details)

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

anycrc-0.9.8-cp37-cp37m-macosx_10_9_x86_64.whl (89.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-0.9.8.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8.tar.gz
Algorithm Hash digest
SHA256 f1c7c939c728b63a304947cb9be6dc631e7ad04ab596cdedca24a93ad7d9a809
MD5 b5f306a99ff4f00936c6c78442891267
BLAKE2b-256 b7049252c02549bd0f2a55cdb458bbbece73017843974e5df70d0e2c57f6e323

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 86.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 51df199f1633a938af97d3dd7c1daecc4e2e55385558203568595c400de247ed
MD5 924c4d348a67e83b58f3b6868c76e737
BLAKE2b-256 53b37a3a75fc350949cd5b656b4523fd9c9664652f1f111e23fc26673a580499

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 eb9d188ccc861fabc746078034841da2c9c007f6f0e6d24eb7de23cd1fadd4db
MD5 c0e70216be9456f8b11055841b01b5e2
BLAKE2b-256 af09c0d3037e3f31c184b217fc786f8363d35bceb711e68a4a17907db041c9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 34a999fb0b3324cbc5c4b99610bc6fb4c11bbe4fa3b6f9f2f33ed5d3b28fc6a9
MD5 7e69eb572d62db93e719e2c6c25d400c
BLAKE2b-256 9b13ec0045e20cc64e4779e19327d0f5a765a9de0082e0845a9a9ccc125882c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e7f838b742a0feaf40e2713336cfcffd89d43bb984122b6eb8ec5494c08b6d27
MD5 3f9be603ac2021ec615efcecaab87e34
BLAKE2b-256 ebac1a57324ccc4bf7a052f325b8788f3b2cf2372b93f8629ba111c21b3e0782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5056dc29134168ceaa3cda1baba120209d9a2967f5756aa3ea919fb12ef9024
MD5 ab4ea3d05d237258082916919b08250e
BLAKE2b-256 66bbe73ef92a492fded1b869b8f2de69dd831b8eb9a5b224453ee8f24d767dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06ff00d76a1374877a7515a8854ab6f111c95c4f6e1ff3134b13ba3fb9248840
MD5 3cb053902a3aab143b657bb8334ebfbd
BLAKE2b-256 8fd12f2a10f5f6fe7f7d171815cb32b01e5392f87ed6f11c23f3def6ec4fd99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 925e7ca853ed7766a0f8c1ac87020cd17451b46ef65d001de28d52aa73710d12
MD5 41a600dc5083e397aea27e19a4b89c14
BLAKE2b-256 abf2f129bcb0d41a5dc387bf89efb1dc40614217ca71ecbb24c9cb5f02e4a2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09131f78e6fd2364556cde4dad7616d177dda34f27e5b4e2aa706ebee611f507
MD5 52d03a16ab5f5789c4609488a82c0438
BLAKE2b-256 0b0fe15a8fb13ac22bc8d98450193aef1e1e0bdca786650b9cf7a67355a6d55c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 85.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 349e0d5e1a403e307bf0c2e2680badd8daa325332472f587f391e3f9aae8483d
MD5 522a3f5fcbf9f5f290547a857ae8265b
BLAKE2b-256 6827d46d03500b7267b5809cd4019675b37ea92972d1ef00a9f3f33f3aa2ccbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 70cabfab0d5eaa3e46a3b2f7a35cf45c975c4d89c3a876139dad17d9f4e2239d
MD5 8ca19baec219312dd3f9f99528adc589
BLAKE2b-256 810ed9997602200236e165ac0a722eafeaa867a480e61f5e04530ca67b69e59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3ece1420ad2752074d6909ddb31859b09769228fb345962497463170ddcf6e9
MD5 c99430f7862e9a10d954953feb4fd062
BLAKE2b-256 7d3f4c6465b99f184a6c97762711f49d685163b1a959e0fe7aaf3aab8e3b125e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 df9cf2dd661260c1e8401674c7f3ad514ffc5532107216462a9fa05c6c746652
MD5 6855cd2af238ff066ab747df2306db29
BLAKE2b-256 28a3efef0bbb55594cbfa21dc8b6662e357f6492a59db8f6bd56a78e400d364e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e501d7f281d6a57e23290933db2ec0257c3776496316824c2f490eb4e8b0f5f
MD5 02364b1181e578a0cb50d30d14da8956
BLAKE2b-256 3da2df39d4325fb00e7699ac78e481e91d6a38e67301e3eae4bee72b43b30d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a056be0c31119076b77d27f7cd16c799733e12a91cb643f1c1582c216137f3ef
MD5 a02aece98aaff155265be20357ccf822
BLAKE2b-256 2ebd5128610585567211937aa39f539f31ea9803f954557588d17ad84dcb30db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 657be3b3887a352b7566cd022b5b734accb2ded6bc6d24f9466049575ac33dcf
MD5 981305922e7f87abe1580bd1493cd3d7
BLAKE2b-256 05a0f46e907780b2744d0d12545ff868e3b95503423fc93301ea32995c86e5e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 decf969aab0b37dcd3dd081921f188f76f3f3fb681dd750e10e88406863e7d3a
MD5 d278d902a9e233f49d28d862bb474d61
BLAKE2b-256 10527cad0a95193d787a1fc27f7c8e5dd010335a08e0515e5f5f60914e2002ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c3fe49cec290d5dd9c7394fe21cda87e5fded36383f02d586a63dec5e8d7d82
MD5 33a33d0b59768f1da7815f8f2b37d7b0
BLAKE2b-256 c9865ef63e46be656206add7e4c86df595c7e4aee8cf0d88ad9663f04b056913

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 74.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ec9abc16e65127b68139faff9dfdee5e42655b3e4f9443c395b24b69219b1d65
MD5 b27153043ba83a6f32fa27fc55a184d9
BLAKE2b-256 b1d7a158674688cd356bdda7467b6d267483091c4a154589a1f031493c4dce4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f2e12ba2f01823b5077aa865f2d127a684ccd06af8cfd190feff25743c87fe1
MD5 e2bea799310e008bdab145462745ca81
BLAKE2b-256 85fe92ce94f90a0d8476a1f57ccfe7734fa6659aa68db768769d1d003723219c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1f5c412464a7112b12c96d074777332c80d97e4026f017d93935ac409a9ce9df
MD5 3d8ed3a1bed73dfd6280f3dc60550381
BLAKE2b-256 15a873ce30a384af7e2af74dfa20e2f641228c410ce66813245ccf25382e81e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b287e406d132aa4be54526cd3ef21a59f8ae992b11ae9aea48ea88f128ee354
MD5 8a83a4bb0d079e263c4c03728dfb67b1
BLAKE2b-256 bf174f9f4dc6bf7978ad3440bce800e6af73068525f7136584b84b93541fcf3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0aa536e42596be83cfdefb9bcefa72be5c5cb801d50286428b6406578d08d150
MD5 7ce1c1867ede0dbdec7ab2cbdc0b811a
BLAKE2b-256 b033075580e02f75906c3f53bddf126198f1baf62ecbc57a6361da016b812c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e6848c5de0c7a071e0d1b8951e95489216c7ac73c9cb082f51f5c5b42841cff
MD5 f6c45137cd2366971e55c8d220e94195
BLAKE2b-256 df76cc5b84c97d71d19aafc42459f5185f322c96da29ab71c99092d8b9e7ebbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19194adead239d704b0d90ef098129949975a27724eb823741724ce195a80eb8
MD5 227099a584e8af6115cfefe57761a26a
BLAKE2b-256 44a620d5d4f97e66875a1280f362db93b685ac8beeb27be48059f9677e63cdb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 86.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ca58ee018c9ccbdac5197039a886af44167e228a417a30462448244e584d0fcd
MD5 5695c66d3fa96fb5ab20af5b4d08b605
BLAKE2b-256 01aee71bbf6b9a83a789e1a565fa2f811aa9ff9740ebb645b98cdbf4819f36d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d240458c85632fae0ea021985d8445da500a5ba2b1e79785589c0c56d33a5e91
MD5 dbb7b6fae0bad230d799b4c8bb3d8d02
BLAKE2b-256 ac393be73491346bf951582d6824b3e2325a1ef3be8d173c913265747484268c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc459933fc9bf4acb214f0b48bcc69de3cd47e1f2b8d5d49ae6ea121a0d0b72b
MD5 d1636a43debe4282ae6b5f3061c2ebf3
BLAKE2b-256 4fe8e38787f43c4e14d90c19c4546e2f55db6af7ad826a42bac92491ceb7e15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f413688680cc335b9c765912efc4aab8bb0afb10e8d0ce38608693816550780f
MD5 92304772b65fe8529912b4f6f516bc43
BLAKE2b-256 0d5e9d58551d2fa696e419471d080cbdfd2be14db04a9dcee054aaf94980b915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 525f133ae7257c84720664eb498a29ec02ebaf40e9a1e801bb31294533b2dc76
MD5 35a5fce3974af77e1d271c34dd125e2b
BLAKE2b-256 fa8d8100cbd51451e7344cd95d2417f7ab81a1f523ae51acd2f350ab21bfa92e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6705ee1d86aa13d3dd27d9ed24781fb7a937bb35a621de9079e45f2ba3d1df3b
MD5 b6d81a7ad06e2c143a5d2f4de5d6f5cf
BLAKE2b-256 8b904f3cccdcb093d452f9ce0c26df33beb6f50f3ee3d8459126f2a2a2132941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d4778d076354c67f3a190285a0178fd520125bc0f57aca1a546ce0dedd7871f
MD5 30effa2b8e90293cd20bc14665f4845f
BLAKE2b-256 80c4a8fd13c9f2524a44966dba559a78fd203e7cb320af095a0f68d60813b050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 608eb085578d1e3e9581f7b9f84ba9033cecb3f6e19c96eb9a735062bfecd9a8
MD5 f1dd448cf0ff2711d9a6430dc29f52db
BLAKE2b-256 3dab8013e9ead3885d562d20049eebc1995da20ce3fee9d91fff6f1f57e817c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 86.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 836149193e6d696029e71950eeec14578c7ee92b4b5e0d2fddd0564d3832c549
MD5 ff9ed71ab48ab806808eb212a3f46e58
BLAKE2b-256 08dc3bd00c86b24fb697f4ff47065773700503d607459bdf59d6287fbeaeea01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a4ab5b2cea952a3340a0cb5aabacd6dc99a262270cf81713899cdd18377dc13d
MD5 d04dfbd1411921738c873fc237fe7256
BLAKE2b-256 b0adadc0d283a717ef466c5d973fb0a195d5d285d5264679a75a5e5e2ec6765e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cfb80ae74a9bec51e0eb94481a38b07b0852bc2f1659c3bbd879f8d5fe43ddaa
MD5 5230c9a0e77259d39faad08d95d87813
BLAKE2b-256 f70a430f5c8fa922944a8a1146967e7470a78057d164f6aec0d8a07d95a98d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a4760de0ec4b6d1577fdd70f1a4759a247333c5a2c4e6a445f52fd90f5a623f2
MD5 1d59a009c4611b0c6183187772419479
BLAKE2b-256 ab02649a1af380e723dcb1a1deed053592ff9c7df20b9f1bb77208d58c631aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1816540339df5604236f037c039e5ccacda863e9899f60a9b0f7472c9e8896d8
MD5 3f40813a0e87b330a346853a4f051aba
BLAKE2b-256 6ef420fa2549e837b7f7ed5093442e71f6c1491833f242245f64922b6b9a113d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eaae65566f207ad0deddffb61ff79321bfdbd2785aa9cef2c449ce971a2d59e5
MD5 cfadb65176b618bc4e0ad8b51de95686
BLAKE2b-256 47edc7573ca001c96dd9fc5dfbc2976d367dac0b85ab459f268e561995c6eb69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f89be3330c538778df66dea377daa233bb5b412fc72b7e324b130b994e526982
MD5 8dbc3bedc21a7e75ae1e9f5beb94c60f
BLAKE2b-256 487f542c1403f70dd94f7cd599819d6c6dc3d461be8ee59f71507e807495a389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d103f2298166a9005a9530a1e4d311e28e3afd47c715456963a93651030c8ff
MD5 b7627dc0d5d76bbd64e1922cd15bdd12
BLAKE2b-256 c18a1cb9e7ec312d40cc727398c0cfc5eab436e3b9cea1191369acee0e331ace

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 311d6da9c7affbce2330da6e51d8fcc644fabc1cbd56e2e7869fc3f16f75bfc7
MD5 a8f5e35b444fd3c6f7308c39867f5bad
BLAKE2b-256 316472b9e762b812a8722e2ee0ad801b0ab1464ea9e47ea9fa8e147d8721a2ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.8-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 74.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for anycrc-0.9.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e7633d55cd26dd9222c3f6278417f9f5908ce787efe3ccd143e25a3e493230cb
MD5 d01dfbb8ab095c7a3bb751f7099266c4
BLAKE2b-256 e46aa1878b1305d948a4a1a10238347040ceeb1b7165d68f1812341c42123801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 34d9c7120bb86e237f56a6ad2232ee0e6f7a5bc39ef5e42a42e74c58a2909cbc
MD5 a982a125d0d63b8f28b3b5844552e5f9
BLAKE2b-256 2c38fc9535821a07dd8973af1909c05e7e75d6b98682514c016ad9616bf57f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b916d143ad7b8c37d5114b1885e7a32aefd77588ef3583143269817c12dc0bf7
MD5 e4a1ad6d933162f5a9ea2cf61d64c9df
BLAKE2b-256 6e082f1ead5bf63e5c7e651904b5543f2d3e8d52812028f24117e884df6221d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f18494b8a94a7be92dd3655b24bdcfdb377d8c4b0df729fb06edb3f97c40d9d
MD5 e2fdc778dfec376b8925f43430e9fb97
BLAKE2b-256 ab0830ddff5f032844f383fcfcc3d54ca566464bd07c2ba819aa28eb132e5d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ad4238978185501581fc9effed0bd65064f639f7abb7e2961856f59d8cf1354
MD5 ab0c6e06d49a17be738288af38762eea
BLAKE2b-256 f36909c63994e636989a8db75d957eda3f03e8040d6a099107229575ea0db334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac297d1efbea95b73a896f31e68bf054167ca660c723ebc8302539de54543b0b
MD5 3bb16c02ec01bf10987fc6920d31cc6b
BLAKE2b-256 b58f7ab607b62c2410aed418c7fe55817d06307b8a7ede96766f1a68e0d2a3a1

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