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.36 1.00
zlib 0.48 1.93 1.22
fastcrc 1.50 0.62 3.81
crcmod-plus 1.52 0.61 3.85

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

anycrc-0.9.7-cp312-cp312-win32.whl (74.5 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.9.7-cp312-cp312-musllinux_1_1_x86_64.whl (490.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.9.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (478.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.9.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (453.0 kB view details)

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

anycrc-0.9.7-cp312-cp312-macosx_11_0_arm64.whl (86.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.9.7-cp312-cp312-macosx_10_9_x86_64.whl (91.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.9.7-cp311-cp311-win_amd64.whl (86.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.9.7-cp311-cp311-win32.whl (74.3 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.9.7-cp311-cp311-musllinux_1_1_x86_64.whl (489.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.9.7-cp311-cp311-musllinux_1_1_i686.whl (469.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.9.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (425.1 kB view details)

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

anycrc-0.9.7-cp311-cp311-macosx_11_0_arm64.whl (86.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.9.7-cp311-cp311-macosx_10_9_x86_64.whl (90.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.9.7-cp310-cp310-win_amd64.whl (86.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.9.7-cp310-cp310-win32.whl (74.6 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.9.7-cp310-cp310-musllinux_1_1_x86_64.whl (454.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.9.7-cp310-cp310-musllinux_1_1_i686.whl (439.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (419.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.9.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (398.9 kB view details)

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

anycrc-0.9.7-cp310-cp310-macosx_11_0_arm64.whl (86.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.9.7-cp310-cp310-macosx_10_9_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.9.7-cp39-cp39-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.9.7-cp39-cp39-win32.whl (75.2 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.9.7-cp39-cp39-musllinux_1_1_x86_64.whl (458.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.9.7-cp39-cp39-musllinux_1_1_i686.whl (442.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.9.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (401.0 kB view details)

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

anycrc-0.9.7-cp39-cp39-macosx_11_0_arm64.whl (86.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.9.7-cp39-cp39-macosx_10_9_x86_64.whl (90.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.9.7-cp38-cp38-win_amd64.whl (86.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.9.7-cp38-cp38-win32.whl (75.2 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.9.7-cp38-cp38-musllinux_1_1_x86_64.whl (474.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.9.7-cp38-cp38-musllinux_1_1_i686.whl (455.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (434.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.9.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (410.3 kB view details)

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

anycrc-0.9.7-cp38-cp38-macosx_11_0_arm64.whl (86.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.9.7-cp38-cp38-macosx_10_9_x86_64.whl (90.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.9.7-cp37-cp37m-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.9.7-cp37-cp37m-win32.whl (74.6 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.9.7-cp37-cp37m-musllinux_1_1_x86_64.whl (434.8 kB view details)

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

anycrc-0.9.7-cp37-cp37m-musllinux_1_1_i686.whl (415.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.9.7-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-0.9.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (376.8 kB view details)

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

anycrc-0.9.7-cp37-cp37m-macosx_10_9_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7.tar.gz
Algorithm Hash digest
SHA256 45b2263298b35f6312aa8afd06433ed7c3d0aac78da8ad7562e209392a8d07a5
MD5 19bdb965a1d93a0ebd5b5c2c178e035d
BLAKE2b-256 5879a0d77f8ae5b56b478e40ca906610d99fbbe4170ac2a8340707d88a699dcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.7-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.0 CPython/3.12.5

File hashes

Hashes for anycrc-0.9.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0772638c04a65ccee2c78d2aa791bb6202d3de3551a247fda657ba752bd8929f
MD5 ddad438db552d3e47d6bfe15d7d79f6e
BLAKE2b-256 06ce5e25ad3922422bba626cc6d7dbdedde6eb569531afb70b6988289449488b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 63f4082a7e254afd9bb38c1354b8cd3d5b7061840072c307d713b13e9407c3b5
MD5 b680b4ff00a96952f610ae84431b5951
BLAKE2b-256 f4d24fd29369113a32d5212eeaf8b673fa3ffb333f9cd7d695dcee39fbffdb7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44e44ba9fcd6cc714891760432782f26c8e89574ea4107ecd4b5984381e7b244
MD5 22aad78f438a4848dfc4e7621be6e0c9
BLAKE2b-256 7fc53fd80e67393e930e162dbef86fdd4e8374790b0379bb6a15a329e785106e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 98bde4fcc8f6d31b556e9c595f238a418253dcb4a93bb3bf72a00ef1073e2619
MD5 14bbdb532030b1c9d106594554f032d5
BLAKE2b-256 6cfd455b05b0de0aa6917fa4f4a876419d290aba5f57262378e6876101ab810b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31756fc08a58ad3e622c157e2d5e763a043d87f639b9130df5876d64762bb591
MD5 0bbc39532788b5bd2fdeb8adc95fb969
BLAKE2b-256 018555933b14d35795d1d10427719bf794169da74bc154145667476bcc280653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 656d347c8a792842d478cce872196f6a3cf9fe03ceb10ca1abd556b7b61de8a8
MD5 f2f1319ddd9507b979a91f3aedc48686
BLAKE2b-256 2ea42041e20cd8a4543dcbfc338260386e8d6bc30be875198c4e7f84116c4d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa92afe355beb2e65300123a4efcbcadc5021d220b5c989527066072309c614a
MD5 848e8d15d628eb1b9edd4e31abcd1172
BLAKE2b-256 b270b84f6bc0ebe375042de6ff3dbc74514111ac65f97a26049f8ef6f9db97c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc91ee6ef043c0ef098a3e97f82a74dcf522c7f990b24a566147ea691133c69e
MD5 e6f9829f3231367e60ce8283e53d14fb
BLAKE2b-256 88e9315ff92ec22fa238a38d96e8b8282a275988c0eb268bd91437c85547466e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c06ce0adada8753e1595cfe4c9b466f41135c77387991d4db84fedb7ef7b8385
MD5 b43fedce8abf7795f4bb81284705a6fb
BLAKE2b-256 38d485583461723bd52feaf9e5a915e00fc761bd03050cf57fe952c304c72ce1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f8a7dc1ec074f2218a9c8d710292e6b0471ad552c63b30b4a2d81af10e4bb213
MD5 e96817917ff3d167dcd0a97edfd4a690
BLAKE2b-256 1297cae5f3f5288877b390a5ae8e8c744b351835238c807133abdedc1ce30cfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a2b0c06211fd8f5268a65d9ff2c63db2026839f2ac068bf92e9321522a485b5
MD5 61a92d8a1f269e87950fcd410f112d84
BLAKE2b-256 6f53a84af0d953f6569a3b7b8aa92bfe59169fa4825dbaafcc1a79f5692ac40e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1f28a120d89b336780ab67f665b241ebde56fda352517fb91e47e4cdf57ee6c4
MD5 c7cd28038052fbbb38bbdbbe3f06bc14
BLAKE2b-256 ab265d1b668f5602e3ac232b3ee0353ab20d32d5a099777753156cb3cc02b513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98fe2eee438bf2a6dd7f29b8cc4a639a20a3ee159df13d6571cd80e9ca35ce7b
MD5 5c9e69b0a444bf01a865c269b1e039c0
BLAKE2b-256 484ed744412ce8135182dc9b0ade3a81bfe9fef67a9e19565a0c490ce9d39a87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a9ffe0b8c45e7920b65cb677de12e384886ebb7931f364a7f9385fb533af3b2
MD5 03f92f0a1b4dcd2ed85e2c96bfd05911
BLAKE2b-256 069d722ee61df171d9e1921ae0ae8787040dbe170cc3fec633e1bb74f16fbf5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 484e4b3de7d12f5c9f7d866d80969c8e43595014e1682021c12391bd4002d88d
MD5 0d41f2ad30a683454a46f80187563559
BLAKE2b-256 cde96afe80f6c9aad126371f6c9e4a6d45fa668359cccc37378b7a08f945e7cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bae078674426fb5980d117fb15603f3fbbc200159ed6a24c4a3859407baf3b33
MD5 c81b9014ec67f9123bb83e273afff88e
BLAKE2b-256 c3a963f89e22f7a72f957a2ddf358cb99ccb726f218d7eff65223d85b90001f4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a88c836b5b51c7854960659110d2486d647eeed4445c14b2c8fbd0469723cc1
MD5 fa09ebfe15edb59c8ab690baea09e794
BLAKE2b-256 03216b497e00d9a2603fa076ef8cf9048b8e75198bf87d2e5b29d6610f91ce71

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 32b09c318b2358f2762fe832fdf244e0bfa0dd0073af20a42595853fbe737783
MD5 35c19fcf9118c114e131eca5e71c4455
BLAKE2b-256 502d9ba89ac02279af6c077d04231fc7cbee4753d2c252a5f0889463fa9f57b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e79a2e998040ee4f679d87a2eeb13b4e1ae85fc6357c68f1982eae92732ae020
MD5 19a5edbf5a2fa8fc3a4d363d33f2aea2
BLAKE2b-256 eaabefb76d75642d79cce16bd2a5f496ef76e1900ebec4ddfa0f09249299e921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0bd17d0ff7df7088d5bcb2909c14c34dbe18444d1341360cc131455183300b62
MD5 43ac1c1165c69cae76b5ff00706ea88c
BLAKE2b-256 be697a7c3a6ef94868936ef5575656c3c78de7a8bf926cafa00317024981c926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47c36d0720aa62e5784511176c58354e87545af5a8a7fd55bdddd8c6e135260e
MD5 7d72420fdd6aa169f69bfc694b2babae
BLAKE2b-256 3a06b729f0c343b29d0dc3ebf54a327e6bfd6b66045190a08318c6039461ef00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8d86012777cabd539b6b6fb90cb842cde5582d212826f888bc7762d146e70fa
MD5 fe724fe78cb76353f26626888fd32483
BLAKE2b-256 63a8fa53ebf22e1c9a7eab4ec477a2b8e342391d97329b8e1d4c2a4ee8d6b651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54322d5db164b386e73ab6ba96144b2656ef7cd58a99199f47c9ed945937fd5c
MD5 80828c2beb93e03f28dffe97157d6ca3
BLAKE2b-256 f43c45f22d24afb38ad66804c8d6ae96d30a2cd21fca15a0bf398ac2eb7777b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 000e67eb8cab9d4c8b7e05bfbd59273a7b30f6a88a75364d0feacb12f2857187
MD5 be8db6b55eda7226e9feccdb1ffd0028
BLAKE2b-256 8b6fd0a4fc8c0d1b7c0af21c1553c2012be79ac1e94b5301b92299008aa03b93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0ed3cd00f44780202cb1797c6085c4a529bde96e8382cad01119bdba94772205
MD5 c7d60b62826fe545a46c7148cdae45b9
BLAKE2b-256 449506a2bc491f988d585cd051a180d40155785aaded51a6be6425ba9a3ef9f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 65dc178ff671d52bd295a876698b9b07db76a6faa33b9dee04cd285d1036b8c5
MD5 b80eaf9408149ce4d2d3c584bdf0ef2f
BLAKE2b-256 3091dfbca0e05701c43fcc168d1267e7380ae761cc845b97744ae9839952174e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 26bc2d5d6463557bf8cce5a0249606ea1fc383300c114a2618ad0ed1af676eb7
MD5 151836d7219e34b11465152826dd0166
BLAKE2b-256 8c75b85983796ead22c55c746768b58a4fb7c459ed9409c656a138f2a4516b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6b965af735fc766955b33b7b8f0bfebdc613306fc358fcb0e933957b9dce7122
MD5 dc3ccb52125582f37b4555ef8c9d2653
BLAKE2b-256 a27ed2f57a71277b29d2e15a90215b28ed29b825b52b3f40e595603a24634b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66d6fd4fe41c4460d61b399f957e1e362b66d01773f3360bca67acfc622d5bd7
MD5 b1b8062487710fe133361ddd5aef7775
BLAKE2b-256 3ef60142fa3522cffa32e24393227a20c04e03dd9e477d5ae3f6988f7f650e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce3aaf3710f352b958940bc4c660ca7d7a33ec989cbc8c6a26093926860da11f
MD5 02bb04c4b37770013e2b64615fdbfc39
BLAKE2b-256 1a9b1bfce574ff3b9f78723123f9bcb8d68b6af91e62415949539f5707abfc54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f0167987e4d0fd4146b62d395128cf906487bd3285d1bc3c7ec75939372922a
MD5 cc20c1bbe5b583d8f8e2e62c89e4d212
BLAKE2b-256 eeaafc932f4acaaae19b7e4a79ec80f835620d7c6b0cca6e6f98dc53d4112309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08f8975ee0f86366bc1f9f14c241d4f1e89f05787e11b4e5e51b6e1f90557bb4
MD5 d3799bc5c9b58fa93b2c8d1521ca4489
BLAKE2b-256 fdb6755352e0d5cd25c5bcf24dd3163f28d406186efb8bdf9a59de44de0ed0d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bc3886b328e17bfb58b524cf6dce885455609b0f8ad3d6fceabbba2da86ec117
MD5 559f96bc29e63122e70941d771efe182
BLAKE2b-256 e8f2b5e6cb3ff3a6bf21f16b91c763534bb1e65e4de4b23e1c4c6d25f5713224

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6641b3f11a33b450682e432c27a68b91d4026f9b0e45510b4252e9c95218c33b
MD5 cee383e2500de05d8e766d435a5eb90d
BLAKE2b-256 ca0819e8a6800c79038e4d2089bff9966a8f9422678f37e7c8756cd7184ad6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f1fe6a330ab0b49b0dd6c42d42b80ba0a3100e34088cb9c95a4cdba3877d8f4a
MD5 6737cddc5e8141ac8b53bc410239a277
BLAKE2b-256 a784d8329d8d73d167f30848237d967dff2be680a5e9e9746f020f0c32320568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a0030f7b22a2709d60442f2ad310062b29db2e96cea63484fa69ff76e0d0e00d
MD5 0c337bbff85a4cf4b367369f2741b3f6
BLAKE2b-256 d6883b1a994648e136d0c8ca9508c62f3d9a633ed3620eafab4549193de07aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c5b3f3776744e13af260e0be5cd8120fac000caf0478db4d3b46af2cc354e40
MD5 b7c596ce1cb45b7e3f6352c0cc304cf6
BLAKE2b-256 415862e14c6e9e7079bf84e0b2b546823b5cf3fc846f1eb716ac3017fa930b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb024b8f4ac7e7c91b53cab51d5e17bd3c11e67ea2e11fe8d51a2dc78239a447
MD5 396eb65d7ab99a646c65fc80c8cf25de
BLAKE2b-256 92ac1b6df685e8fd4973942cfca67476e76afad9f35ab4e5d5b5775088949b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7bd5424c6f2f7a08f9ea67bf558fcda64ad49c875c08457eda9633c779f3278
MD5 d294d3e4c832c6c607dd5506ead13e31
BLAKE2b-256 545f8f9df935f6590c326407949de7748aaf94743ac37bb99439fea97fc1d9b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 611b429eda056f645b0c309c7fbcecf7f71e6f25bcb34b61362c42a08a214ae7
MD5 d2f9d51a5a9e4b1c763c94d2c9eff074
BLAKE2b-256 c3ec08ce40d6c5fb56d79b15c879383071e22238328330e5dc94e224a94c6e8e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6b5adf8064aeb01e35e4690bc7b68b4ef58211e09c958f21b98e9a42578d513e
MD5 f3d82a14201e9cc161800f0fa43a4ad7
BLAKE2b-256 38ef0e300cba4000fb68c1b57f3af0d03b2d1d52776e16228e61b6ebb3ebc173

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.9.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2cec4f0a90b8f7b3e3b4865d60859c705b5367b3771d9f1f7245d36c024c0e55
MD5 9dd0f062fb06e31926ffbecd38b095e7
BLAKE2b-256 8482e8cc7758f2c09b5ac7171a30b3760d41d5f636520248dcee78902be78e26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 43b6405b8596e90241c2309ed22170dc6381296f19f82a34495600255c57dbb3
MD5 94ec253c4a343d51a0bcfc6abe4e5288
BLAKE2b-256 69e7cc87ff52332cd619d78e0e6ebef630c742c57a5252ff7e95c22a691c0cb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5d280d5ff4d4689816d8e1820920946497612faf191895fba1c08fc57386b1fd
MD5 afd31c673becabe2c2137f276ed2a0e2
BLAKE2b-256 cc5f320d25164c8e193249a54f507ff4171bfd589d32619889777620b7b2b46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55862a255106a86d410c05c079bad18be903f9339a253a2afa7c3cf08fd364df
MD5 b73b2efe24167224588da7e22e093c84
BLAKE2b-256 a5bf263c0be58d97b828fd2f964d6cc34d4e5687788c410a62275aa97cda1d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a505cb2de05c98ade257d109e161c874a326f20d06f61c78d908796dbcc4e27
MD5 b92c355e480bf7af6a7f442986c26f5e
BLAKE2b-256 185009a859c7c3a7689cdc6c39fb7355cfad7754b14ea9dcdfb9beae749f0df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 623966d3d025fad7bed245bca4d6ebc64a88b0ee2ff7840b54bbc58f4940bbfe
MD5 c0dfe6a099e125b4a107c8a088beabf1
BLAKE2b-256 f9b9d4c3831c133a814db2129026f273243ea3bc6f7621bbc7a3cba5415c14c2

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