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. Anycrc supports all of the CRCs listed in the RevEng CRC Catalogue.
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 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 possible CRC width is 128 bits. CRCs with a width larger than 64 bits use the slower byte-by-byte algorithm.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file anycrc-0.8.1.tar.gz
.
File metadata
- Download URL: anycrc-0.8.1.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca4bd516ac76c8dec3bdd4c363bb9486a159a839e0e3135227752849dbc69ae8 |
|
MD5 | 19952cc872823e688504c85412829579 |
|
BLAKE2b-256 | 692554bbc853c041644c82fc6ed13494de2fa1082af437a580c9bc7b94f367c7 |
File details
Details for the file anycrc-0.8.1-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 42.5 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | b530b0f071c9f04ff751e8d993fc634c27bf2aff5e0f22880dbc928d6d10effd |
|
MD5 | 5f4a014e058b8ce4bd831e00f4251097 |
|
BLAKE2b-256 | e9f299a8c3d2299468e458ca9ec86e3fed6f682e87091662c552be7534b8281a |
File details
Details for the file anycrc-0.8.1-cp312-cp312-win32.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp312-cp312-win32.whl
- Upload date:
- Size: 41.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee45c9a38fb7a53b81c8cb44b32ae775f271b55f6ab52eedf59e999d58abc55d |
|
MD5 | 7b7162a1e2fd3efb29dd78c988532f56 |
|
BLAKE2b-256 | af1cb51f6d43c77186b5c01e99d9cd5aa767bab67f9529a8873f627c22a02152 |
File details
Details for the file anycrc-0.8.1-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 228.9 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d254bee1c3ad0e9d3977d81e11428f6b067957f6cd58fd63ecd65149b48b31a |
|
MD5 | 54142ac073862bb0de690804e9b82bd4 |
|
BLAKE2b-256 | 71f50180ca40b91ae2a8d1ca00c08276af1208580c61993a3443c512aacf1bcf |
File details
Details for the file anycrc-0.8.1-cp312-cp312-musllinux_1_1_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 218.9 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efdc69c10c5d7cb84d73f1ebf1c345ac60b18b91ba3b1c36cafb4744d722222b |
|
MD5 | 9b23538f19ece01fa1d63dc43492aaa7 |
|
BLAKE2b-256 | e9389d1e95a0df95de1ee7597faad3de560c6ee6246c558b50b8c08a9818a430 |
File details
Details for the file anycrc-0.8.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 198.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90650e0167d596aad0fdec18e5d92da59cc6a50c1c562b4a794521db9794e6fe |
|
MD5 | 940195c8c8b13b9a38e1512244afb822 |
|
BLAKE2b-256 | d11e743a1c0a5254f79973e5d8c1113bbd9edf514ab2716d6b073d7b159932c3 |
File details
Details for the file anycrc-0.8.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 190.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0b6eb6761b4c76085ecf74ab8abfa3166d68c8ae80346b70d6c07b87d3417da |
|
MD5 | 5c6318af568872398888f25445598084 |
|
BLAKE2b-256 | 7507086e1a66a223d5dcf12a95f7065bda69db91450db8ae72ff1c0e407fb55c |
File details
Details for the file anycrc-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 42.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eca9403e52268b220a8cb221bf7c1eb39bf45b1c0e11a4ee9ec6f8f950291eed |
|
MD5 | b9444900fe5f21014c785f010a40afea |
|
BLAKE2b-256 | bfbfb934a0454ef77d9dd22d196026d2b66ea8cd59eda48edb79ce488dd64fcf |
File details
Details for the file anycrc-0.8.1-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41a9a4511988300af349c52126d1fe7e79b310172a593448880f4b6312554af5 |
|
MD5 | cb6a78a6faabcafc86469c56f51c43cf |
|
BLAKE2b-256 | 363bcfd3f7b05283adebaa808a61bc34b37eedebc52d6cc0fe0ce5ce9ae93ea8 |
File details
Details for the file anycrc-0.8.1-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 42.4 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f668d6065f799c9cbc7363deea77b04dfd175f1e5a3c9b2a3fd0516ec086ca7 |
|
MD5 | 413732d2ca9e3ad9241a39f16112c587 |
|
BLAKE2b-256 | 8687e0328f4ccc51e11ca14bfd6ac42fcd3ff8ff4a55f2d63b2f4c2b9b49ba51 |
File details
Details for the file anycrc-0.8.1-cp311-cp311-win32.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp311-cp311-win32.whl
- Upload date:
- Size: 41.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a479b3d20591a4755331b46bcd7bfc0e3beb7526bedd5888aca9ccb2aaa7b8ce |
|
MD5 | 8453cb216b1aab50d7b4d3c611b721f0 |
|
BLAKE2b-256 | d39c13ce2126e895de2e3674032d034c7962a2d891e5c83e3490aab40fd09496 |
File details
Details for the file anycrc-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 222.2 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4373028fa6596de096a0e15471a4edd9955edd6a35b6a9ed36d8a9f80ae3dd8a |
|
MD5 | ba2174afe80746c07f3ffb4ed75a58d9 |
|
BLAKE2b-256 | b9d4b580a3f5d015d8fad809bf683dd9aaabdeb60f5a6979187af5dcda5a111e |
File details
Details for the file anycrc-0.8.1-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 214.0 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ad36ee99200e8f6026955d1be6b7c4a7c39b993fd1d46319f1b43532dbb3314 |
|
MD5 | 7d1aacbc96935c28f650a1144e638c75 |
|
BLAKE2b-256 | 0019c067ba119e5f004a04e976ddfa04d35fdb4e44fbba2b53eb3ec8f340f9a7 |
File details
Details for the file anycrc-0.8.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 177.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9296177144c11f6aab7cba6106bd701349129f16e506bdf7d4f86c25307464b |
|
MD5 | 1fb7922e3174c8143b0b004f50566d77 |
|
BLAKE2b-256 | 242f444f72ae158ce340fa0d0ac64053fb6299d5416fde1ec18a6f39715378fa |
File details
Details for the file anycrc-0.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 170.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bebd8bc0e47fb66975837605805d10b74d2c4d9d9fdfa73232ae80fb26071aed |
|
MD5 | 3c9a886aed2f07d3d1e0952ace434cc7 |
|
BLAKE2b-256 | ecea12b55fd6afe75f4da17491caa8f1b47efe88103fcc09b8d31907a913ee5f |
File details
Details for the file anycrc-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 42.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f00259a4ce80721e8b7caba72083e54e914c978220798c5537c9449fc62a078 |
|
MD5 | 3016e50147edf1f7978e73cfa727b16a |
|
BLAKE2b-256 | ba5df55f69a53db2cbe9f158e3a41885b7b8cbc4db84790ade122719be97159b |
File details
Details for the file anycrc-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 44.4 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1843cf9d53af7b54a6cfdd306e408330a6fa41aec9b141c10454b89a4c5bf42 |
|
MD5 | fea44910644d0e4ee246d53d67ed5aa9 |
|
BLAKE2b-256 | 9294148d6fd4c31941e2b0712e41e46399eb5ae5692c59b76349298adeb1922e |
File details
Details for the file anycrc-0.8.1-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 42.3 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | e396d9050e2b11066d462cf203b3848e9fd3a7a227e3a43780d9858cf7e4d50c |
|
MD5 | dfc0a3039c0988d156a11e5bf9e2db3c |
|
BLAKE2b-256 | 059914320e284448902fb680495dcfbd4f315ee2431c8587c81bd37526239a22 |
File details
Details for the file anycrc-0.8.1-cp310-cp310-win32.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp310-cp310-win32.whl
- Upload date:
- Size: 41.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc400086929e73c0dd1e5ca150a3799927dc148db09b8858e063a5ec63bf6ec0 |
|
MD5 | 6d54cd019f32bdbb9df796315d91670e |
|
BLAKE2b-256 | 9e1af31fc0641ad0aa4d372fc2279309c5c886e42144b6ccfdfc50ea3480d01c |
File details
Details for the file anycrc-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 209.2 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23241f93dcdb8bead234ed43e135e5cd2553185dc5d998cb2a16b67d216f1866 |
|
MD5 | 79a754905e7d649faf5f9a9e9b369286 |
|
BLAKE2b-256 | c55ed8eb2b2771d354ed64fc2f004c43d1f2be5ace3edbd17d58677cea44ca35 |
File details
Details for the file anycrc-0.8.1-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 203.1 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2a18d06220151f1b67c082ab08c17f5bacdc2191327c55979825c3727c7ebc6 |
|
MD5 | a9013bb1220e488a5bdd669327790327 |
|
BLAKE2b-256 | 3f22d600c4d845c8a7aa52903943fbd855dbaa7d19cb785b4478cf24b1182001 |
File details
Details for the file anycrc-0.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 194.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20b11c99b4cc2b2df11278da38202d26a05074bc2a7202926a282bc461215cd0 |
|
MD5 | 9e275bdd00419b22a6f4d7c378e2aa34 |
|
BLAKE2b-256 | d1cb5438e85470613224a1b752ad1f987be1ce8df04db81e9a0f54dbd6861dff |
File details
Details for the file anycrc-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 161.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 613e789c21562ccaf861456ff7c06f2a524da74114256f301c3fded55ff71e77 |
|
MD5 | 41249218808d342fb50adc2a4d76f61b |
|
BLAKE2b-256 | 4182f94a392283ef717147d44f1e792e151acff8fa3562e4f7e2059e9c13a794 |
File details
Details for the file anycrc-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 42.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89175ff871f52f60020d6b6d0616e69aeff4439acf12c2e34945e3ee0d0da436 |
|
MD5 | 1c6d7d4acc3db8761b64d2079dfa4405 |
|
BLAKE2b-256 | 692bd05c19b4d73848f10078ec67e038dd1119f27b253cd70f8d86995002c923 |
File details
Details for the file anycrc-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 44.3 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e4cb6352bf61b2e6ffd998075cf45dd99d519f61b6f499936bda1d4332d44b5 |
|
MD5 | 8f3eb891ddb169ccc240bb97ee2e5fd3 |
|
BLAKE2b-256 | 8ba2932aca69d9e79ccc095cce31bf019dbfe6de1f67f6c7d459c17b2a4c189b |
File details
Details for the file anycrc-0.8.1-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 43.0 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7ce03cace40b6412f065129f4433d6f78889124165e1023a8e42705dbd11054 |
|
MD5 | 270ceeb77301300a4ac2c7af870e84d9 |
|
BLAKE2b-256 | fd6d97abff05e1608b82865b45633824955e0867479328bbe686781dcf3e31df |
File details
Details for the file anycrc-0.8.1-cp39-cp39-win32.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp39-cp39-win32.whl
- Upload date:
- Size: 41.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ceaa9b60c45615be606275f0d218412e909c6df3fa66b80f8df1aa6d33e2478 |
|
MD5 | c14446d3454369605ccfb4448f4ab7a4 |
|
BLAKE2b-256 | 376132e9cde4fc6af8e61f1ed653401852f5820d237646a3f9661971a7d0beb0 |
File details
Details for the file anycrc-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 214.4 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b6d62ac647b0379bc49e4c283a4941b6a72c6826630df23c083d8173f16ed8a |
|
MD5 | 29e7be9cf967f3574758fc111839869c |
|
BLAKE2b-256 | b5bb9ab0f63d4189af04cedde2dc72c452d8d7636704cc9970a6584adecc66d7 |
File details
Details for the file anycrc-0.8.1-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 208.1 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 580e477329ccfb8925b581c9616daac3552d2814d2d9b4156698ffbe82672a3f |
|
MD5 | 06470acae3f438879a20d30d93926ef7 |
|
BLAKE2b-256 | f07bd3ee8f9905fd075e8f86823bf8489569f24cda388b74225f055295f232a1 |
File details
Details for the file anycrc-0.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 200.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5473569c31b33d4a8b597aa2d5c63bdcd4ff30b379e8fd9013b4bc27e332614 |
|
MD5 | aad758b32965727662621490e850b2ee |
|
BLAKE2b-256 | 9822355f806fee395f368c069646f0b7f62fed7bbf56dd9ad34fce9febafdbb3 |
File details
Details for the file anycrc-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 166.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bde2db690f65cd1af7e6e2444e3c83f21ea0c1b6f86ca0061ae09e958aae460b |
|
MD5 | 5421f8b397f8e2aa285f628c8517ce8e |
|
BLAKE2b-256 | 560bc247fb7eb94a93c1b83e3fcec34a1dc6fc5a57df3eaf91a2b0ecef7fdd2f |
File details
Details for the file anycrc-0.8.1-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 42.7 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f339f07bccb716c2a19bbe0b4da225df71b60623fcc9c988b164c54afbd25d8f |
|
MD5 | b4004866ca035f579a7895ff77459cb0 |
|
BLAKE2b-256 | 5002097360e874701d8df178a6dfadab0f2734b7184554e41199f463773aa325 |
File details
Details for the file anycrc-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 45.1 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c46ac0073d5a2455735d91a2da303c76873beeff5032457bf12442a38feb0c5f |
|
MD5 | e4eb79b73b747a77b81f226af8078af4 |
|
BLAKE2b-256 | 743d635d0857014a0ff3a24fc51438e5907bd986a1db0cff7fbd33396944e39a |
File details
Details for the file anycrc-0.8.1-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 43.1 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e613443da015ff68a1aa70e366ac72b9231e91d27415e23753f636996b94b89 |
|
MD5 | 887f54902a538fce9a65ddf84355a526 |
|
BLAKE2b-256 | fb5b3c13d5dadac67ac687e03b856387b1e0e66560172cc54f9211001f13042c |
File details
Details for the file anycrc-0.8.1-cp38-cp38-win32.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp38-cp38-win32.whl
- Upload date:
- Size: 41.8 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5905e2ad56c4a781aef55eaf57aa49d0ee3dd32f79693d7dd3c7a05b71b779b8 |
|
MD5 | a7bcd2da59165e19cef0051501e07cfd |
|
BLAKE2b-256 | 78efc1d33d0028fe0fdf0711b4f7beb26c9c57481feb8dc13739a44872e19d53 |
File details
Details for the file anycrc-0.8.1-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 217.5 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dff500972f8204fa8ccc6f8b8821f404dd179b3a670559ae770707391ad326a |
|
MD5 | e02042953a4f0d72376df43ffab573bb |
|
BLAKE2b-256 | dbf2ed3c0d8d168c28d307421d718195614bce344e9ad94097b8f0efc6e8d73c |
File details
Details for the file anycrc-0.8.1-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 212.0 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c87cf80324b2caaf6ec85d220ed15cf021c4941fe3178764f34f3a10da6ec540 |
|
MD5 | 924a5d71ab4d0b648fc5cb2865e05abe |
|
BLAKE2b-256 | 2613c0c2f2a1b69230b248248cdadf6914ff67d1914c7321741660b46df71896 |
File details
Details for the file anycrc-0.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 198.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04da4cb2061f39c5a68d1f5556db824043179054cd110e6137ee64766b398754 |
|
MD5 | 22477da2b333a3ec9d31830458b581d1 |
|
BLAKE2b-256 | 50586d782907219dc095940c9c45573e6417fd30ca25bfaf1b91fe6d27c0f922 |
File details
Details for the file anycrc-0.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 171.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 322beb83eaf74a6de8c27ea0178dec276707157cb3a3682df297b9d3fa5913c2 |
|
MD5 | ce25ffa14d2a99f1474a7844f3398d89 |
|
BLAKE2b-256 | 755dbd2741050252db2b8855640c6b1c7cd9a3d90e3241bcf67652a8d55ffaf8 |
File details
Details for the file anycrc-0.8.1-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 42.8 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e07c4d6170bdcaa7c539afa8cb4294fe88d9d2cecc916dc235312b62d71b507 |
|
MD5 | 6d0125190c91ea86b991cf9ecaf25247 |
|
BLAKE2b-256 | 9bbf3cba6818943a32138ab2857d5696e4b440c1e0c58b3805d8fb34c52e7143 |
File details
Details for the file anycrc-0.8.1-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 45.1 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cb90f80ec98f0c42558dc425b72bfe6cc1d4bd6dab9562a53be9dd1d5cfc503 |
|
MD5 | 37af76e1bca80e28548ff54198636109 |
|
BLAKE2b-256 | f3db2ac94cf27494a1519af14f448ee59c37f5c8d318238d5c7f4183dcec3cbf |
File details
Details for the file anycrc-0.8.1-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 43.4 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc49ec10286493e1a2582f0a2dd3e1e7f9af7e22265e4700595c9cfba9edd035 |
|
MD5 | 4f8005290a54572ada53dec37e73be94 |
|
BLAKE2b-256 | 32542ad56f9d668deb6e8bb25ddb5c755e14702be38ee17cbdc6d8bfda9e8a96 |
File details
Details for the file anycrc-0.8.1-cp37-cp37m-win32.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp37-cp37m-win32.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 258f2423ab22733b8d68c27184e849ace74039eab850d5b3363795e5b469ffeb |
|
MD5 | 230c63ef5f6dd73564efffea9dca0344 |
|
BLAKE2b-256 | 573f495dc87fe4b159ec34442acff91ba3bd84a95475dc6f83fa5ef536f7560e |
File details
Details for the file anycrc-0.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 198.5 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db4fc461805dfd2f46b225535eeb8b64abcda9e7f391849736f1cc88c3cece16 |
|
MD5 | 237a70df7058aae535c6a67774a32602 |
|
BLAKE2b-256 | aa5155d557cd66cf460bae6f69f34e0328e32693171cd45df98bd3b062d67445 |
File details
Details for the file anycrc-0.8.1-cp37-cp37m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 194.8 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70055993938be0fe677126a3ee0ab2b7524d722a186c6066f2e5621249d3b7e8 |
|
MD5 | 0b63d8e582b53fcb849bf1ddd4557b9c |
|
BLAKE2b-256 | d77369d3d5be74691a823c0471b0fe23f3da34e06e22902ff60f573b6145ac6d |
File details
Details for the file anycrc-0.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 168.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 250d1fbcf55a6fc3edb1a83b2813363d3c9d6097015f6b4c64340de7ca95efd9 |
|
MD5 | fbaf0bc7ba5200f9ca081dca00a23bdb |
|
BLAKE2b-256 | 78ae4c3e774dfa07a0a47c1ff43eadc447a5f8dad19eaddc5d304bad0d8f2731 |
File details
Details for the file anycrc-0.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 163.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9dd7de5e97239f70c523a8565437c5bb066375f94665abbb7f110080a0cbdcf9 |
|
MD5 | 0ef9945dbeaab17dab7abd3f7aa4c18d |
|
BLAKE2b-256 | 617d3707c65280982f3523659199445546a81b49fffbd4e2a14adea19b7246bc |
File details
Details for the file anycrc-0.8.1-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: anycrc-0.8.1-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 45.3 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4ab4cd876b45238aba1610f9da33124d7d80f072f8dfbd8ba828986a60ebc04 |
|
MD5 | fbf02c063275d40eab9c9a065c895c6c |
|
BLAKE2b-256 | dab2e258793e91d2a1704e553f44c7d64f89ee6878e12c47ce514bcf49e4f120 |