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-MPEG-2')
>>> crc32.calc(b'Hello World!')
2498069329

Read the data in chunks:

>>> crc32.update(b'Hello ')
3788805874
>>> crc32.update(b'World!')
2498069329

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()
2498069329

To specify the starting CRC value:

>>> crc32.set(3788805874)
>>> crc32.calc('World!')
2498069329

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=False, refout=False, xorout=0x00000000)
>>> crc32.calc('Hello World!')
2498069329

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

anycrc-1.0.1-cp312-cp312-win32.whl (74.2 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-1.0.1-cp312-cp312-musllinux_1_1_i686.whl (466.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (453.3 kB view details)

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

anycrc-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (86.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl (91.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

anycrc-1.0.1-cp311-cp311-win32.whl (74.1 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-1.0.1-cp311-cp311-musllinux_1_1_i686.whl (469.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-1.0.1-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-1.0.1-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-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (85.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl (90.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

anycrc-1.0.1-cp310-cp310-win32.whl (74.5 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-1.0.1-cp310-cp310-musllinux_1_1_i686.whl (438.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (399.2 kB view details)

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

anycrc-1.0.1-cp310-cp310-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

anycrc-1.0.1-cp39-cp39-win32.whl (75.0 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl (457.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-1.0.1-cp39-cp39-musllinux_1_1_i686.whl (441.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-1.0.1-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-1.0.1-cp39-cp39-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-1.0.1-cp38-cp38-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-1.0.1-cp38-cp38-win32.whl (75.0 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-1.0.1-cp38-cp38-musllinux_1_1_x86_64.whl (473.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-1.0.1-cp38-cp38-musllinux_1_1_i686.whl (455.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (433.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-1.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.1 kB view details)

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

anycrc-1.0.1-cp38-cp38-macosx_11_0_arm64.whl (86.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl (90.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-1.0.1-cp37-cp37m-win_amd64.whl (86.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

anycrc-1.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl (433.7 kB view details)

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

anycrc-1.0.1-cp37-cp37m-musllinux_1_1_i686.whl (415.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.1 kB view details)

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

anycrc-1.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (376.4 kB view details)

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

anycrc-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (90.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-1.0.1.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-1.0.1.tar.gz
Algorithm Hash digest
SHA256 6415890156800a43c008d11493fc0624010a78cc8ab36cec7805b3e8bd02217d
MD5 dc931e7f4606a1ac220bd626002b1f94
BLAKE2b-256 70a287825260bf66b2aa4bba721ff81504c1bf589a36bb50fe4a8a35f211381c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-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-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d64c4817c719b51bd3bd89b643d5160d602d720d8f2dbbb99e64883d8e35ab81
MD5 f4e5fa57bece67c0153d39dac7da91c2
BLAKE2b-256 0f4e7e332d54dbda8af14d543f8aac1df831baf4c40665b4335ba12c1f5fc997

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 74.2 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-1.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 04fd10d08276a0d1fa4ec6d17461c1e30666a239095997734a902cb1a5f0814c
MD5 749c09ad9ebd8e897fe036a08d5cfe64
BLAKE2b-256 fbe468bb8a06100772764743884796d753a7f1fe169b4e1c999b7d7fbc616ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 387c252b6c4fa9511bab6bb1d97e451fb0a3a66ba4bd8c435e563077a952b510
MD5 a931c9bf4153032e5fcaa112e7bb9bea
BLAKE2b-256 1a3cad7ca015fd297210cc8df8a54385ac8d52bf0352c5f5605af5a046b93d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e20696f142d55b162dee0d4a728bdde10506f5103bd8378b2bc86ef3d255e4da
MD5 840dca6dbcc532a7dc1f9be567161d1d
BLAKE2b-256 04e185605d5c50f690bf0a31ee582b80f61590c9d868f7f2dd0c1d9f059235bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b83b1e1e6d4e2b8b1689f529c851f61fb67e00e1020e80857a58e5f6ef77394
MD5 efb600d5ce0506c3ac397401c915fe99
BLAKE2b-256 c9f81f3de492448ff787a8c9e28a98325a71c0ff1b3739ccacc2867ae8a6c648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4981e7b856161ee0cd63f358245d9472c528a10a5902afaa514ddf584e45595f
MD5 80e2603f781560218a5c91d805745a9b
BLAKE2b-256 54a044c825f6d6a77890f741f2802004cdf1bc94990d396facf0a9cec51e89c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af3032f19f36fbade1f85f2b7b0cdac4faf5782abf8b5a53cf16fcbc61db7f9e
MD5 5eefb353951f6f6c7983e4b96dca3eac
BLAKE2b-256 097511db2494bdfbcb33a4663d287d03e02b2b25ef9920dddd2628969ecf4d95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7be68979b92f211d605c5a985ab682510f1677e5632ea1b464a3b84ef058f3ee
MD5 42201bac2cdf5d35601b1e6098379264
BLAKE2b-256 87cc1fe16fc3043896dab58db123a1e2eb448facb2b2d13792ac06bfea496867

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-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-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7c4f3edd7c4eb0524b4da82a7992ab6551369c037e495a84517418438f09a3c2
MD5 4b6be8ec3ca8091bae8c226dfce6c036
BLAKE2b-256 ea4b4f28796276df45c4ff3183008f9cb30a8ab35b0d1c2e1652fee7f138d9fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 74.1 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-1.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4d30a5a6aebe38d7f106f9a406feef01838848d7408ac96383c45db5f087b5e8
MD5 2c12bd70edb2e93c9b734c734861d6ba
BLAKE2b-256 2c9165332e8bc9abfefbfaac7fa0386a7cd1a3aca5200f32a927d9d98cca30b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 745f5120ce6d81b4f7a2b60073ec86d37fd99354ce9ca1e508c8f349dac923aa
MD5 a9b82c58179d4ad3130ea83db6bc294f
BLAKE2b-256 1983a668f513098820b51720da3ce66261c8fd610eafe62e852c5f1afd3bb1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3f4cc1ea0cf5197412a347f2f15d4afe5d6734bd222168235617569ff4429b43
MD5 88a2bf73affcf866c9a70d8f73b46e28
BLAKE2b-256 856195cabad39794b7c3dcdad61430f5d8f7e3d8d4fd4dcc281e39d96fc48a98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce162f3f187edc551cb8dcab4ec292ee66f5873b19e478a6a09244436975df72
MD5 b55c6bc7cf532df4ae291eb48034b6f9
BLAKE2b-256 b9b4bb7451f797dae8c6c9cde4e7c10c4db1016d7a8e894208657a675828c549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07fd67aaceb0d5e0c4e0b3017b787f6ea537b9183b5c85b2dc3204dcc40cf126
MD5 27b8a9c2310f21f360fb77665dffe2d5
BLAKE2b-256 42110cc816c405ba4f53a21c491fb1cbb3d6d43a423c0347dba51d091d9734f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15efc59b18b6799b729bca38c1c5fe2e4550551669bbb795e4f52ecdebb8f0c0
MD5 bfab842b5dfc3fdfeefe94a7179b1367
BLAKE2b-256 724feb8d2e7839e5226167d8f56dfe023d238249e2aace07a525f949d83c437e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a15da956765e0651ebf6942f41b937754736a006b160e4f3dae23ba5d72ad60
MD5 c0a761caca9448f3f78b2a76c2dd1beb
BLAKE2b-256 d109264babde558ff6d87056066e003b759ffc0b8064e7f88f0bc9e52e740600

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-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-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a0debb8a057194801795ca2222fde9344b91f19d5dd6dbf547e780306274c7a6
MD5 b0dfb2e022ecfbc5363d789b44e5f47e
BLAKE2b-256 c57025a1cb102285ac772c7c8dff588b6c324200ac9b1a1c77f58ae43a2fb6ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 74.5 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-1.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a82512a729bfb30b776da9eaa3d2cec9eee30b2fa347884d9be07a8a45976d1e
MD5 41641d3d3da23c48dbec23779d7cec04
BLAKE2b-256 364bfc94f473e96485e218524e16c91c4cd398a49f76fc313b79e757833c7f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 027d86530be94be33ec3628180b9d1e291df57242c1a8714032f116b58bce877
MD5 fea6caec70ebcc1a2c3372bd720fa245
BLAKE2b-256 3603c06a4ab2c28b03ffa0978d010e11ea071e3f992e97ca507fa4c5d19bc648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 512d2d7d2f16d2eef9cad4bcc3124eecd972b94802a23993c0135b26e84071ea
MD5 1e8e6147325e0a8bce04f08fd6ba8da2
BLAKE2b-256 52a43b8cd54cd47fdcf610d1e81affa365b608f4399de976372d8dc32266b013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ee7ef0d47b89e5806bbf5a4b96d5adff7995c998d632b5623e5693e3c7684b5
MD5 9fb255b3c4bab53d35745d1d160c85ea
BLAKE2b-256 a3a976aeec6f0210c26239b307b483b403fa3df1a88490833bc855b3423cf073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4b56aa6b8d46dceaf9c6b27b0bab5f2549ca57f3eb0d0702a064b7f10ef273e
MD5 be657c2f05f1bd0b77cbfdcb803348fd
BLAKE2b-256 feb6d835a017ae610110f199734fe78b636128bc8d8050ae3bb3738c206880c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04fe81555ca3230ca13833e0b0136223bc21180e0cc5c93111c68d79b2d94e53
MD5 931209018cba93dcb9af8e2d0a35115a
BLAKE2b-256 b94dd96ccb6005dc7c1a55039379d36f6f1f91168b9f86a0e9eb95c56e80b49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10f0cff392b70997c8da1e74cb221af666a6030bc80704399c7d242914a4a8ec
MD5 aeae3dbed5058bf68f571ba74d70d198
BLAKE2b-256 67589a1cda138acb2f4973477329d2323cce1f3193f6e8eb34d688d0fa247aaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-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-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f50e9df0e5eeca81afc8967f4a0ba50b1e5bb3387b481b9ee334968e343e077
MD5 cda42566bd2d10806de2091b06592ab7
BLAKE2b-256 32cf4fd1efcadf53ed614e46420d4d21d5e801da1fad50e8839aa9ed399d31e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 75.0 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-1.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4fa6485acee17a237085b156fe4f8d138cc16e2f4400761ec18abc2422bbf5c3
MD5 122c0a19e4a3e42e710fa3b4fbd2c9e2
BLAKE2b-256 c1855a0a247ad718842ec2eb5d79a0627968953eef53e59ff8912a2c73cc0bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0cc16ab59d3c9fc903cb281b9614f80f1af73be56021d981407abf1dac6cfbea
MD5 61817ef68b1c98ba353f9bcbf90f9c80
BLAKE2b-256 3fc96748d2a7e7d60a3d69c05da0f1cd1b2a0dca2da9b42280eefa96bac62db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3c4923cf1d46a6a23e8b9e1b7d61c1b5bc49c21fb1eee2f8f8eea1eed0836e72
MD5 7a8e72d9b9189c855f802de72a4d8d86
BLAKE2b-256 2e12e0b3f92a19806dfceba49a203a1a1997338270b3a356fe8a873a9537e3a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4f458eb3a0cc7bd1a4248efee2f7903677e411c04e0ee1d5a9dbb92d4b8a6a5
MD5 e830acd4cefbdeadb8adde08c70bdf66
BLAKE2b-256 111e662789e6fc7590cf0e42ed1051ed4d885a11ce7db4698d12a71dcc82b20c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5861d1095853d470aad1dbf94aebc3aafd290729af7b6fc83a98379c01b5d2db
MD5 f59d4ec76d1e192490377335f8a0aaf7
BLAKE2b-256 85e7f306efc0869eeb45322ad0f39f8031562a34241f072b32379a163836bd80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c869cba68039bf69dccef2ed546f1eca16152b98d7479cb8d1d9c1c0b6ffa802
MD5 8437f3bd68763161dc4aaafea3cfb661
BLAKE2b-256 124446614faabf8977eba0f8b2846ddb8e3f7a763eed76551a110ea8aec867e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b83d8308f2b308f7977f2854bac472ee0ae870bd42283d41ffa63fff822a406d
MD5 b1ef3185b224092af1631d107280ad15
BLAKE2b-256 b0d303735d3ae963fe6d7fbbb038aa1296cec1569740e977b8aad34009d0cc57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 86.6 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-1.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da3adb3fb067ec3f77b8643b5a0bb8fb41228f308f9198bfb0da9ad8328cc460
MD5 0e30d9e3bd620a3cf8674d3adbd65320
BLAKE2b-256 ee0248584c20b8397bf57b7c25608bf8df05a1eb18589005f9f36245381d08ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 75.0 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-1.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 107e0b0d34d3540b1c1e8665f999ac493cc7b306809776be90196eaa01c4a0d2
MD5 c4f5ee96fb6a97173a1d05e4eb5a08f5
BLAKE2b-256 392ea582af4505a87b08c7f917237a51a93193dea6a20560f4cff2fc33465e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 126532c91c9c5753c3216d7b2a679cff8c52835f77c3d4689d6e9a9a2c4842d8
MD5 5a2f8ff0c838bcbcded0656341d3d49d
BLAKE2b-256 be53742444ac110ad6d4f90e9d1d17eb564393a0f5bb32b42a0f57a07b04079a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 81aa867702909ff2d66daa07d6b99ddc3d03ff5ef4946656aba5ecddf3d676e2
MD5 db8ae0c3075f905a0e245f66998293c9
BLAKE2b-256 1f5f296d604673b4cb5386621d37425cb844a88780c4ed6639be0dc567efbd2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d750970a846ff1e392d231850a372e38f18e49c81c04ef62a651211bce57d39
MD5 579f035243ef4e4a97ab4ca9266aa468
BLAKE2b-256 f86d61ded68bb62822643c73efdbaef4d6382fd0b8bbbe99e12ed28419f78f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c632a666abe3f748c49858f2966fd80969d29b330c1a39bca8edd2e8805fa3f3
MD5 b8581aec17d759aa7492fed8c9bcfe0d
BLAKE2b-256 f3f3ea93356871af91b3144d5e8e583f3b379f17ecab5cf8a7454cb8d11c601f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37dd9754674b5a5c1ac016d37aabba35dfb756ffa152aa30baf12fae1b9a69e9
MD5 56337726a605826b6c1decfe505694a3
BLAKE2b-256 79b7aa23d07273229c06d5e079564f2b30e83ab5634d8f2f4cee099343786fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a234bbfbdbb7165f2fd200c2c302bc3ee9e887abb4c7ef166031921c441a1731
MD5 42e12bf18a1cb3a01cfa3b142e6ad829
BLAKE2b-256 5f6168a6e0ca70bec6576c7d7f1c932cdd46e240c0fee22210acca3771a146bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 86.5 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-1.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0900a6bc6943f7e9f0af7860f4fb89f7eead1fbb245d9564fbc1064da77b2784
MD5 6ae87fca07cc42dffc6bb572003b5ad0
BLAKE2b-256 1a0c20e0870d0a5541ae38769d9cfd6e5c0763ddc91082f495dcede7b4e10e05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.1-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-1.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 abac21f1eacb630502c4f2eb55dcb7b8a4b75a4e0dfd37ee3bb2812a1338fae1
MD5 a219ddd182b8825df5da6585e87b4cda
BLAKE2b-256 123e14a371da417b30959aba235a6818702fd17f1e13d27c4e5f6ff81d913fea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 76611642891051fc6eeb1aa91556118cec90557f3bc00d57615b391f2de8e79e
MD5 22e5c3bab34243f53cd6ec7e7d017cb0
BLAKE2b-256 0d016a98493956290976c9e586dac0dbc20f7dbcfa168a10fb65d7b3822e91b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4f2e8f104ae9a6c0f537f8f884a1ae99c2e3d3fa2a34ce7ce81827804ff4ca1a
MD5 568afe86a6b8c486c1cb201ab97343dc
BLAKE2b-256 ad460b5f7f956322b507096bd22c8e92f2d746c0a259394e48d7556996300adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f233c18dcbb06e12784599f198a14e2834db0e2a8f53610cbbd2dae10f10323
MD5 b09189bbc3d80262d2288af7ce0e310b
BLAKE2b-256 27150dd4b27b7a2d1e9cb446392bcb872ef3788f5c0b534f4368ee00ed71f7c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 108f6778e0c2f7660d39fd1f7c2e074a65099377f63f0b501e14bc153c6ed111
MD5 8a1f2e62adb3655dd01ed71f098b9a4f
BLAKE2b-256 7b79acb82ff9aa4a4e12f21b7cae37cfccdf0273db81426e0638c7038f2a7a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8467e40fb459177cecf7a26598c3dcad9ee139d1997bb6f0d452e4a05d75e15
MD5 c46165938e13a08d18ea3256c4eb2a43
BLAKE2b-256 eb0332f6f0c5f0d16f575b144386cdcae6cdedb27a4a3dea17194e4c2bc2d789

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