Skip to main content

Python CRC Computation 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-ISO-HDLC')
>>> crc32.calc(b'Hello World!')
472456355

Read the data in chunks:

>>> crc32.reset()
>>> crc32.calc(b'Hello ')
3928882368
>>> crc32.calc(b'World!')
472456355

Specify the starting CRC value:

>>> crc32.set(3928882368)
>>> crc32.calc('World!')
472456355

Specify your own CRC parameters:

>>> # width, poly, init, refin, refout, xorout
>>> my_crc = anycrc.CRC(10, 0b0101010101, 0x3ff, True, False, 0)
>>> my_crc.calc('Hello World!')
35

The CRC's width cannot exceed your system's maximum integer width.

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

Benchmarks

Calculating the CRC32 for lorem ipsum 10 million times:

Module Time Elapsed (s) Speed (MiB/s) Relative
anycrc 6.660 637.26 1.000
zlib 7.567 560.86 1.136
fastcrc 17.508 242.39 2.629
crcmod-plus 19.619 216.32 2.946

Calculating the CRC32 for the text of lorem ipsum repeated 1 million times in a single pass:

Module Time Elapsed (s) Speed (MiB/s) Relative
anycrc 0.293 1447.36 1.000
zlib 0.496 856.06 1.691
fastcrc 1.310 323.88 4.469
crcmod-plus 1.280 331.44 4.367

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

Uploaded Source

Built Distributions

