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

Uploaded Source

Built Distributions

anycrc-0.9.2-cp312-cp312-win_amd64.whl (88.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

anycrc-0.9.2-cp312-cp312-musllinux_1_1_x86_64.whl (504.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.9.2-cp312-cp312-musllinux_1_1_i686.whl (480.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (499.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (471.7 kB view details)

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

anycrc-0.9.2-cp312-cp312-macosx_11_0_arm64.whl (89.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.9.2-cp312-cp312-macosx_10_9_x86_64.whl (94.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.9.2-cp311-cp311-win_amd64.whl (88.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.9.2-cp311-cp311-win32.whl (76.9 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.9.2-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.2-cp311-cp311-musllinux_1_1_i686.whl (486.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (440.2 kB view details)

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

anycrc-0.9.2-cp311-cp311-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl (93.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.9.2-cp310-cp310-win_amd64.whl (88.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.9.2-cp310-cp310-win32.whl (77.3 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.9.2-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.2-cp310-cp310-musllinux_1_1_i686.whl (454.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (434.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (414.8 kB view details)

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

anycrc-0.9.2-cp310-cp310-macosx_11_0_arm64.whl (88.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.9.2-cp39-cp39-win_amd64.whl (89.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.9.2-cp39-cp39-win32.whl (77.8 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.9.2-cp39-cp39-musllinux_1_1_x86_64.whl (476.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.9.2-cp39-cp39-musllinux_1_1_i686.whl (457.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (437.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (416.9 kB view details)

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

anycrc-0.9.2-cp39-cp39-macosx_11_0_arm64.whl (89.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl (93.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.9.2-cp38-cp38-win_amd64.whl (89.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

anycrc-0.9.2-cp38-cp38-musllinux_1_1_x86_64.whl (495.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.9.2-cp38-cp38-musllinux_1_1_i686.whl (475.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (426.8 kB view details)

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

anycrc-0.9.2-cp38-cp38-macosx_11_0_arm64.whl (89.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.9.2-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.2-cp37-cp37m-win_amd64.whl (88.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

anycrc-0.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl (451.9 kB view details)

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

anycrc-0.9.2-cp37-cp37m-musllinux_1_1_i686.whl (435.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (417.3 kB view details)

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

anycrc-0.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (393.7 kB view details)

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

anycrc-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl (92.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-0.9.2.tar.gz
  • Upload date:
  • Size: 11.4 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.2.tar.gz
Algorithm Hash digest
SHA256 7f29a67ad44994c29b0405673b53daef1b0473de86f450dcfde448c84fcc3cce
MD5 0d44b8c8c1b618bde3b504e49b93cb14
BLAKE2b-256 cef98cb059faa864af2cf82e1096589e4b17ce4b5d87668a38defc3e79b34fe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 88.8 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2d6869a60977f19d2d5574095494cb954ab10eaf6792c65fa47bccc270d0105b
MD5 cf1f7eecfde278cfbf778c864567b055
BLAKE2b-256 1d0db8f6a83b68c08a0d697218c13cabce4b1b44cc11059ef20c5a98c2201344

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e0bf73fb31368f81bab37aafda69043cbda2b700380a36298c69a65853cb387b
MD5 ecfe914b2d6ae2d4dfb09daf68fdff9f
BLAKE2b-256 1fe52f26c9c1bfd4fae5fbbc00d8fe04d8a0fb8cbfc6a05daebec4a8167efcb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82876de544c74fd2406877d760b34421f543b2616105cf85f78d3ed6b4fdc849
MD5 5cf328d659cbce61e4d7e3525b9ccf4c
BLAKE2b-256 e452a23eba9550993a9e0032fa95b16a60bd0f73bb463c487bd3e0607f126107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2d9b976b93f15260b2a197ecea87eeedbb21ff1d3526af7bbe601f673bdf4241
MD5 bd325e3b7e672f4e87ad1a61b2c6e3e6
BLAKE2b-256 6659fceb9d979a72e977e3f82eb52dd379b597c11c0d95fc8a57cb6596b0ce10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eed3ed62e7a293b0d7bf3a2e45c8acd838c3c93c184bf1eaa850790587c53aca
MD5 3e311343750d435d8dfb9aaf2ff1909b
BLAKE2b-256 5a5ba6a7a7db782099fefd9ec05da2fce818f80ac803c2e809b29b406d6a3488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbfe882bea825b003df25ba4e61f6bb707d213cac8603f20954e1ebf4409442a
MD5 5b337a34eed11a8ecb1ef135e533e108
BLAKE2b-256 c65137574c20a42759c8383311438b0278df7b9e70c823775c19a118c1e8ca59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac4f89d9ca1cea9f8001d4c890e80a3a7030a0ab4e032b350c0ac40ae225ba32
MD5 d06e6fada38cc6d1fcffe798d8c9b4ef
BLAKE2b-256 7db23b164260a244de68a2328024f8447c86d2e03bdd707d32011d7cd54f56f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c28d59acee55d615381de0e610380eada67cc5ff24a9f620679c0312c8f26ba4
MD5 263224c7f8aec57246a9c4d846855350
BLAKE2b-256 528aa8d7997cd34ebeeefe537b32326ea7d1a770214c36c62161bdae2ddf1933

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.8 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 346a87ab182701c26cb3e2b94fd374f78594c0d7b5e029aa51e50b95f1ff6182
MD5 da431b793b1fd62ed2f358c550e18c8c
BLAKE2b-256 622f31b2ecc73f223d7e681466f7095522905bfcfaf857728eb4577d83a726d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 76.9 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7da79c2c87aadea7c201c862f1cb15fbb84d00b1a4571a0455d9b68c0d754d34
MD5 bd76030fba5075b2c3dd1a98aa75ccb8
BLAKE2b-256 d209daa077a098b5fbce74a746fd8bae98d0c92ee51aba3a9266e4028a586f7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7456e9d77918c8d4c530b7c3829e6b1b3362e009891913c9a43394354808f26c
MD5 990a6917f67dd9a80a5db7dcdab8dcc7
BLAKE2b-256 e9a6d26138420c53b6b8d4590be8963a620d096415aeaab3f3b080284d436bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d29d045371257ff3eca5dc8738fd097909b737cb2166b693109606a2bbe45789
MD5 ee6960ca0a21f2ffaafe6f70e7dbb01d
BLAKE2b-256 fb2d3b76cabf84648ca4d2a0f4ee83aa9f50734620ddd327f8e0d73c5867a333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 186179ca9182a9158e13cc022c3eceb72f449894db39089ed961a6e9563f8db3
MD5 752f09dd209b10ab3484e4b707af0d76
BLAKE2b-256 4e16b0c1fddf1baa43a986d560a8e606b5664adbc8217c65021ff57fa8230102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb68301c9580f173782c07e769895eab78493b14f34e7ec1c82cb90233720f9b
MD5 a044c66a1f7b248139b2a06a9f89b5a5
BLAKE2b-256 042ea9b6493f61d395c46c2c284b539b03f5ec3c339982540351554c30d0a5d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a47ea2fb9e40127c06ab31c35e0a9c9154499fb4369537e2451d5312a60b2e6
MD5 52066e576f70c4d65b28eef07a4ad20a
BLAKE2b-256 04dd31c06eb81d9a708bae70e1c8f5bec930c660517c9acefd71593cc66e4ea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc40c1f87fad7d7f1600fe481799c13d78f01ea3ce5f24ca72a747e76821f9cd
MD5 fac8c080ba2b468deaa79293331eb65b
BLAKE2b-256 8dc10d99cf8dbbc855a47c8cd3c71a0630776904235593239eb18926ab313b18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.8 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d73041f9e869428fb511b5c3ff4f68eba923e071681c3eac59d068dafe2a1f6
MD5 11ec2d8554fa52a4812efa0e801a0ab3
BLAKE2b-256 80efae77a913ed55600d7e29f56cc8e6b40b4037f9359be3d354ee396e916c8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.3 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bee28b6027dd682de31d13becfbbbce1c6134c2b4e8595bad842a43441151b68
MD5 45ca5e15090fc5c3fcda1e550c472dc2
BLAKE2b-256 b7ccf9622d7afaf12ae8ccbecb45a9c9a711c09aa70945517ac1175b6a9e98b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9860676fac3896cc95dc97644e1e945e3723d6595384ccb444540f5a09a2e30a
MD5 6b3d39bd6e98053a9461abae486fd4c7
BLAKE2b-256 db65d3fcb3fe5dca216cb141de3f2196550a451552de1ea7a097060b6c7197a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e697ddb5980a50721d1686d855aa327098bcf12f92b92f689a472631ddb753fd
MD5 9d0eeae3418cb279cdad6d62867f02bb
BLAKE2b-256 23e42415bb7748c9792580498c7c86db5024425231c0659ebd2ca663ecd9495a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffd0d076ffe0efc9b948b6c267cdf6b698ec0a21045638a8e8171abe83cdf00a
MD5 2d6062c17cb71b880bc750713617a5a6
BLAKE2b-256 112356cba9f83ba5a6efb5fa2dbe13678585771edd1510d6f865cf31390961da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d495f9ab8fb6558beaf6e7bea58f604a7482afdbe3b417fe853a20d5d818f09
MD5 4af6a317bfcfbffdc707fedc003c9dfd
BLAKE2b-256 785bf393fecfbb102e3f2b2680d15be627825e2cb24a6889f0b617fab7d53f69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97484467b4f92e4575f1da2edd336e2deccb49e5cdecf0219ddd3a54704fe1cb
MD5 de78ddeddbf069d680f879bd5a703222
BLAKE2b-256 6eace4b3c73e7db060404bf4b053cd741c6fff031013cded6f93e6ffc92b259f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72c79a839c90dcbe9072be57a1d3d54e01711477da85543e6cef7831dc4024e2
MD5 48ba0f583aa4e19af3de3bd7c2bf61ae
BLAKE2b-256 3b55460f31c814115baed3c638bdc60e8c08c048877ed4573732a578fcb44a6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.3 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 120895fdecbadfb9fe8f8fd63c26db8697b224b9c8cb10be6aefcf66fe7d47df
MD5 9902463a94f381abe66b3a74012dec71
BLAKE2b-256 2aaac724608a54b83bb8025e95550c31641fd7c8b5434b41afb045e32ccaa580

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.8 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9aa0999925fe8723a9f4f38134f8ff953077e09732c1d040621fb5f1de9ce993
MD5 bac6dddf1f737aef655f4223b0219312
BLAKE2b-256 c51655977ba493c39cd9beb153b1c4f009f5be8f69eb4e41d8bb0ec2785050de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d1bdd38e24b378116022528658ed9292d81bd69707fcf15e3ca59cb85a7bd8f
MD5 0bd8cfb0d261d25af1e475f5b97d3c2c
BLAKE2b-256 24a445a1bcf1fd49096559549abe11cec5d789f39fbecfec8b5c9160d160a512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4e7952b2af611c282780bf09284020161d421ccfa8f3e4e16f1e51e9e54b55cb
MD5 2f4a50e8772295e17a3bc89782aa64c3
BLAKE2b-256 e3a5ba24b7548f86b1ff9a865a090a57385866abb205eb79b9215865b6980e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6e44ab2e000039e62960f137f20f80e3d10e2958b6d1cb8385d8778097bb2fb
MD5 0c28e2966c05e85d79dfbdd77979556f
BLAKE2b-256 cf9d8b54ecf697b76b40d337cfa998c4a835a8e32524c841d72ac1c77961bfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52c4709a354fd15db8f024fd561abd9d2452069a008cd5d84c1839c2657bfdbe
MD5 bf2161bb6c347bbdc41d6daac0807e3e
BLAKE2b-256 eee9f378544c269deb00c86fc5ca5afe8c95998e4a4a50abf44ee7e7920bbe6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 763dd703f0a1b95845b952f4b88da925a1bcd18530773760004759b929de49ed
MD5 ff3d9132121f561630d2aa3680006581
BLAKE2b-256 3082a6a0ba50537302d07a2bf79f8777cb368b4507ba9b458aaae01a8c351271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d89b48c221e777ab27d41de202e9d413b3447248e43b43f398f8c397afc7b111
MD5 cfc3b34f558aacd4dab80515d2c538c9
BLAKE2b-256 943f4879a8b0a4216713123b69e026ac59ab62b4cffa751d6599914f5c790f05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 89.4 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d76043d295b38258deee70177cc818a533ba2134a176ad8f51f914090247f39e
MD5 78b0e02f032eab8a9d44770bd6a2914f
BLAKE2b-256 6748e6ca136fcf8a998d27f04c613af2de096eb7b316344575c6fec83d9c5ff4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2b940a4c43f8a69f369a224e19c2f862b67ad49900761424b872b47cf7e081a8
MD5 2647f5bdffac96a57667fa9909d30cdf
BLAKE2b-256 f122f2dc7b6c3d05eb9e76afe74e5e8ec0020c220fd7eccba510d25640054248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3d135cee74e11e969b81802cbd986869a23afbf5574f89b30aca83ac25edf536
MD5 380977518e19d1c9d8fefe7aec08dd63
BLAKE2b-256 28af15bad8523e048bf42fec22d68492229ae50aff622a39845d63644c859150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 986465aca2476bab9acd0af1b600bc3fb71bf9524bf7b6d36ae0525dfafec259
MD5 330ae04be0b8b52eb8788736cc6fb6f5
BLAKE2b-256 eb5731f689ac64e88e8db6498d6553b58b396fbdb2385dba7ef0bfa350b30d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3140003860b576371b99f4365117983df8997a575b3c3efac165c114034b2c4d
MD5 c8f6f11d82ae94a0e377c7097e4c5614
BLAKE2b-256 1d497527206071c0f82fc1356a4917f56fa1f0b66cb2e3de87ddb1035045578c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9be7cd7bb768fcada61f38b737f45f4ada059bb1d65fed4983af018f353dda3c
MD5 cc92fa90d247bcf92b7c8755b84e84a9
BLAKE2b-256 6c4cf0f427985a9216ec98f2bcb10e68241a9e034cfd602b42bc0f78388fdbde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b12c660953757b138511bc0f60916e909ae02d78aed80009fb530c98ed34a3df
MD5 5a38e06cf6e5914cf4b1c14b3e00f985
BLAKE2b-256 0070dc488c57c47961715e8d0283c702c566ece4dd5d299fe75b6fc34156b7d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc426093d39bd4efe1351b96d0c68cc93e6dfeef3d6d88f77420d7528b7cc8d2
MD5 ea63b43084d3a6b6a464856095396290
BLAKE2b-256 4eb5aaf08d16e509ee5a87b8de191d5a368574aafad0481e2700fc60e13e9929

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 88.8 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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ccc15aa7082370d6bcad413e45762754e91870e8cab9362f8047af43d9618452
MD5 464e83c04683b6d6e4765582e05a7bff
BLAKE2b-256 cb61c27c7bd9a771cccf43b32c9294032834f70847bfdaca789cd2792c2cc935

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.9.2-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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1df9eecf20abf1c96fe74efafcc392025d3bdbbfc7e28b06a10676d7fa6d7b7c
MD5 c1f09c0743128c9cfc6ad6a88df27f0c
BLAKE2b-256 d7ea4c56df5b6023e05393e762859a57124615d19124f6a91763168ccf5e7602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa0d2d8e59cfdd7a3c79e728ec48878f982d1486e3166170ca675bd35b6ef2d4
MD5 466cabb244c50c1d6ec66ad3b07411a8
BLAKE2b-256 56c349ea2f2541278eb37ff893ca47fc4803cf566799a95a7932cd78e830aee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6fde209b1130d1bd7564419cc657e3e2dd7c1951314eb422dbffdb37bd938191
MD5 69da6bb147f350106d9dbd182d4a1c0b
BLAKE2b-256 64166b297e9932159c5fe33fbb8f56ede98702d8aa270b072679ea680b20ab18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 419f407d313cc28948fe6c1a2100ee8808f1245dc28ab977c19229c41c0aafd4
MD5 46494bebaf87489bbe36935e0e5cef86
BLAKE2b-256 23ef1c07c5a6d963c112ece975bbf1f1198f8068a5eaa1d73ed1d6d7e37e891f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bddca9ebf6fe0de0863cfc024c2a090a582f048f6c310dd237da3ca672f982d3
MD5 c46c771585020b3e571f16485b45b4ac
BLAKE2b-256 540bb03202d819c9a824c754a4125b3fcd3264db7193fa34166ab281b98fc6e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfcb8d4a91ea7e34a9704a48f2b4cfe73108ce51b8c20cdb5f63d5f4a2b77e43
MD5 00f3daf41922d83ad8769a9335df9ac5
BLAKE2b-256 ec3141698ac1fac501cf65a3795ebf5b9f8a1194099a48482a9768d162432a76

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