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. It takes advantage of crcany's ability to efficiently combine multiple CRCs to parallelize the CRC's calculation.

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

This module will sometimes compute the CRC in parallel using multiple processors. To disable parallelism write:

python anycrc.set_parallel(False)

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 2.397 1770.21 1.000
zlib 2.791 1520.45 1.164
fastcrc 7.782 545.37 3.246
crcmod-plus 8.891 477.35 3.708

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 (parallel) 0.018 24231.05 1.000
anycrc (serial) 0.202 2100.68 11.535
zlib 0.215 1977.93 12.251
fastcrc 0.670 633.75 38.234
crcmod-plus 0.668 635.19 38.148

Tested on a 12th generation Intel i7 processor. Parallel performance will depend on your system. Note that parallelism is disabled when the length of the input data is under 20k, as the serial method is faster in that case.

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

Uploaded Source

Built Distributions

anycrc-0.4.0-pp310-pypy310_pp73-win_amd64.whl (39.4 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (115.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (123.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

anycrc-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (39.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.4.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (41.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.4.0-pp39-pypy39_pp73-win_amd64.whl (39.4 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (115.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (123.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

anycrc-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (39.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (41.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.4.0-pp38-pypy38_pp73-win_amd64.whl (39.0 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (122.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

anycrc-0.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (38.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (40.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.4.0-pp37-pypy37_pp73-win_amd64.whl (39.0 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (122.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

anycrc-0.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (40.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.4.0-cp312-cp312-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-0.4.0-cp312-cp312-win32.whl (41.4 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl (332.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.4.0-cp312-cp312-musllinux_1_1_i686.whl (327.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (318.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

anycrc-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (47.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.4.0-cp312-cp312-macosx_10_9_x86_64.whl (51.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.4.0-cp311-cp311-win_amd64.whl (44.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.4.0-cp311-cp311-win32.whl (41.8 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl (322.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.4.0-cp311-cp311-musllinux_1_1_i686.whl (318.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (306.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

anycrc-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (47.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (51.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.4.0-cp310-cp310-win_amd64.whl (44.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.4.0-cp310-cp310-win32.whl (42.1 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (301.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.4.0-cp310-cp310-musllinux_1_1_i686.whl (303.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (287.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

anycrc-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (47.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl (51.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.4.0-cp39-cp39-win_amd64.whl (45.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.4.0-cp39-cp39-win32.whl (42.8 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl (306.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.4.0-cp39-cp39-musllinux_1_1_i686.whl (309.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (292.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

anycrc-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (47.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl (51.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.4.0-cp38-cp38-win_amd64.whl (45.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.4.0-cp38-cp38-win32.whl (42.9 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl (307.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.4.0-cp38-cp38-musllinux_1_1_i686.whl (309.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (290.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

anycrc-0.4.0-cp38-cp38-macosx_11_0_arm64.whl (47.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl (52.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.4.0-cp37-cp37m-win_amd64.whl (45.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.4.0-cp37-cp37m-win32.whl (42.9 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl (293.8 kB view details)

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

anycrc-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl (296.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.9 kB view details)

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

anycrc-0.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (281.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

anycrc-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for anycrc-0.4.0.tar.gz
Algorithm Hash digest
SHA256 9dc620d42701c75aa9f913f5761ebf7d0a482c34f1301027a6013c100ecbd3b7
MD5 b1516b8936366b2060fb20a38485a0f3
BLAKE2b-256 63f2f82cf99ceea50d32c50db5fd65fcef64df46ff95df75706ce9dc7824b20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b4681b1fb490318696b0dd86c4971d05faea5ea57f0296821693e587d70c3ba1
MD5 68f53adf19e9191f1547a4d7228e2dcf
BLAKE2b-256 7a81177590bf89108dd4c38a83b0afa55b8ffca8409195458125cb5bf616b45d

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d20e9b95f58ab6e4965b3b057e40deb7b2709713a14e222547f794c6fe44fa
MD5 9d60e4262fd92920df00e067a747cfe8
BLAKE2b-256 e42b7ac05906f6a4102676ea5e5865946e84859e1ccdb07c3e404b220d6b14dd

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bce6fee270528658881ee3eed5303ec1c67d1ee036ef78f755dcfb33374ee95
MD5 a589aa25c299eadd9e1daaf5d71d8a99
BLAKE2b-256 08a892ac6eab0d1e191da854f739a08a46cf3724d9b2785e57c057a436735c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 082bf875b0bb4f7ea37b111b09bfed0721dfe4720c651b0eb173a2d58b1079c8
MD5 fa9e1b8b8696a7cacf41ff73b1ad0728
BLAKE2b-256 ea32222fc164eca42479d9f37af8da401a9291532617f89e89e9a3751c3da8fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 881e26dc86f37811a80f387ba51ea996c1cda06052de1b5c47a372bcea9bd59d
MD5 8d3ed93536932371110dbc86f4cab23d
BLAKE2b-256 3ee40f0120aab55a2211225ecee1602fa0c04981a458ef18383724d4cb5945dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f4e216a50732ceb74df6abf46c23c093bfd26189dc4c16df10e51d630059e154
MD5 0d830e89e3ed70a56e48b8c92cec0439
BLAKE2b-256 b7000c89b77ce02c9abd33978dab3a8c038487e099502d9398d1bf858db01956

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f640cc6e7d70667592aca9ee6dd7bfd042f95f808b95ca9d28833f1c9cc32459
MD5 3d50310d58ce01f17fcc1c0b30263b7e
BLAKE2b-256 1cd14d735afee103f5990c813cb36e133e836bc1f6ee2ddf4563aae630e2827f

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7aed4d36268741309fcd1f369843af2894ee13fdc9368d634348b8cd27c44efc
MD5 a15caa003885c64fd69746961873eb8e
BLAKE2b-256 56a8fa08af383af35f039f59f5882dcb1a20fd5bdf57850ed203bcf7ba20cbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9eeefba6e027b2ed29b8813ef468a8745324da8fa76c333fc5b6fcb20d41ef50
MD5 15844989585b693e03f3e64cdb1f2a57
BLAKE2b-256 1ef53746eb0196acbf84a5d0f2f8933543786bbb69ad0c5bff0a8b6db95f7725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d499ce387e9f0aa2f5cbef7538dd05d51c7d4e3920432b8dfb86efe3c75f8e23
MD5 32dbf4d54cc7badf7d6d0874ce1239c7
BLAKE2b-256 e1618f3cfca7442099b430def9dc9f273213b761137ffaf6b4f35732b553ebda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 925b2d4d0daeb654a0476053fc255d1f55060a79ff4ea2223cf004dbf3a7646f
MD5 82a7037ddf5856343a68959f7cd23810
BLAKE2b-256 6e53ab25fdba2a4d0eb107e2f78ad76db3187e0239990405a7eff4bce2468e33

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 780cbcd29a3b662a5f87d765339bc4322225917c122a245681ade0f9413b31a8
MD5 278619d1957fb4234b5129e83835c7f1
BLAKE2b-256 15db43dcff077513ec5bbb1ce7d3d432f2e1cd58c5daac4b1a2bf4b070a12ea3

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d48889a6b86bac9647c6b1618a1812d11c5184cb02940ae2cff738f7d3811fb
MD5 34a49826459854d3a76b1116ca09d8c6
BLAKE2b-256 499009715f4d19b8371592bc39be01e7997070b5ede484a86368f5c3f39c5eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b19fc9ca256bd28bec64e83f1693d53fb18fba490675a7f655ea71739e120175
MD5 9fd964667fd6b1f8a9becfcd0ccd23bb
BLAKE2b-256 13c1f118f9b8daf7350ddaaffe63ac71b01762b4804d9380776caf7af0ad9ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4f20db2a63362e647cd47349330560c2241ab3b9e7955e61663a04468f4823c
MD5 6fba275810caf35fcb104b37822da540
BLAKE2b-256 3b15c1e2d96e0afc25f962095d62dc0a6a5f6f77c774f4ce469802ddd0be52ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4e44afb70b8791f64e49c18def5a520bb04f574e9063432a86c806374e75c704
MD5 0f6c8cd92bb0842c034b0dbff1163943
BLAKE2b-256 a0cdc4fe98fc3514af5ca5c251bcc5072673af0f4ae13414e54670698515a445

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caab0c0c22f9542286ec89ad79ca37d26dee1af63a3a8a069f4ea8c5404d1fdf
MD5 74fd339f5e2cbdbe81a7907eb3509607
BLAKE2b-256 011790bc08b4a3c466bab6e38b7ac6b1748c491451291c95fd860e12b339e06a

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e16757b1ef1addaffa814670a7906fa7d0f05f7e4c2caaefe20d27fe1e59c161
MD5 e8afdb551ec75d827b34c826f099ed67
BLAKE2b-256 5b6717ac0e0ff8a619c4a48c7b0f87287dd6005cbefa76063e725e4b682e9823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2ead1fd616ed680e2bad2c3c8d0830117a0fe36ff1ab87bf59fd2a2c0cd8a3c
MD5 5f1f24f82d430940f62d911cfa002cbc
BLAKE2b-256 80517c1dfb81e4d863db9870a9acbf184af05313451a46bf676abe3fd62260d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 43.9 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb2268ed1120d30cd850d2c45674c510b64c2234097ad6b95075a7efcf4ecf52
MD5 796e8b80c356929422b746a74e066618
BLAKE2b-256 0ad7e361d7710eee978a2429373f19eac6306585fafeba99c0aaa13cf1c331c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 41.4 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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 09b775f416708ba122751abba74e55139050d96f2b5b29071bd06bbc22ae8848
MD5 9f65ad376cf3ff90243961293f9f467d
BLAKE2b-256 a200a81e983078de4efad6e63d5226c7afaad86819b7781ba6bf18b15227f03e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 94b70630ec4e1c3e98f1f2863ff45a41803c56168675bedc96216e5e860a1c15
MD5 3f8330d8b4208a1039c502e430e1de49
BLAKE2b-256 a4061af8fdc62505a8679775ff9c66b07453102bca5b7a68edcbc5f4f1355fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 62f7672ea1bbe80e590258513c5e243d3dddb8ef647d8097a588768d1a3b4365
MD5 8aa517f91b53af3d1b38f5b9bf3d314d
BLAKE2b-256 752e8b457cbf100fc4b3aafffddddeb093b6277e61302dcd9161032600093574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d54a4b46fbd21811a5ef99037c2347bf69e7a66dc3bece70599df24ec34b0a95
MD5 e91b0a3e54a21924ca4417c8a347fbc1
BLAKE2b-256 edd569a1d92685f7bcd7977559c82508ec4dddf8bee647f90001b86736e3e1b5

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 628fe628b631b27a5ffc6b097b9d0b87cd4178320e640418e8d6261858205ef7
MD5 bf681fbf5542a609b6ab8a2503ffe689
BLAKE2b-256 d95476839e1a1541a2dfd873d2f9def8ddb0b173aa88fe3e3a4c739f84ac204e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2a141f1e78a7348c6012fad2758d5748baad00683372814069148a31bbfbe1a
MD5 ddf7acb44e85fff5c5707772be38ba57
BLAKE2b-256 df492de22ae74db466b2261ab385136f5e047f1bbdb8fff292c23c67e36b9852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dceda41feeac1b621b3486966616d2372e6cea734b7ba6e5f6cff6905754b3ca
MD5 c9c753c063b0bc4e8377db7eb698686b
BLAKE2b-256 34350d2c373f58d2036fb1e5c300292a8e4682f49f44bcde12283a8d7f72f408

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 44.3 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9d222198b926ab3a690cb80aca234ea033bcbf0e5914e7d937bfe18c99f5e509
MD5 d947cafcb81d26bfae466a56bb9e719a
BLAKE2b-256 e07c6d373999052046a9e56481c03a9528be7b9b4962391f184be51255359cf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 41.8 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.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d131a0abdbfa6fa84b9d11cc0aa9112eac156daf1f3973de724e4d23b3a0ef94
MD5 4f38d7a430919d09cb45d617fe02083f
BLAKE2b-256 5f1dfb75ad1c6abaf00f8219beef3403f4f13d1f9dd0c2505e3bd5eabaf5200d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d5305619a667d7a4cc2020807a1290abee9b01321b1f4e2b057247eb282810b8
MD5 6d130cd85464de9477fae78b761783ff
BLAKE2b-256 1bc1a0bb1fe6754b04131f2ad2dacb4bb42ad47f4ead689f8213acaeafac5739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c05117198a6a3f1151a20aac925199013ec040878c73553d9cda11d5a7d645e5
MD5 448a183864940d28f3ef9c2efd8cc392
BLAKE2b-256 3a87a8f342e15bbaed8fc39c535c903222e85b31758eb0b44d35f654aa60cc1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be42af96bd0b44064ef3ecc5705314268f94fb223371da270ea36608e999f918
MD5 8159602a7a4746249415673bf7a0a324
BLAKE2b-256 bc6a3a4be7dc3fb29982ca953c1d3a3210bf36b546cf6b0047f88b2971a1fc2e

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbf45377fafc58f4d4c2db011c0e04c23813ff4e992329367dcaa5b627a22c60
MD5 cd9f0d69d00de6649bb22a903cb804b0
BLAKE2b-256 6adc8071e97b659c934596318c83996d4f8c3de5733a599d1170e6753058d1b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc75d7da72f54bb06b530af2eb4704ff37d6d723d3a451417810f559dab33717
MD5 cdabd286592047abbcb6721d7a80548d
BLAKE2b-256 21b5d621bac4660a5b3a2b106a69fc08f698ba91de3c13017b1727a7dc793a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72b4b2674ac6c1baea16b5ba9a3b9460168306abd5d0cbbb0c1d84ecfa35b752
MD5 bf56809a7664abe2a75a3da2eb6a7d05
BLAKE2b-256 031303b59904f4ef0fdec0dd502181225d522f461233c65834c0d0728e5be821

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 44.4 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 df754eef8ef97d85e77bc5045f7760bf47f78adcbb81acc22a73832b02a3b1b0
MD5 a4269cab8837520c138632b7e8a46481
BLAKE2b-256 d827cebea998413350af8143e20c7ad9c2c27bd332d964576642afdbde8af8a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 42.1 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.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6605876528548da589bdfe773d8653a05ef5413a401011baeb59cced8e10355c
MD5 feeab55588ea66643e1194e87d2d012e
BLAKE2b-256 0a8421e157c76c09e2388dff0790d5de902038b6f741040a05a84176e03b1161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f13dcb86bad6b03a797e3453faa351f54991c6b31d0ae245a1f5653f2feb8b2
MD5 0a20bde8e102e4992c9020427e33afd7
BLAKE2b-256 7f9911884a88a638c9d6279fd6d59acb46e57c80c816601d88cd19bc0e040f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f698b07af7d4abbf044f48e66bb2206dc9ed2d7d2faccdd923e82a3c62f239df
MD5 2978d0bd4722b4ef37864c03088d4ab6
BLAKE2b-256 306d83671d8b41477f52f29200b6359459b37969487bb70dee3ed8577813255b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20a1abee26b2188de2502f5bb28caa847040f0d157f9858db0a63b04880598ec
MD5 36beaeab553f9b7eaa8a58bf517a6417
BLAKE2b-256 c72dbae58ffdbdbee1a2c1420966f15f6b09c4e167a3ddaeba6ff306113c7a43

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b925ea6b36b2ca0309d5b923d174f9e546debcc2dc97ee6b1d558fca13833a5d
MD5 004c700d9fe7ff6b5f1ee4992c678ddd
BLAKE2b-256 90faee6bb80672b243507908ced7bc6dae61bf4e31b18dc89a96004f99ce9980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32e1c6b5a44f0101867c90eccf20d01cd1cf973246b12c65301544efb00b77bd
MD5 fcaf0b75241c95fd07abd1bdeabc5ebf
BLAKE2b-256 62ed72e2255bcc7f9559b424ef203f86934d6fffed1a1753222b2468074ca621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 decf006f6c82e3871434b4e2fa42cbcff5f710bfd1d4205dc4bfa288fea486bd
MD5 db1e50aed0c54ea49d365687ec2835df
BLAKE2b-256 b6fe73787f6b372ec5ac6eb4b612a91c7fee329bb0577bd03340bae20c79cd84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 45.0 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.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1b1acce76f1a7736f42224b0c64e70b97ace8bf98078245084aaebb3a5c3c0d8
MD5 7f7f940624df769fab8dc7887b5c9e35
BLAKE2b-256 8a7d9648542580c22e32a6baa89b63c30473df901a92625d2ea4f1819d417fd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 42.8 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.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d0dda1b4b69195170554f83b806395d11164cc70861f9129941d36fd3936dcda
MD5 e2b88c6eb2dda28c3472a57bb9804695
BLAKE2b-256 a0ef300d0b296c7fe109dac85a2379bd95c531bd9ec9e2026abdf403f0e8c5d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b4909d60a0d78f669c3bf59143ec9739e811081b6c498fc3df619a76ec8c916
MD5 58874269df80511cefb0b8195ac0c83a
BLAKE2b-256 92571ca028fbc7b0edb1a25f7a831676f97a45292a95b8c6d8b4454b07eaf2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 60f5360859e1ad9742dfe9fec2bde52c5d96de27e3ab0418bfffaef7b9fabbdb
MD5 a51d6100dda42a7abdb36f9fd3f1bab0
BLAKE2b-256 6f9073322ef20857eee2574dc0c93845c50f669e95b5a4bd1e7e98d4ad397425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98c37d7c31075c3392a83a67ea3ce073e130f9458165d4e290c2d37fe9f0a192
MD5 63d0152f6491a0e2452a50fa5aaa904c
BLAKE2b-256 54d12f2aaa74c7adf65d003322abfefb888aa61e2bd6473da81d2b9ce72ba3cc

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15e1e380605a60854dfe002341421bbf659149fba4e4553342f7d5293b29fd87
MD5 593ee6d9a1b65571eaad7ea051ba9d4c
BLAKE2b-256 df028c7b81d19f28cee07d9f92f5bf9e177af69c71b5bf194545744dbacd3025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe94a020d058fc8e32850e65e9aee4507ca8fe2ee3916b56a8966cb6b4961c82
MD5 a0da17ca1813b655eae2dec1525a3556
BLAKE2b-256 91e210fe8d7912a2ef94809b79dab3a783f4a8c5fe250f99c1fbc95346962d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b97fc2992fdcb3c9918ae9b3bb049b080e06c7b53e3e761d1ff0b300163c2c0
MD5 5f7fcfe3dc09fe0820190f1d5bb8cf0e
BLAKE2b-256 53b6d2ef711dff1a62181efe89d2ef710da55f026c1f4673b4c2e5707a084d80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 45.2 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.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 05447a1e78e1fc0f1ec392692cf0dcf03f6086dc70532901e085baf853ad5a23
MD5 820a6c7951d253bd950392fde91e19c9
BLAKE2b-256 752f285ce0bc03642c428c78187856f67b957f1ef9936aed9514b9d5fce6290d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 42.9 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.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ac9b9512efc503fb293bedc5b866b8635f18009b907a213ebe8ab31d88cbf058
MD5 67c741d781c354cceacd367c5580eda6
BLAKE2b-256 4adabbb66d6efbb051bb87aee7015f472451e21c0645b4cf56d0fcfba0d41d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49d60ef58299468ea2fde9e6fadf5dde078c190cf49f77a5358b99fbd6d3d065
MD5 6ddc7bdfb5d8fbde5aa7c41e1b97fe87
BLAKE2b-256 529c347c2f95093c32c7eaebfc0ec5799ab6a5d4c140beee776cd63f31a96b79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b11f2eae94b144eb849e98b330c7ea940bfd5fcfc6d5a30c63c44ac4957009ad
MD5 6a28ed66f717e04d7928c73442ec0f20
BLAKE2b-256 d220cf5c84c49e9224848c6ab458529dcca696456f6843ba815c61aab4518a50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3000a3aa692834700c94de38acd6bf5149cbf2fe6df8609916a8aa58bc735df
MD5 d88e806f206cc85f6580b8198003a320
BLAKE2b-256 9d1036a8790fda8708f9f1342ca186e8851200279039ee6a745ff29663294640

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b18745425dc6673f205b91c6fefbb1b1e1034c8a69c5de9ab3510918351403b
MD5 c4a023bdf66ff40f00a7753cee6348a4
BLAKE2b-256 bf7edb6b53b3e8d2c870aa17ab801b8867c9b19d0300a756cd03a89c61a8b577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b8ab3b2dba6f4284cee4c60cc04ecf9aee9e4e28a9468caf94c1cfffff10761
MD5 2445a4198b5b63ae9c84cead96ae1c14
BLAKE2b-256 1cd8a718a8daecc860889083cb8b709878e189afb4e5268b5258726f59b95ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3e8128b3e4933f60914026c51263d2cf80f522d89021fcfbb12f33cf0c4ce36
MD5 f680c4bd8e1604a56b350d95314fb466
BLAKE2b-256 e90e5273b97359538f6a72c38a71ddfc9664f5f309c0c6ee2579210ad86d74e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 45.6 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.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 afd6419ee09d984d16eab160c47ac4c67bc727aaf5614af734b8cca7a83219b6
MD5 814bf9c48ae625e7d46ef403268b61d1
BLAKE2b-256 42963d94a2747be638b2b805cb1a34542cafb5042cb85c09f9b05530a787df84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 42.9 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.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 86591842a45092ea058c90e39b574b2072071705add69d3ea1a163c3752fc020
MD5 3933398638df89ebddca7e49ba167cb6
BLAKE2b-256 c51e6c983c7a6866fa4fae91b8d76e3b16eab476df082ca14eb22b7bc527172a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0b5615d246683a8784380ac30e2d6c59a21156243144877d361d99de5565b623
MD5 6d78eda91b31b2e9c73504372dafdf9d
BLAKE2b-256 de91c2167ff0405830752dcb95dc62c0df2384621a7681c29371358b5206e7a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 727e483ded2420868b515ef26d7e3d8b10c6066e4021f6469695946ebe226c01
MD5 58a684938275063e46bbe72cea19ed72
BLAKE2b-256 228a718f53f4a444363d7769556e3560ae6c53f0da45a93da635be7861284d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a7e02cd11c83e4d0486f98c84ea87d0e86df829b913d2c72d7f2dc7353ad146
MD5 1d1c0be4a9ccdd42e8ddcd778936c194
BLAKE2b-256 3441915141fc26f0bc1f65207dcf3b0ab770bf4e1bbf7e612bfbe6b00be0f3f8

See more details on using hashes here.

File details

Details for the file anycrc-0.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-0.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c7b3679ac384006eac1ba7a16079919736d69fd4ae3a803b18058bf747b273a
MD5 7d1b482d6cdb4705a56cd46f7ae4ea54
BLAKE2b-256 eb44bb6df40596d0761492f98d0626a0e36c84dac9e5f59730cc387aa27e542b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80e5bcaf971be861a469d0f744f3922847833b9a78cc9ee00b1d47333268aec5
MD5 165c37a9d65a5aa4dd0b65dde0d420fa
BLAKE2b-256 e8640e0f1035c0bf416fc5c92fedab01f08e2c9aa71ebabb228ef4bddd7fec3f

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