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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

anycrc-1.0.0-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.0-cp312-cp312-musllinux_1_1_i686.whl (466.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-1.0.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (86.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-1.0.0-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.0-cp311-cp311-win_amd64.whl (85.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

anycrc-1.0.0-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.0-cp311-cp311-musllinux_1_1_i686.whl (469.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-1.0.0-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.0-cp310-cp310-win_amd64.whl (85.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

anycrc-1.0.0-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.0-cp310-cp310-musllinux_1_1_i686.whl (438.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-1.0.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-1.0.0-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.0-cp39-cp39-win_amd64.whl (86.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

anycrc-1.0.0-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.0-cp39-cp39-musllinux_1_1_i686.whl (441.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-1.0.0-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.0-cp38-cp38-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

anycrc-1.0.0-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.0-cp38-cp38-musllinux_1_1_i686.whl (455.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (433.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-1.0.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (86.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-1.0.0-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.0-cp37-cp37m-win_amd64.whl (86.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

anycrc-1.0.0-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.0-cp37-cp37m-musllinux_1_1_i686.whl (415.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-1.0.0-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.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: anycrc-1.0.0.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.0.tar.gz
Algorithm Hash digest
SHA256 29c1306373365a3a9b608da732720781870c095ce13a047f75b760b82072bd09
MD5 5977c87ace6c7a100551ce9a6870b9ff
BLAKE2b-256 c1d634c2d2bf127e00df477d60a8056593e4b97ee0566f920962da21aa7ecc92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad6fa4617d2993ebc57491f14a166cd6764b35aa574bc4ade9d020cf54c17729
MD5 229fe9a073bedb964f7819541a04b39e
BLAKE2b-256 99ffc61a90e0496db2626108dc186f6446f73f7000df4cd6da09fe58c630a6bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 528f94c15d49336d78eb5728fb8c1d8300c49771f574418771811b2e5d37ab38
MD5 90bdc61ecf4b81e7b5d1c7b2620cd49e
BLAKE2b-256 e656fbeebdb51818947b7630625d4cb725d0de384d6f7f75017aef9b419de426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6bce957328bdf98c6e998524ac108e8212d7bcfa99549b497f46b49ffdb5425f
MD5 80c19e8e237c461a7f61e9916fc9e971
BLAKE2b-256 8754c294b0322b04e8118297c04dbfe15eaab28393749b86d349b8e257bf3638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2bb74b26945506877b1e4150f7eb6dea86e27c47522fa36702479353471f9a08
MD5 f2791dcf1926c141d2e59b7dc06ae1fb
BLAKE2b-256 d6b6d951f40f399c7a29bd6c1e50ca8a3d595be36f8741bb8b9f87feef6fd2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4243ca012cc7a962c6dd6858015f9f02edb7b12af62290f3d85039497a70988d
MD5 516228cf9ae786114cec41d9079209e5
BLAKE2b-256 1a11a14c80bfd9ce00cfa5dbfc3ba03b918a1814744896a12bf0d93a68aa1265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4f53f6cab57cecbe47064902016385866f9c17ba61e0432dcc92cace55762f3
MD5 fec551701199bc51561d84c01371c65c
BLAKE2b-256 434bbd03c26d4399cc49be13c58ca9a0f59a7d78af1990ab412403aedd21ef6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 099fc84ffbb5664e696f8301c8e2b8dda9580827f8b6677d0aa9bc57a73a2628
MD5 eab3c9431b80a08291c6db516502f5e1
BLAKE2b-256 a1723ca39cad653257fafef55e5b8e3721082fce3c82c75d951962b223e31131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8461d0eb1d1d59cc6d53d42e40ee9b0e57119072d7fdb27878d5b1294c34a4bb
MD5 637c3cd2c7abad255ed379394488dfe0
BLAKE2b-256 125b13dd842cdd5f6f299da54805d803f5d79f79ec18e863303f77fceed4aeb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c339ce824d5b797d4046ea7806beff953dfc0380a83b154f50b080c8bfa8ba24
MD5 1f7f9bcd31e1c6198b210519d7df011d
BLAKE2b-256 37e0e5cfc4cfd1cefac61d68a7d25b7a2dff70b7187b63041f94050d09ffcf1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b86235a59e89ceb4b2e0b80f7c6a3d94aa55f813f7edccf9856b2785bab5c115
MD5 4a820e158f11aa89b20ada2fd068612c
BLAKE2b-256 56dd416b4c16642abb307beb4481742965f41a37e177fc803e79d06b1a49bcae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9fca3c18cbf534bdc03554a4f349cdf07906ca0caa247607332229d3a8e9c6e1
MD5 f6524fd62c593359a758fed94d10b93c
BLAKE2b-256 bbb113da4f4603ec617d4a23550687c65d9d33417f279481674db33a9cad055b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a639ecd58b16d504deeb0f5e21d5b98f702846c8bcaf860acca1caabcb842e53
MD5 1dbdfd224813b3482a8264d7e9c521bc
BLAKE2b-256 8954bdc09ef3915acd8caebddf36a87a61752a84129028466384a3d87dc26271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7085079467386a7a6c84db432c92a4eb8d08bc5fbe6be4237f701c1b422577f0
MD5 07556cb791a6808490f34805fc1cc12c
BLAKE2b-256 addf2ab91c7cd649272248856346b9be2b50824bc74dfe3599711528f6a4ab04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 384e2e13cef830f7c3ea4d05bb8322c97176e218b12ca27a681fb0ee88660485
MD5 45af7fefa200aa2598315a8b91d037f0
BLAKE2b-256 eef40ec15c63bf46f0b502ac937d97d16f0c8420dd5512412a2dcadae7c3666e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03c7510a50e6e910bada6225f095a6f3590c3f0b45e04b3dc524a380fc65bf24
MD5 7fd79957e2e297f8b11c3bd17d492c9a
BLAKE2b-256 dd3c04718e2eb22fd32fb874f1a68203f7ca0adbceb673dee5038f6642b87366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e662e3fbd013d471c55984fe573bdc8a81d10cb27e6c0904f8922bd9e838f473
MD5 7b64bc9932d5459d0f6d23dd058ab2f8
BLAKE2b-256 d64db02c1bb33634e5938e102bb4d7fa7aaf5bab7867f98df7557c41396d4cef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c92c3b8208c498625161420ccae4698694f7a6648d8a1478acb896d07e0ab62b
MD5 e1bd253525566262eb9ffc1cf80a1300
BLAKE2b-256 aadd1fac8a9bb240d078a01a60af2702e396f2a925733776b722b717aba7a8fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a10f4eed98705ac731e691af075aca5ac7119ded54d1e1fbf179bad83be9d4d4
MD5 8bca1b9bb13fcdfb103605eb5b9b5635
BLAKE2b-256 4135834bfd42afefe0df8891032addc8015a6bb38eacd7208571f46710eedd97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e4ef493719e30366f8b6c12b68937bfc2e5fae6a3a024847afbd89993e34ab2e
MD5 e9dd27e3a0c1e26c2e43b2252a9a522b
BLAKE2b-256 ebc215f28b4272ac8ed89b8e965fda6f9507431926d316bd765d4578f08e2b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f9c6ef72df164085f769652e1a40f080b5bb78d1f384b2be8f0cd469038de263
MD5 f7a844ca61d41cfb6887f92c770d0db6
BLAKE2b-256 9374c5acd45bb616a5a0a962227dd0dcf063e690ddef41c5fea7c5e0c426f54c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a672875298097dbe8e92befe0fef1463a9764deac01ce891f4b81c782b3466b
MD5 39af41096b6c1f7b72377eea35363c6b
BLAKE2b-256 dcc96d664b9e85f6bd60affd33d46fe3b0de0bdfdf6d438436cf6eb032d11517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ed7122d3c5517723d622e679474a55d24a3971f9340ef9042765dc6b3e66bcf
MD5 a0c7caeb19e77d8854d899fadbf9cb2f
BLAKE2b-256 60ef76eb8708a3dc9bb055709ed1c2117211fc1d1e7a09c33f1dbbded6497465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90fcfa87621f9c8aba6f6b1ad7b0c3de23f91cdd4d4ce72ff1a0a3b7d3ecae42
MD5 48788318203d358d8b404af89119dc94
BLAKE2b-256 13eafb07948c1242fc2e9e35478c33b51fab87d2a65ab709ec73f0fcdca71d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38a4a81874d8752ee4dc8ad4b5b6257f9c1e4a39ec088fb61f730913178bcfef
MD5 21b277e312815917fb4133d169e57683
BLAKE2b-256 9363fd758c0eb8f328764a3875ad641a7c4f44613ae0f9edf91a1e07b221a08f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e40c6c5bc3e3786fddb5584bfb5bfee2fda2b87269cfd4b878c8c41d70a1ec43
MD5 a2bb45734448eddf4c66be8c6afac78f
BLAKE2b-256 15747db6e2777f2b0ba9a420a4f355d13788522b8a8c20746d6588417c169b71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0925119fa6e2eff8c82a0e642ff6dc278702c53d506aa0ed17e58d51aaad5840
MD5 01036651ab71083b2db8b8fc0aff5d00
BLAKE2b-256 6924b87fe617b502ae6befeef87c0eed44fea7dff17abbb5a7f12fbc416995b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 da4414b4a66f437629e707132be8ddc6e136da582464aa6658419bb71498fda9
MD5 5245eca359902cb2a822ae5f8af46b61
BLAKE2b-256 629763b197b05fb3ad0503ce68ffb7200ad669cea0d456f129f5badb40bb3609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3f560835aaaac6b3ed98fc64893e67f7cfd4cb22e51e33653a0bc1a183c798f3
MD5 bbae5891c3ce2a718732a05ca9f8c07a
BLAKE2b-256 33c28d9c314a511c917d60ba0c05288ecefb857a37ee88e63cd87ce8d19281ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 298aeb0ed988b4c9af224613de369e14c2ca03ae5b837347e9928f1a2724a60f
MD5 ea0cea926e89f6eb5d1531097eb4699e
BLAKE2b-256 01f64c206ba45d852fcbed4a655dc84a3614aba7f92dfbed9d44708cb5c1fd00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 400c72c05d1d484952124a2bd03fb5a44d8cfce774bce57faf5e9c5e3b8b7df9
MD5 90dc5e36587db49375f7c9d15c86715e
BLAKE2b-256 e63a0eb4efa2b66e02dd9fab76e9b62b50ca5c086725507454e8fb709c1d3187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 964cc858bbef6b56bae21413fa83ad437dc00cd80a3f0424a906ead3bfaeac99
MD5 31ee7a1961a783b7f131d636df20dc72
BLAKE2b-256 32dfcd38c07041460654bdf7bf2259955ead5618e657d8fbeb741fbb0c7517b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2b07584e4a505635aad48f78c5064d7bf15a411da8b4cf433e9a20c925d84da
MD5 d575d933a0b33253c0980dbf41dfcf14
BLAKE2b-256 e36e4890d85989b323497d810cbd1e354e2a7aaa12820b7e258c2b64b669bb34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 973c5ac487d0c0fc5f44b024a3401da140203aa15c2cd1433473dcfbc841ac4f
MD5 ddf7f8a79b340bf453234df1e82158b1
BLAKE2b-256 5cb729544c7ac492ce6b938710ae549725c71ee23f603748c8db1cd3e7a2a7b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 608135c95663fb2b466ea4d15e8720ebb73faedf48712e3a3d9c194f1f658928
MD5 e5f71405c3fb8a7eee11a7b457097e2a
BLAKE2b-256 ab954d611ac4a17a71eea90829ea2195ec457c748a9d58c980c5cf92b416e097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 73ec2e1aee5abe6fa1e41ed05c14d8e00c2727efd3502f038f6546d74ef08250
MD5 1e6cfb40ffa587885730db9bf5af137e
BLAKE2b-256 fc7cabc083b205115111a0fe85c2d9eeeb1f0cb9bcef1f5466ccbe5dbd091096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ced24469a589c8c4217dc8260b74946d447b4d25f8e12d1ea57f2122829667b6
MD5 cc4060f1ce2d9eda7eeb7e3c133b8525
BLAKE2b-256 3d19640769b0551a403524e974e83bba08cfe4b3137345e85f6101780cbc14cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3efac5af180358d9b37682165b963b9d785da712286fa4bac8d05fcc9b7d4e76
MD5 d234bc4d8a0d62a425b7f1a86f90cf89
BLAKE2b-256 42a27d896512e4dd58b59c85bdb0877bf3d6693823676419a8d529b447035cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9cf701a7581d01f8109c5eb41002e7b53ca39694ac978abbb771fc2353248569
MD5 fca321a5367a5a388464ae3ed696bdf6
BLAKE2b-256 90c41454eb2aa2079cc93784ef1925677ee8b3bca264e471a865541800cc770b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20f0815bbbab6297dae93e25ee08cdadab748e849f29d224ce6fd8dc69df17fd
MD5 a95169ad06d95b75f81b89368bcb6090
BLAKE2b-256 150f8a045d6ebbd5fa983e6b530b24d4206e6bcf51f4b764652c61a1a042bec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2a06d1bf374587f119d97a8359987e2bbb70378a1e3201cf1aeecdfff3b2317
MD5 403831ad657ee3c24edd0844bc9215aa
BLAKE2b-256 d39e6cf97a20a4cfe913683d4017f2b7f3b3456e49556b2825cb89fea53cf17d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bd47a7594773fc3b441883afe35846a718d495dd294ca1815c5f37b7d811062a
MD5 971d0d440759fabacab3d93fae285602
BLAKE2b-256 46f7dcbda853d63412e4f2d2145e78707431e1114c2110861b0d05e0a2213aa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.0.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a0bd7c5cff00f771eb40be90f455317b9b369dff47e1cff2b3904f7deadaecdb
MD5 fad6de336fe7174bb7f2cb10d287a944
BLAKE2b-256 8cd0f9bc298f3d3ac618faea055090fe0109f646037db516c775d45748659824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a33e63cc5c904da9e407ac56c619191388e442f5c2e5697979210cf24aa6776
MD5 53f0ccebbc8f5c147d0299cdb6d7fe57
BLAKE2b-256 1e5b1622bd1693c73d6303c792e00e6124b0df95619df3de1cb9d6f7e56a6ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d89c921565cd52ab5f473b8c74bbf873792a35edf3ba14983f5d9c3526c022ea
MD5 c5c6f7790d5f135c5578308c2d0c237f
BLAKE2b-256 4fe80e27ae798fe62e9acb1fd6e23ed145c5d35ba6698ac89ffb6050df77cc48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbb45a1734a89c33d8f7daea1f882abd2e5a82840a40d8e38bac097a8bdc9478
MD5 6e144c08adac7f6fb31aa282c8ceaa8d
BLAKE2b-256 c473478e148ed9c44b78cb842278a58ef0d6c0ddc802f42e0b46488b2a6a8bbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ecab6effbf60a304d707193bc55a9f5776fca05e0e9c9c60ac13b9158f58c65
MD5 f111d0055c25cda205287cba806472ab
BLAKE2b-256 110b6d6404b0fa6bf11fcefc6fc7cdf78dea2d25b432a5ad282047fd4f2693dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25e2c7762cbdf44315437f05d1682b208d408bcd38da0077f4bb8998e1ac1384
MD5 0d961a38728ca58b76e5d597043e32d4
BLAKE2b-256 d36702559a64b016d536f2ab4d55181e1b94e597bc8ce3d94540f5618135a2d2

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