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:

>>> crc32 = anycrc.Model('CRC32-MPEG-2')
>>> data = b'Hello World!'
>>> crc32.update(data, length=48)
>>> crc32.update(data[6:], length=48)
2498069329

Or by using the bitarray module:

>>> from bitarray import bitarray
>>> bits = bitarray()
>>> bits.frombytes(b'Hello World!')
>>> crc32.update(bits[:50])
>>> crc32.update(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.1.tar.gz (11.3 kB view details)

Uploaded Source

Built Distributions

anycrc-0.9.1-cp312-cp312-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-0.9.1-cp312-cp312-win32.whl (77.5 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.9.1-cp312-cp312-musllinux_1_1_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.9.1-cp312-cp312-musllinux_1_1_i686.whl (480.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (499.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (471.9 kB view details)

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

anycrc-0.9.1-cp312-cp312-macosx_11_0_arm64.whl (89.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.9.1-cp312-cp312-macosx_10_9_x86_64.whl (94.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

anycrc-0.9.1-cp311-cp311-win32.whl (77.0 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.9.1-cp311-cp311-musllinux_1_1_x86_64.whl (508.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.9.1-cp311-cp311-musllinux_1_1_i686.whl (486.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (440.7 kB view details)

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

anycrc-0.9.1-cp311-cp311-macosx_11_0_arm64.whl (89.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.9.1-cp311-cp311-macosx_10_9_x86_64.whl (93.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

anycrc-0.9.1-cp310-cp310-win32.whl (77.4 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.9.1-cp310-cp310-musllinux_1_1_x86_64.whl (473.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.9.1-cp310-cp310-musllinux_1_1_i686.whl (454.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (435.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (415.4 kB view details)

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

anycrc-0.9.1-cp310-cp310-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

anycrc-0.9.1-cp39-cp39-win32.whl (77.9 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.9.1-cp39-cp39-musllinux_1_1_x86_64.whl (476.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.9.1-cp39-cp39-musllinux_1_1_i686.whl (458.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (437.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (417.6 kB view details)

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

anycrc-0.9.1-cp39-cp39-macosx_11_0_arm64.whl (89.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.9.1-cp39-cp39-macosx_10_9_x86_64.whl (93.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.9.1-cp38-cp38-win_amd64.whl (89.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.9.1-cp38-cp38-win32.whl (77.9 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.9.1-cp38-cp38-musllinux_1_1_x86_64.whl (495.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.9.1-cp38-cp38-musllinux_1_1_i686.whl (476.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (427.4 kB view details)

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

anycrc-0.9.1-cp38-cp38-macosx_11_0_arm64.whl (89.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.9.1-cp38-cp38-macosx_10_9_x86_64.whl (93.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.9.1-cp37-cp37m-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.9.1-cp37-cp37m-win32.whl (77.1 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.9.1-cp37-cp37m-musllinux_1_1_x86_64.whl (452.1 kB view details)

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

anycrc-0.9.1-cp37-cp37m-musllinux_1_1_i686.whl (436.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (417.5 kB view details)

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

anycrc-0.9.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (394.1 kB view details)

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

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-0.9.1.tar.gz
  • Upload date:
  • Size: 11.3 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.1.tar.gz
Algorithm Hash digest
SHA256 e60456a90aa49bcf1dbef91e05b030a3e9ff9ed6b0e082becab761f85993797c
MD5 7c16a6abd6ad8307b0ae4a51a98df74f
BLAKE2b-256 ddb4fc408a97e72abfc17305e4d2811fd3ebeee004de45a1de680bef80776d9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 88.6 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2d8846b1ea4885c5f4f61ac8b1cb1ae0ea6a6c59217903df59b3875791df706e
MD5 4954fcd5fc578410b44c9bc7f0a10485
BLAKE2b-256 d56f7aca5930fa3a2aa96e07f6651aeda355974a78d77e6904a8a376bd74545e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.5 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b739a1bbb790860e40fb7419e006a74abd3ed5fae3984dbbd78806646098c2dc
MD5 8a0b18bb48623d9510a4812b588ed8ea
BLAKE2b-256 3af5333746ffa238bc1656648a3811c6c0fef75416beee41ef3f2dd09f20606c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aeee4809d3a6c8265350eba30db8071519349febc74f978746a50b4707be1c31
MD5 3cc0272f6f7c5f02005d0f45da9f9143
BLAKE2b-256 20485174e2c20318fe8518b5b73466d4766d52424a1976675abe21c742531e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ab96484fb1ca9c1d43b1ead5d64409b6967c0b2ef0d0e9d8b4aacb3fe92be73d
MD5 80fa37a7cb5331f24a1b6702638c262d
BLAKE2b-256 b8b08a7694f481063a1b555dc3d64130dcf573c6774e654b12d1ab75072e546e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76202cd0b483df9904af4dafddced84e1fd7f4b138ccd36716859eded7048543
MD5 31dbefe9ba8b9ecd1526c9d66db60708
BLAKE2b-256 d6086b9cd97debc2b8ace86700fb2f769c5540d2909ba3618fe3890d40fd9e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eacc856b3ef72c6c17a2f12376879087a4a12716ce9da91e43d8fea77a0d235b
MD5 37ff7a2a7baa7008b8decc3346add7ae
BLAKE2b-256 4170864ae4e1e820472e0a5cb2fb5bd24eae7426968e4d420082a3852cb19ab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d5d2d1d3d50280bd9ad728e4214c2146184b72565624aa9b7f4333d06b2a9b9
MD5 2398390501f9ca691525222fb3e936ff
BLAKE2b-256 6030f9a3e6331d57e97da9214a24a9860c4b650443a893383b0ff3f8bcd0f3af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 248f6a0c2e5507f8492f6a58d9a13338d18eef4f25de2de225a9693158660eb8
MD5 f36bd5c53a60594e1fab1b3a81325530
BLAKE2b-256 e82dc4e3688155c9dbc9b5217caabd0871815f72d6bfb5da2b125e4099348e71

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 194b2015e261910879e44802c390e1063edf2986cfc37143084b687ffed63cb2
MD5 932599d8f7888d57758ac5a1ad70cd46
BLAKE2b-256 e59d5164fbb5e24aac73651778cd157c808bcf75a909ff66f7353982d3960608

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.0 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b298fd6229fac8f920319529e1894561eb03979cc43f2e0f711f0a34851c7d18
MD5 f117ea65e209c9e1226f2a41c508287b
BLAKE2b-256 517ae3fa51302a08ba9bd6babc4d9cd83fcdc96f8e4821fc5fe07a28f188fd43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae40bce94c31caf80d85edca4284a95ca41ec83103880fc7a31be9aa22fed784
MD5 2111f02cd9210251906c54e66adcd1e3
BLAKE2b-256 e68eee3b253d0840bdfa47cb385eba33c922648da4bbe603358e55ef1dd5b86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9158d1f6ed46102691aced1bfa9a30c385f54061431acd4ce1be89a623b0eda8
MD5 899fa9845e5b6ae442456d22ac0dbe68
BLAKE2b-256 12002f254f983564f2ba8434d10b39ec349032584cef38215a86c7040f70f8a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd1b97b8c89c5a10236e75edba78efb959e4b14f7bf861cea3116e62308b7e4e
MD5 48c87e0a659ab1795c91f33d3241bb8e
BLAKE2b-256 4e5a6e2338c385d510eb55e477317691b69b53d79b8a65738439157a0eaf2702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31ab785b66dd31cc991955dd77ed008a757de3955ec29fb732637d493441b9b3
MD5 5fda832bc60d737365426fde8a864ddd
BLAKE2b-256 8f8725d717d3549ede5ffb7f88abed5dfab5c11fabd23bf7f9abc78df9c5b1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bd5fea395799353b8b8e114f3936434eebd9bb5cd22cacb3f7c310050c7c8c2
MD5 ea0222242fc8b949cba5580d5b1de444
BLAKE2b-256 54d193e5d5ddf530a28ca04a5c4da38c63f197c84f31d11430648062e7f5991f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9b74fe27521a60e6d6e52f08eec576ddc45c3ebf6e5417314427f99c18a5ec4
MD5 8910409f4ac0b4218eaa2298a1601842
BLAKE2b-256 838db3005b453358b9775e8909af94b98c7a61775d53cc293234ebf50450ab95

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 29c58fa41ba7de9f96ed3ea4d1351e9a9eea0e3a599b3a64ef073af607c09f34
MD5 a82b21ea63e6378436a2f8fd194d74bc
BLAKE2b-256 0d6188c52fa688fe2f9e4581ec4e6f9db84dfc814fff0f57818a1046a90ecf97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.4 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6dd67998429fbc109a8d2deb715ae323becea4f06cf08b173d3f741285ff3331
MD5 cdf2a2ae5625bb4140f24b5f56085fde
BLAKE2b-256 cf51e553e9831de21f1cca9db7310b2c1f16c782d31ced94154d6adf802e7314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 83fd826a1e6b96f23ad2d18666a0b694d22538a0e59434bf21398e6c5c749860
MD5 6dcf79e3a0c83a4629ad5acdb57dc6f0
BLAKE2b-256 a4665a2bd1dcdf060991e744d9096c86d63a1daf738bd12ca6d70259e6089e64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 24977a8c496cbf252d2b60c31cf8dacb12c4a3ce134eae537140e3b98b29c933
MD5 f6978e78318e8b0ab8a09a698586780c
BLAKE2b-256 e6419096bdf3b9757be7a50fc8f2feb2731decdd7f65295b2558da14a11af7f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d9053f76561d05029a3ae157b9c9dfa43462d416b1f3e9f2a96f800da79d7ff
MD5 3904d542dbfbdaae8f7e91dcdbf3604b
BLAKE2b-256 2dc88aa7dfb05a79c7aff325db5bce01de57fdd430db0d4e9cb2aeb07a7f0238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ce080993b9b6b76456a96022d00d68186fd9dee691e7abffd930f7da5c31ddc
MD5 eea63e54e36a53a1ffbd0cce0a732c6d
BLAKE2b-256 ea3dbffd1045c69fe4b0cbdc860fb8c899471bdb5645104706a41543fb5564bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92ebec7e184d4f31174a7f76141f32ef36082704148d0fe2d756583a26f0915b
MD5 4e53fd66c175bbe7c2898eb548018601
BLAKE2b-256 3f65bd01bf1de8981e516434da99bb45db4c5767aa85d2be774b6cce005ee83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e7b4dd905c3d30f20f8b759227009ff3fd749469f24ecb70784da3044700e02
MD5 f6160fb7e51fd3bc400602134aa9b9e0
BLAKE2b-256 abb4982c7a0da7f78238c2a53ce8319dd318f6d114e250b24f12156931b9767b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc2ec749c4c977ffbf4e6b6bc939aff3eceab5de5fbc0f320058685d5e9b9b80
MD5 27e2bab2e9342ecf0f1a0e24c5ed2200
BLAKE2b-256 8703df0e0659073b38710f06b6c10754281d53ed183c1a803985586fb6b331e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.9 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6ce658a8eaef1e62a624e470681e2eea3a10ddf90e186aeec0cbe2054074c7fd
MD5 a89516d48bea85b8b0ac989a2e87bebe
BLAKE2b-256 d8ba6ccd41cd6b2c09f3f78a32a5aca06d2a45b97581e1518be1e979e7f55c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 02de50912cd698877f7295830751cee5d7471f07a488a019e1225ba34454cfbc
MD5 c1321601f1a4c746b99c70272c35f4bb
BLAKE2b-256 7bf090db4a2675112ec41740781c2e0822797e6707cb5fe6331fe231d6e0931e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 62f6db7fc224cfa321f976e81ec5b668c9a79729c170210e2c2b5d18fd1a87a1
MD5 c33eb26685e0e8c095f4e94ff2ff007d
BLAKE2b-256 28d879b60e11d8224f38c61dc4a894f864ac7142e98bfdf1dada5d3865f497ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dca6631d05d35a81c25d151719a63b94d362557af60985e8ea16c064fffc3f9
MD5 eb93d2f5c6c7c10548ec1904bac0ee5b
BLAKE2b-256 45eece8113cb64a79071b90fcf3ff60e8c90731941d9b306e1f5fd697fbe0632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a46364d9504d22f7f8c04780dbb7277393e898609c293b004b4e71236d0d1af
MD5 28ba383a28fdb71a1b326b4f2e3c6dbd
BLAKE2b-256 fa7d4009e9900632a2e1778115aaca64a337f329fb4973094d9e32fa032984b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04545faeb21cbd5cd0e3eb0eac206b7b1c9a27a0f5f924c33b4c185274239ce8
MD5 bef7a60f5bd43f774228021892082397
BLAKE2b-256 06eb5bed9bfcdb68922b3db970ce610080d5c833e81cbea34fdb718752d60c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 404bbff1762746f3ddaa4965249ebbbc433dc6ea902b5551b52b5fb9db4be961
MD5 191dca2238e1069ea23f1db393f2f28d
BLAKE2b-256 cb1f04fe4687d960ac77fc5ac80b48076974a2aac2716a21013fbfefa70eed1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 89.2 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 af99c8dc0f254b7c2981846187fb91cd5749140dba77ca7b49c7d395d7217a6b
MD5 74a7f1c4d4353df62d31be8639d6f1c8
BLAKE2b-256 e904c925880bc1a777a07c6b23cdfef7985dc393ba0ed5efd7859ab23d49e78e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 77.9 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7c1731c396471c325a6e58dfa1edf67556803f00d96c88bb7fb66ae802963a57
MD5 26827efdf22ed3384cac1502c9951eab
BLAKE2b-256 f0349bca0469c6c141b1dd5a76944081353bacdb5aceab4a638afb6419561156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 492599db48d98445b012e6b67f74d24d68d72e7203817f36fc78c80a90a1f419
MD5 bcbd295c8bb37e8ff72333ac963f5f66
BLAKE2b-256 de0fc792f93ad3acf5cbafb6508c623ed046504c8b2e31bf76f4bd7cc0152065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8dd7344a9bbdd41bab8add11f278e4405e69f3d195743e0a09c06a796b82fb2e
MD5 42d0f7835d0f6bc0a75cec907e0b803d
BLAKE2b-256 53be0f554d72bdc94194f04a2790c0c5f842b3566503ea070943f446e81ea4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b77cfa134f9f1026ef5e7180a627fb3c2662bac025bd250b6dee87e45c75cc0f
MD5 a4483cb767aba24f50d43be03234cd9c
BLAKE2b-256 1f8acd883e3fae6069483c04dd44eaa3c68210c5b7546b3ab7070710c21055e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad90eb58cec6845ac802329171f310ab4f3a1b7340b692b41a562a73411aace5
MD5 2a83c1db2e044e017b53c872c9267e87
BLAKE2b-256 193e3433735b44194ef512f5f0c9daec6559a8949ac658e3357d82e495fdac44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ac597388154be7b3ea9489e4543769581073e64c7ef93440ef56abea14fb3fe
MD5 1c313273c1173d5d0c301b936faf7fad
BLAKE2b-256 de554dc44dc800db3cf31ceb7cfccd83a0fb054965345ce7f1dc51c22b8c93ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 471c68f6f024da131c47ab5c7b8a02f9b36cc1922ac26eaf98e50e4208154ecd
MD5 d4bff612a74f4a6eba6c38d530e551d5
BLAKE2b-256 59b5154f67ff36fe369b493e42032e4696ec7f74a4637b9995366f33c70557e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 88.6 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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 18a7a677cfe88d75a04e470867b60c7e4393349a7de9c55f678fbfed552648f4
MD5 54aa1186c54702bae52d445f6badb0b4
BLAKE2b-256 8f88d867bf8bbaa032ea475e235309e6489e0e05eb7bf6038a1abdc49a92deeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 77.1 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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 324e03bfd860a81ec4d37d290d0d66a8b46f472638cad99dcfed0ae18e4e0d04
MD5 04c8fa107d4098e85d691b8f55d63784
BLAKE2b-256 32922e2c8bc061ab8e88ff50456b56ced6c40dca5e5a18cb9b2f1e1b43214c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 baba17dbf9bcc0cfbcb147d3c0d575419bd5aa4086930c5059a30c430ff8f45b
MD5 6ae54c65c45374c7dea0209661da343c
BLAKE2b-256 1bed62d52641fff53b8362315dc0e8d922b34576a8fe181391bc5406375a33f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 509b81234908cc3a3ca375135854d8d8e60dfdd72eea18e595a4c6894054eecb
MD5 6c33205883ea2530f7af2dba4884fee7
BLAKE2b-256 4acf8d8e1c43cdc25ee77044e835d292b2f2af23924dfb9c44ca04fb093137c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26d847b27687e2c1d0cec9dadaede61c51097897acd07e7622d2b74931f2d750
MD5 f037c892e8b50f8e1871879c378a25d5
BLAKE2b-256 ae39daa3b9054ea94603e44403aa5add16d3f24486f00fcd97b0073860286c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72088eb0e7655a7767ba98dfefb45fb19adb7f71f2309e70e9786062f0642695
MD5 d67122f23a5841e9bb006802251aea96
BLAKE2b-256 2ee8e7911074244001fbe796a1cebac3115475a8c8882c0acf9f0e569a796904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a8c39308a02e15b0586d7502eb1fb4f551fa40aa607730f2a4d6f0a448c4efd
MD5 b997a26a93fbb89f435cbc4854396283
BLAKE2b-256 ce826cba47a52aa2b6ce0a172b3787523a3297e779abd777ca573fd7a5dbb624

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