anycrc-0.3.3-pp310-pypy310_pp73-win_amd64.whl (98.9 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.3.3-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

anycrc-0.3.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (113.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.3.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (99.6 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.3.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (101.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.3.3-pp39-pypy39_pp73-win_amd64.whl (98.9 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.3.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

anycrc-0.3.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (113.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.3.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (99.6 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.3.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (101.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.3.3-pp38-pypy38_pp73-win_amd64.whl (98.5 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.3.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

anycrc-0.3.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (112.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.3.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl (98.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.3.3-pp37-pypy37_pp73-win_amd64.whl (98.5 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.3.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

anycrc-0.3.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (112.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

anycrc-0.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.3.3-cp312-cp312-win_amd64.whl (103.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-0.3.3-cp312-cp312-win32.whl (101.1 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.3.3-cp312-cp312-musllinux_1_1_x86_64.whl (291.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.3.3-cp312-cp312-musllinux_1_1_i686.whl (282.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (282.8 kB view details)

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

anycrc-0.3.3-cp312-cp312-macosx_11_0_arm64.whl (107.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.3.3-cp312-cp312-macosx_10_9_x86_64.whl (111.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.3.3-cp311-cp311-win_amd64.whl (103.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.3.3-cp311-cp311-win32.whl (101.2 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.3.3-cp311-cp311-musllinux_1_1_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.3.3-cp311-cp311-musllinux_1_1_i686.whl (280.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (280.6 kB view details)

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

anycrc-0.3.3-cp311-cp311-macosx_11_0_arm64.whl (107.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl (110.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.3.3-cp310-cp310-win_amd64.whl (103.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.3.3-cp310-cp310-win32.whl (101.7 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.3.3-cp310-cp310-musllinux_1_1_x86_64.whl (270.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.3.3-cp310-cp310-musllinux_1_1_i686.whl (269.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (265.0 kB view details)

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

anycrc-0.3.3-cp310-cp310-macosx_11_0_arm64.whl (107.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl (110.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.3.3-cp39-cp39-win_amd64.whl (104.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.3.3-cp39-cp39-win32.whl (102.2 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.3.3-cp39-cp39-musllinux_1_1_x86_64.whl (276.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.3.3-cp39-cp39-musllinux_1_1_i686.whl (274.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (270.5 kB view details)

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

anycrc-0.3.3-cp39-cp39-macosx_11_0_arm64.whl (108.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.3.3-cp39-cp39-macosx_10_9_x86_64.whl (111.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.3.3-cp38-cp38-win_amd64.whl (104.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.3.3-cp38-cp38-win32.whl (102.3 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.3.3-cp38-cp38-musllinux_1_1_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.3.3-cp38-cp38-musllinux_1_1_i686.whl (274.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (270.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (268.2 kB view details)

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

anycrc-0.3.3-cp38-cp38-macosx_11_0_arm64.whl (108.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.3.3-cp38-cp38-macosx_10_9_x86_64.whl (112.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.3.3-cp37-cp37m-win_amd64.whl (104.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.3.3-cp37-cp37m-win32.whl (102.5 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl (264.2 kB view details)

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

anycrc-0.3.3-cp37-cp37m-musllinux_1_1_i686.whl (263.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (262.4 kB view details)

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

anycrc-0.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (259.9 kB view details)

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

anycrc-0.3.3-cp37-cp37m-macosx_10_9_x86_64.whl (112.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-0.3.3.tar.gz
  • Upload date:
  • Size: 83.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3.tar.gz
Algorithm Hash digest
SHA256 eb432d7efd57c63095bc79c3d8d00fba51ed0df3174a1433a9c4b8fa57fda8b7
MD5 fcd9dd348beafbce0f81a6e235662aa1
BLAKE2b-256 99f061473cda4c4016326cc82d606341df6ed968e31bf9906eae4327f862203d

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c44d9598335871c0db0c2d1075abc6147dc8811f14603596b7b59f2c47bc7c49
MD5 27e017357a95d14f4848e2b1dea71ac8
BLAKE2b-256 0ceb3a957f4bcd890b7fffa000a6d1c1f40b7199be82cc459499ebb0e7fddd0c

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ed4f72da957d7b4b6a1df7e469e84bfa9ee8ba7ff3f2efcd3ae53ccbba92340
MD5 ec08da5e2d87b53a5bc7f662dfd4f798
BLAKE2b-256 b014f4e1c1df67833c6d50a37512bc40ffdd3276cced53e1e0811793d7131ba4

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 adea42e366b60c919e8804c8db6fe3e21859a49734902dabdeee505eded940dc
MD5 503088c84cbe8047f0586062a2a8e1ea
BLAKE2b-256 fc1d537af60c1079df8a81c36e5cdf5c34e2a4249bd5e6a4e12552999bd72940

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0353bbc9e7a704240fc9042a1baad72b516fda6dc89be3e9c5e1f9a6b46bce57
MD5 712b616a4bd1548fa43b80b5d41b9a70
BLAKE2b-256 95867321b9221c5af4e439afebd8f321b460b7ce7716fda7ab176fb171179187

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa16880de55ccc7d7e0663d1b0fb1f71790b8095fe746837b39c392eedd1d484
MD5 cf4d6d2ca41523c875352e41158fff44
BLAKE2b-256 f98ab0c0dae92554d8dcefe268ad7a409d062cecf09f0e2ae10baac8d8baa4e4

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e197a94bbfcd1c4fcd40a7755f3ce1679c73c7aa89fe073e82a66a00894ed7f4
MD5 02291f619842309a8714d11715fffc47
BLAKE2b-256 6242efa6aec0f51582501060a321b95bce4e1613f4f5f8f1e7cd3d983590c800

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3dc4eccaa0bdf11dc180b958588e6d7e0d4b2b8a74ca6775d8732316c90c4c1
MD5 4e0cacfe7397b9cc467ee0146f389308
BLAKE2b-256 ff9aedcec9538f8fb4b6fb39f0706322affe5c1e3a198aa453b736aa0a4ab943

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9be0d19accd65264e8038bdc10f15a5e036a3489ad83f99c9d59f92d1099c964
MD5 70d74867710fb4fbfd4e5b9228f9e2a3
BLAKE2b-256 3b1cb42d215030df8af0795d3ef43861963562ec8d772944f46febd974507405

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b713828ed45eb702f477de6ffbf394cb1bc4c9c327526e2c46d49409fc85a77
MD5 6feacf2c02c04d1d9b9f0b8da12f3aad
BLAKE2b-256 7b3b40866e94001f6ed1b9f917da4b8f98a22f9f52875ae797dfe49aacc041f2

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f9981a724c3196b93d7780db4aac9eb21a963b0a1f264cee89c62570a3590f9
MD5 f2353d476527fe27d6f48996f87d2535
BLAKE2b-256 ff2356fda6076b1e6eb79e1fdfea640cbf25f6a56b730c9e73494f8433409a4c

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6432e367336ab4e5f2416492262151e8515e98ea37a09511e0df93b6c70afc20
MD5 4006b000b600550057a39aebb3d941ea
BLAKE2b-256 bc672181e52b5093ea56fe3e8eae3b0a477d01610c052f8aa866e87ea11f0531

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0095385f6dc4923eac4060112cd6b0cbe0e2faaf720a3bba387bb962bdf30a2
MD5 b0fd8e91ac0ccb47c06699b950fc3705
BLAKE2b-256 667e7fa0d3418f99fad7f7570399b21ebdd1f63c0852e47bdd30436884335fd5

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b984df85fa85c9c8df121693162680debf9902b7e63ea0aed91b998e288ff55
MD5 2f3568e3d3738822f1ed96050613bfa5
BLAKE2b-256 d144452e15327bd65844feecbb8fbffeb6614e000d160f2eb8c6dfaf0d87fbc7

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fbef8d14504952238cb3475cd9aff75ead1f17a7ee93074a7ca368f9eb98cb7
MD5 43e741d166a363b007088049ec400635
BLAKE2b-256 c1961be081cbf33f2132b110de870941f50ba6f4a59ef284ed118e8040810efc

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72344484e53581c3e558c83e5dfdc50d42170d177f92c4282b3a65b3a0a4a489
MD5 918d2a9044fb8173f40d217bcb4bdc75
BLAKE2b-256 3f7a6999c7a7d4284459ba451770674130f42941f9cd5639994e92b2e93bdf1a

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 460f2e4cf29788b7a9e49f6a320ff8644b0b21899f215f77aab63ac9ec0cc215
MD5 19aba5b6c216f373f72b3951145b27f0
BLAKE2b-256 632902c566e97fede9be46bfb26d6d4aeb54b34e9f6f79e585353f993f35e2ed

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 419a587f21cf01be0bfc609415118907d11287ad5cf8c5683acb2f89148c2d41
MD5 8088c13ff6c295d4809793e078d896b1
BLAKE2b-256 443fa38d3b9f1e3ece48a220262d728da4c1cb43b53fc1e6a142b236309a0bc5

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8ae4bdefda70bf8f1f7af6b4c53dba67ac79ad680dd8593f17c3f7b56705090
MD5 db3c1c6eed5a2d9cb79859436a20e85a
BLAKE2b-256 d9173102c95294f86b4cee18bb026be0a8ad8d163f487e5c7ac90d35d5ed46e4

See more details on using hashes here.

File details

Details for the file anycrc-0.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97f472f1e9c6d5223f992585e931a9acc9ed62bf1127de702a27135a0c11e5d1
MD5 7c8eb6144ca73564a775c87d5f38b5b1
BLAKE2b-256 c5e91504a5f07497bbedeee543c952e05ea20ad8a90403d98c2d8d7357e9a10d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 103.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6a5c97586fb93ba59e23a039bf1155fa2667dbc8b65e7558ff33c163491801d1
MD5 4002d87f37d9359ecb61559106c01325
BLAKE2b-256 072146ddd13b478453df207bb8ca06f067bcd095d16522f4da8ee71ab8f3cde0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 101.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 195e90e0530eb058b7e6e115f7b1ad8ce26fd4de05e225b4a970bc14ff29984f
MD5 4b8b3a6107dae3d82a89000e7f81b94d
BLAKE2b-256 be30bfda0692bb41e76997856a77db72dcc296513d658d3ba3f48a08a139aa09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 07cec117b82afd0899b51a1d606a46fa63430f7feb8b1ddd51438320fb3df848
MD5 7cd7a06ee2d1fef67cff4de03025ffd5
BLAKE2b-256 b038936c96572819bede560b4bc0addddbae5b2020f62dc7d5fd60f5b7d9c283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e8283cc01b41ab3da6988f4c839db8a91135dd887b22b3f9e2470f72b0f61ffd
MD5 aab0fb55881dc3dfdf49a2716c34ad19
BLAKE2b-256 df6b5a12b9623a7f0683f97ed1c4e87852c3d83dabb85782857cafefaf2bd5d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 875fe52efd74ae0290ed81899cd216f9f4a8f99b1b87d4355562b17191839446
MD5 da9989f0b0b9517d9ede071f1e3a8ad5
BLAKE2b-256 3082edae83dc8dc3cd5f0f0d1aaf097fd40ba5c15379c113fd4b5b29511c6564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f758d7f482cbadd1f4969c1f9620f09173f1c8271f2b49c1a0a85d894c0a2aa
MD5 a6b976e9a2ddbf8126605c6066280007
BLAKE2b-256 e5968a857ea3d0082865df9c746eca2471e5882e9e39acaa0dd37a07a7d7a99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e55bbf93631b4214cbbb2196f323b3ec3da6926d57145bb4e0480390894a72a7
MD5 d508b077748b2575fb189e37e603ea5f
BLAKE2b-256 6ba95afbd16ee1502b39ddce6d49635fd36d44325a5add3cc605206b16d93d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 658fbca2025a60343d13b8280481b52e4df7576c53aa4207572c40673d99fd6b
MD5 0b63251818f3b688e774343775dd98af
BLAKE2b-256 c854bf715388543d3badfaac090640942880c75c21c6094aa8cf0cda7598e129

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 103.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 793229ae53dcaf82849819cdb105598241b6612498b3e5274357a0633ca0212f
MD5 2af14e0922938d96c834c62441d3efcd
BLAKE2b-256 cd440c9bee9dcaf57f7645c022c105212ada50e15fdedff060d96e9f273945e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 101.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d4e5ae8e3c75ba93852c42037efaf2dd8337c99862de08bd5b65610e1f149307
MD5 1bd1c3c2df4657024ee6ea94a01b7910
BLAKE2b-256 8056739fded5e425747243280a98ae2f089bd61fdec813c19c17b5c4891bcfd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c311c02062e0ae5d53fdf2fa2e7921a5a73d37392479209b119a6eddc5c5a8c1
MD5 9eb71cd2ac812cd9e58c8c964b7ea866
BLAKE2b-256 7ad623b4d78f1e18b3f6525bebba4cbb4e09f6c6acd88cfca7657a3213b014c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2a0371f079507f95b33616f5a629321d709632d2c007b0e9119a8ba50927b80e
MD5 151f7a7bbcb53bc38a315a39ca05dfe9
BLAKE2b-256 4e014ffafcbca75f15ddafe3115f5bba9ba07d6662c4fb93b0af3c336043c4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1072f521a98ea01d4fbabd2a3c54034661b16747bf4b7f55343d4c1191e24813
MD5 7ffbf20f47bd28c10fb861f348274f2c
BLAKE2b-256 55ab5175c879391867d11ecf6413694a9e9e966322fbb4aa299115c8f2504f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06b519ee2a5f76dc4df5f5dee890e9f91bd43646cd8ce4a78b4bc253f134b5d8
MD5 fd02cd493b77dcbaaece4a34b35a3a3d
BLAKE2b-256 efc6bfbea38c67d1d35a88d6146f420d6667b085190d9c846724c1fae46b1121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2908e0833299199562223c1284cc6fcf892537e748c667573261505286c33d7d
MD5 f3ef6374c0fd67e8f7cdc797a1458ac7
BLAKE2b-256 11895a5f002ba4744e29462188ef11d11f7eb25c2f6c0b8de6c0f8992ab50e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4025dbc0729a042d0994bb87666838010baf96c778c5ac10bfc0d40ee4df8a48
MD5 fad71eb6dd7be4d81fadf33b038e4882
BLAKE2b-256 ef827b38cd37a27406aac48213914568cecfc4faeb0fa4d03165e297a3ff3e22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 103.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d4f7965ebaff290414fa7b94475439b41b416d494b8f0627d6c284e56dbd2a14
MD5 b591d72cb03057550bdf426f9be82d03
BLAKE2b-256 c3081ffa792a45ddb1f023a2b0c8ee685e56489b95893d133dcadebb05429b93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 101.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cd0dc775147b293e40bcdb6474c8d526bc2681730a36e4efb327382627a18650
MD5 0d4454a8ded73cffaccd5433574253a8
BLAKE2b-256 c3a21aceb69cc71f4be166acc0df1f7c2d4942821a231adca2c437d9a6d1faeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6892276edc4b015f94003a69f02153be8a0abf1fffa31af9d0ff3ae619945281
MD5 95527f51e31fefe2b29b8235da6a663d
BLAKE2b-256 cd32401af44d7327f23f72964fa6c3d3f8207894422ab3567aa36c0e36a7f27b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6c625b6db812d569b3d5e57fd4c4b0548ffe781afc62056c76c7b99c133d7a93
MD5 5ce1f70c92b12599199488068054335b
BLAKE2b-256 47f49d6fafcf6516220b64369c9315ee7a81b1163d01c712143c59ebc03f87c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a942e665c93d952852cdc24a1a83e86823a482432e9210e1da5e6d49fb67af62
MD5 e9adaef0a689ac59dedf51bf4fbb342d
BLAKE2b-256 dd5e5caf0f583d1a4c73b2c8f35e43e10ad9f30524996dee0d5f5b3f042b5110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39b3197b2b416c4975be91bb24560cf55b707b2599780e61b19fcf41fc338a29
MD5 620e32eb8129483c7495cd4e4a918836
BLAKE2b-256 d31a16fd13ed66e705ace13a7347b522874c3f473c034821eea40af4ac22e49b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60adfdbae46c9853ec7e9811e141299c001bac1f393b09b8eb72dcc59a635e0b
MD5 23035f2a8dc8398e1e58fff20d4e42f7
BLAKE2b-256 33f66112f86f9eb285f74832809f47a6beecb6ba87425f42ae6a7ae744b271e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b543324450f3d45e3ea63c728bc818c57016bd979b8e63d8f1c6f1c99c9054d
MD5 183f85475695d1d822fe28a553a18499
BLAKE2b-256 6dd9f14a2a00081e145b1eb58ec59024d1b6c25c3c6db93705e603406beefde4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 104.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8a5d1a996a6107ee1c7d323c9b89fb01e7a1d7c911158e9d2d9140df53596209
MD5 30614522291fe111d96f15ddc9fb5a45
BLAKE2b-256 d62835021ac59a2834b08f9ed623bcacb4cf1a54c18c2faf05bbf18d51c7af82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 102.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 511839d6eaf45a4af5e6da53e6c3635d278f6925673ee35771419349678229f7
MD5 b09dd75cc97be424424a97e67c1d8498
BLAKE2b-256 034c09fcfef59700d5f419ff996e7ef3ddf54dad70321ac3369e90f139c62413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56ff6d4cdf784ebf4171c4c7f731fd6da981862861f86ec104366f74ca1e5ca3
MD5 864c551e9e3edc2d532be8ab0ba369d9
BLAKE2b-256 8f60ba55bb6dd5f0c3d9b4c91f7d43c6dcc9b8c91a79963a21d50e5f1a1cab6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 46a110271aa067e3ceeaf658603c0aec2f90e1b764dfef1cfa6c81da16747619
MD5 2a8bd5e137e60ccd40ea6c11bed3acc5
BLAKE2b-256 a59da9ce067370f7ea26fc2bcd2c7136adc18f51d1ad2d0400a37c04715c6cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ad3ffebd54e1258004c5faf46e6370461b6a50dbf5b1da575182e916265e241
MD5 02004002d6015c193348f4fc015565d1
BLAKE2b-256 e3d9fb0c27fc3b9834a7ffd7ce213ff536a7b66ca5afad611408dd274392a463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c35f1f2010879a5c5c000792a98c5dc913ff34edff41c48a8913b264e5e6595
MD5 fc7429f0de61f87ed256faebaed6ad6f
BLAKE2b-256 2ff707321aaacbbdab446eb5ae656f262ff4e087411df7000420172d6c4b0017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce9a1a44bda78ccb2ee0c2c487a018116b0790ff5ada4ca361bb7b60056d5e3b
MD5 d5a30eb528beb60c9462913fa614adcf
BLAKE2b-256 36a8fcff24c30821a598df1dfc90fdaa33127954053dc65825ce6f4d6b5beccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f095a1d451661b59b599e7ee2b3b36f3859fd47b6bb54740b77557ae5b21bd4
MD5 ccf872252ece69af0f411e020ebf87e3
BLAKE2b-256 2b764f58eef3386f5802558edac4dc84262c977f30d457f19d4d7e95f6012875

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 104.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c2c45f1bf07ee92ee12acfca8130252d606f8029d2ac396a92865c5ad37e7a89
MD5 0efd969928a409ac5e37202861fd90b9
BLAKE2b-256 016176f684d3d6baa81bb216846702acc68a7d94ffe53cf31878bb3cb86cecd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 102.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0fda653ee02b41c15801c219061501e3fced1aa9548784c7a764ff2cfac38061
MD5 281408e17919fa5690965fecf0e40622
BLAKE2b-256 f96dd53f6a0a866265a65d16c4e29d4a44139e2685302ec7a923571f217ef31b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e95c4bf312690f1e663dde6dd9997af2eb76da2bb2e8730064758c2e0a33f03f
MD5 fdf28d54ca9a010c8f3b4873166f8fa3
BLAKE2b-256 ad4e5b56ab0bc0635e23fe833fa3e2e430b47d775fa9e8282f4df298d836a676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 90141c069c1c65a2b886d40c4ba5e8a363608dcd507c8ae0264fd550fdc7fd36
MD5 517a1fc2831e7126cb99c77fa9c77097
BLAKE2b-256 e7d6ef59d03a1d009b92bb02faedf47589761c3a14a7e603dafd2b126aa58cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d69a7f45dc7fe1c42813d0f5c2a840a9091376a00e77c1858b4622a60f90f46
MD5 b5d8c926ba614afc4c209be8e7392ee9
BLAKE2b-256 876619a7977ff1dd51fc4fa273575aeecb7951e0d67cc28eba9a4fa0120b7f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efede4debb8126743d94e165fe54a3b9547c7d6a5196c80e705a8de06e0dc9d5
MD5 fd8370524dde0828d2b6910def0b132d
BLAKE2b-256 4031e62a60e882112130ef185a53563c691b1819198af62ddc6e96c3f746d60d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 861b81290f97a8044f0dfee2df126ad117f598342c76c6d3e2a3ab6705f7b006
MD5 71af51449c06fa22deca2c3af671f0e6
BLAKE2b-256 a35b7b962510c299ff79df9ac3c63ff4c215bd42172ca9b94aceabdb1a701698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62d39aba809cbc7bcc8c6498d858895ca110a625121345be370e91687f36e8ba
MD5 6898d3bf59d678dea15c3bb774acb394
BLAKE2b-256 fcf05a43ef8bfd7c7b87744132858551c137df270c1601bd3414a14a102f66e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.3.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 89799a69e6fd814771faf95b98c593816a476e1cd85559f1c1ef2f0fca375e38
MD5 be381d1cd4522138f5497f9bcf600db0
BLAKE2b-256 53333ec69d295e401d72d4d280a0b5074cf937e133cf6fe67baa4fe3c44d0f54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 102.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for anycrc-0.3.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 30916a6e95f1029f436d4f2bbf06b99c256d0cb961a1a8a8e9f98500855cb414
MD5 7783c4000eb10444549845d99dac0d22
BLAKE2b-256 f592a32fa3f3ebd8d10043a2eef1fe5c941992637ee40494d5a473b65165deb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e639e0e30d7a9a73c96265f04b4dbfd1bbedfe778928d81bfa7646943f3e24c
MD5 768a15b49fbd614e6002a488e59b5e07
BLAKE2b-256 9a7a1cb0c87eef3bde33cb41473eea6005e03a0026f09d73fcf83731ca502f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 52aa423436fa7176f5c006c5b50df60d5556a1025caab4201cbd66c5ff0791f9
MD5 f35f9e922f7ba2fb43fae97a4c72778c
BLAKE2b-256 92a56db2bed30b312706b304b8db07c56d93413ee1b175ead44abd9e483d12a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59089820fcc47bbeed48bc62e01e0c2e649667386384b0edca185ba1956c84a3
MD5 42b2ee8497866d4d620d214ffc8c9109
BLAKE2b-256 e1e31a443f6c2acf6bba78f4f43a14cf60008d4a0d9e60e1d99ab2504e0d78a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b2900aa524e4b9e9fce459d8883ea97505ca7c36a74fee2c0a1e3c7c0bb3c67
MD5 a96e2b61ab25ff112a25f62d91cb6bfd
BLAKE2b-256 7d778c9d5fe59630c5c20595fc77dbef576d9c9e96cf2c06ea569ffccf974dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 129b7f1973bff03d0a94a2e74a9b82a68b2e5da29c17a8b196709782b13ee57f
MD5 0c423e56571d184a724f91586b4c7fa7
BLAKE2b-256 a41eba1db0dd7aaab56c38e7cd54155788c359d8f4f7bf8bc79cdffa211c9f47

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