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() #set to the initial value
>>> crc32.calc(b'Hello ')
3928882368
>>> crc32.calc(b'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 the system's maximum integer width.

For a list of pre-built models, check models.py.

Benchmarks

Calculating the CRC32 for lorem ipsum 10 million times:

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

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

Uploaded Source

Built Distributions

anycrc-0.3.1-pp310-pypy310_pp73-win_amd64.whl (34.9 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.3.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (44.0 kB view details)

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

anycrc-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (49.2 kB view details)

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

anycrc-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (35.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.3.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (37.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.3.1-pp39-pypy39_pp73-win_amd64.whl (34.9 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.3.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.9 kB view details)

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

anycrc-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (49.1 kB view details)

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

anycrc-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (35.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (37.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.3.1-pp38-pypy38_pp73-win_amd64.whl (34.6 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.3.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.4 kB view details)

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

anycrc-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (48.4 kB view details)

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

anycrc-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (34.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

anycrc-0.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (36.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.3.1-pp37-pypy37_pp73-win_amd64.whl (34.5 kB view details)

Uploaded PyPy Windows x86-64

anycrc-0.3.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.5 kB view details)

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

anycrc-0.3.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (48.5 kB view details)

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

anycrc-0.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (36.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

anycrc-0.3.1-cp312-cp312-win_amd64.whl (39.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-0.3.1-cp312-cp312-win32.whl (37.0 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl (225.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

anycrc-0.3.1-cp312-cp312-musllinux_1_1_i686.whl (215.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

anycrc-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (225.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (215.9 kB view details)

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

anycrc-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (43.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-0.3.1-cp312-cp312-macosx_10_9_x86_64.whl (47.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

anycrc-0.3.1-cp311-cp311-win_amd64.whl (39.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-0.3.1-cp311-cp311-win32.whl (37.1 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl (221.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

anycrc-0.3.1-cp311-cp311-musllinux_1_1_i686.whl (214.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

anycrc-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (221.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (213.3 kB view details)

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

anycrc-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (43.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl (46.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-0.3.1-cp310-cp310-win_amd64.whl (39.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-0.3.1-cp310-cp310-win32.whl (37.5 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl (205.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

anycrc-0.3.1-cp310-cp310-musllinux_1_1_i686.whl (203.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

anycrc-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (202.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (199.3 kB view details)

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

anycrc-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (43.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl (46.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-0.3.1-cp39-cp39-win_amd64.whl (40.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-0.3.1-cp39-cp39-win32.whl (38.0 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl (211.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

anycrc-0.3.1-cp39-cp39-musllinux_1_1_i686.whl (208.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

anycrc-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (207.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (204.4 kB view details)

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

anycrc-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (44.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-0.3.1-cp38-cp38-win_amd64.whl (40.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-0.3.1-cp38-cp38-win32.whl (38.1 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl (210.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

anycrc-0.3.1-cp38-cp38-musllinux_1_1_i686.whl (208.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

anycrc-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (205.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (202.2 kB view details)

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

anycrc-0.3.1-cp38-cp38-macosx_11_0_arm64.whl (44.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl (47.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-0.3.1-cp37-cp37m-win_amd64.whl (40.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-0.3.1-cp37-cp37m-win32.whl (38.4 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-0.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl (198.5 kB view details)

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

anycrc-0.3.1-cp37-cp37m-musllinux_1_1_i686.whl (196.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

anycrc-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (197.1 kB view details)

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

anycrc-0.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (193.8 kB view details)

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

anycrc-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl (48.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-0.3.1.tar.gz
  • Upload date:
  • Size: 15.2 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.1.tar.gz
Algorithm Hash digest
SHA256 5a40747bcc72946de2a8fd1dbc815e2fadc6527542bcb93990e169ced4e258ed
MD5 a3cc7f14fd0dcf9b257f4388b9c3e848
BLAKE2b-256 7bc0b1a5e871903a1ad0879103a5539abb03129c1655fa803fbca898e3d6197d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 da93cbb6be4b92985dcf617754846ce8b4c9c3a9cf90cf6f02e005d63657dc99
MD5 b31543ee37a616c4e3dc5e9b66cfe82f
BLAKE2b-256 23fa351cc46793cdf380615d08db4d15d48a1ef8d7de5e6909847a1b5f471d19

See more details on using hashes here.

File details

Details for the file anycrc-0.3.1-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.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d6a6e429a36ad31da6d635845c626ddfaaeeb1b9de6fcf285f745c35ad54269
MD5 e8e8b125d0f8d02829a31c710b45f57d
BLAKE2b-256 0004b1aad9824b91124eec932e40554c74f459beaae2d3bf9988017817d46e5c

See more details on using hashes here.

File details

Details for the file anycrc-0.3.1-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.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58df145654ea32a1b2d69d283663afc4203a61b341ad71870f4a5ef2a19556e7
MD5 ec35b75a1e6ad07616fc30449808ce8e
BLAKE2b-256 395de5e7793c4818b7d24580e340cf7418fad8e2740fc2868adf37f3cd097453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dca50b985132fd70e6eeb5258661cfdcb1065d5abfb389193c3989b6689e7a7
MD5 f5a4b43ad3d17e81ee933660e50b1f27
BLAKE2b-256 b93833ebfec4da87fd618ae7d4da1dc73548eefa2de4ac65d24e661249308564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41c17fa1f3d30261ccb1f5114abb9bb9450d2f21619b01cfcde0a31dbf30afc8
MD5 bfe3272a8d5376c386d4334e33606023
BLAKE2b-256 c96a27d2b983c220549037e3286f1bdfad014c4359fdd442015c50c21c2ca443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 324dce7e3c8e46445393112ced71ae623f5672980d5fb64480f7f4a645a93a09
MD5 42faf6c02da6b1837eaef1db0dab44a8
BLAKE2b-256 6f356f8f9e7fea21f773137ed688393e86504f9d75d36fa29a7766d879a22549

See more details on using hashes here.

File details

Details for the file anycrc-0.3.1-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.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17f9c1eb3ce466adbf624562a98190c18cf51bf52d63cb870ffa34c1efc01a00
MD5 96e507795e0cdb3755f553ac8e103689
BLAKE2b-256 14fe676e3a258ebd71d90e77fbe08ef55c76a8f8e700310cd3eece831f8cbc0d

See more details on using hashes here.

File details

Details for the file anycrc-0.3.1-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.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3d776767ee6f19b30f863d26bd763b31283acd220b5cb66eb23da11383f3bfc
MD5 ec4e5d7b799470de7a8cea4ca26d5744
BLAKE2b-256 49d68a0878760c4fe9f270a0d8c12e42f49bc7fb2b28dcce9967d23862cdab41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ceed69ab0c361c5b487f56030870d08d25e9dbc58bcfe07c04e558c10d6c60b
MD5 45d0efb48d0526f8b8a6e05ece6e0f19
BLAKE2b-256 8640c9743d43ce6640047620a9126778aa722403c75355d526d9d233b36e70a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f64a5ccc78868761169749106895d4ed87f86b1c3bde7437ce7f0281311773e
MD5 66d3bb1e5e29b6087bafc221fe8b7fd5
BLAKE2b-256 070a2a180fba59263ebeadd3646c2dac794350326aabde59882bdb04ed53b2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a95e6c9e2fa556b2ce0f8aa53418ac3bc16ef3dd2cd155f1a129ce7ed007393e
MD5 be56e4c77f8b9ed44d6a105deebee706
BLAKE2b-256 d5b15a56e52d7322f4912db67981a0bc8ae41039257679c09f4ad1f8d4363524

See more details on using hashes here.

File details

Details for the file anycrc-0.3.1-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.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 496c7496b1639a9a986b7db29011e291b56681db09ce359f17b977a260dbb161
MD5 8d837dc4cc088b5056d5a85c8bc1b56a
BLAKE2b-256 66e12db2b01a2694852f9f7286effb206f32098c1eec9bbf1fffb0419878e532

See more details on using hashes here.

File details

Details for the file anycrc-0.3.1-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.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f801db9a3fab300e252982767e54df5b7fbda0bbe0fb8287f376f7b1cf99ac17
MD5 445328d5b8667f089d2975c3a713d56c
BLAKE2b-256 10ed91649bf187bd3e00d26f6e8f8e8971a31fed0d7bb6aa1165a717007f4be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 026118df9c2110a28940a0a49356de2c9684d85e3bb52b5006d8c24cf6446c7f
MD5 fdf42b1e214764c2378dccc65b7f309c
BLAKE2b-256 75c4e62d4234850d8bca7162c0c886ffe524da9c03d5401d81f0cf1934541d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d61a685a1e12ba19f4d5835540f5e13b9a43d31ab383ccd74fd5a2bf6abfc8d
MD5 54f4ddcdf0cec7423b67c094cbd9d7f9
BLAKE2b-256 798adb515fadfefcf82aa3ccf82da1381cd2161123b60a05fee9829d3ba95d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a122902b0c6994547c80759efbc489aa7385cdee0adb9b4926deb13c3ca2d0f9
MD5 1204fc1a48c80b86b8239871ec170639
BLAKE2b-256 64cd572918f3e710bd2cd05b1de2d5f6783c95d23988208cba46574f650085ac

See more details on using hashes here.

File details

Details for the file anycrc-0.3.1-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.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb009a623245a84fb27e742887fcaee412e8e5eaef7d4309b3616f91e99a82f8
MD5 af5b086d4b8dec70ee9b93d6d02add0d
BLAKE2b-256 18bc39c7bc478194ee9411c719373cfd920ffeb56353c6e09d309d2c3162c300

See more details on using hashes here.

File details

Details for the file anycrc-0.3.1-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.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b3ddfaf931c2887e95fa85ab9db3e61d70b23c22a299e3fa0c1d6951e0a5e8e
MD5 21ff7d30404b7c5cb1cc6d0e1f3df7b9
BLAKE2b-256 c8275f2920c31161cffaa91ae6b37236e26817d4273446f6d64fcc8c4fba002e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdeccdfc6128523cdd0abadf98de290776bd80e8302d1b05996fc731ea114d57
MD5 36065278e362584645323cf2e9accad8
BLAKE2b-256 ad7cbe0bacc2ee98ff610994eba4258d303d5ddbf1f61f0107b65322399a714e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 39.4 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 790ee7a7923ff7a51c66276670fa00f4f75ccb2df98c2314658148a46dc7aac4
MD5 6bab8c37910e2db8c688c0f5d6c70a06
BLAKE2b-256 f2b3be3ff4433ab2ec6d4f44890ce898d2522b8071d8fc9679ebc19a17eb6d03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 37.0 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2020f2688dfc89b8a095cf4e4441b9e42061de2af8a45706fda52dfb5678ca30
MD5 fbc63dc462ac27f180fb9598f3066639
BLAKE2b-256 2e7218e6fb82b56fa156697e9404eec6ff5eedf9359785fa89cb628833c31164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 de5ad73bd2ef176c4bb10518a2dea73743021d06d61e9abb3a07f4b0407c08c2
MD5 a84ee18bb45c54bfe50b88be700ee6a0
BLAKE2b-256 23d8636a774009d05d970ecbae2d334c424a348aa8e51fbe03e487aa770ce805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 71da92788d0164aada4546c6e1650f9dd3c4c3e37a831c2f9cff393a5de23c1e
MD5 1a956afd058153ddcd59786d2321cc14
BLAKE2b-256 923c0f8acbabe364d1e2d60ab8644fb00e07cfe439abefe05e9187e70158607a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46d65b80efebb0ca7f7d01f9d1796fe6bac2db4b2ea7368bdc8cd2f5cbb4890c
MD5 4cef9803e8461ba6518912bcc95f3940
BLAKE2b-256 3429573aa738fb2d2172bfb9ce65ea9b6caeb02c4818702ac176007842718979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7cc01ee1e7bb0644eae96d25f6877e16869d4759c6962eddd818bdc82bc05556
MD5 5b6ff13efda961413a09e1db9f0d6c12
BLAKE2b-256 0010ffb3ea6a032c36879ef531d8677fcecb14dd9f204f5840556cf4de7bce69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b4ce4cc469f09d128826c1872fb49795278648891918ac2a624af57c62f1eb2
MD5 cf203b89e520309e4d0fe87b063e4498
BLAKE2b-256 62afcc6c3d7908f6d885117fc22fe7b5de764139ac89b9b56ce5020f4a52b1e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f35a528a95dfc4ac8e9cbbcbafc2133a82c1f6e6f82cdc500a2c57600505b28
MD5 09ced6bbdc56d0b96da14f81644b29fc
BLAKE2b-256 1d914b0d46fd3644cc10bcb0b4a774c786a1921e7f90c07905b5dfdbf770fdeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 39.4 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 749faaf2c47cc73f237c11024de23482f45834a70483d8dad6cc4eec76fc9d71
MD5 44f02d388a06b29cc663eaf5eb199957
BLAKE2b-256 a6a55a4fba6f28e8067abbd79ff27a92f064e7c37e271ff3d4ac388dbbc4f235

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 37.1 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 66b86fa85206405e3f0a1411f9057e56b38e5a9bdd65fd63bafa3ad34ffd0bab
MD5 8e1ba4a00e713332b394583402d1ad41
BLAKE2b-256 9ed74705d813f21042aedaba6e66d95d8059bcf36ee6abbc2b8d4aab04344b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc3c36ea78e836acd83336226faba80313e63321549b6f58004615d272ceb70c
MD5 11153dee9d43cef91b56495e9fd98084
BLAKE2b-256 f2d7a5c1aa2e97f9e4f8320831857b48787c67b049ec26f4553e958a4752e50e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5f2d32dbb331c450fa374c28b561387f99ae5aad093220620119a4c105af9cbc
MD5 3fd59f7b11f87f3ed4ad246632bdbff8
BLAKE2b-256 9b048b7b44343d84c7e3247014cd07f28229a717a6d85d876354173b9f25e6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1e96e020e64f7e6ef8d9ece5b38fe8d47aabbb970cee961ecb3b07f258ed5da
MD5 141a249268ffa049c81633ab38a42dc3
BLAKE2b-256 b2ec0c96d1d9dc75d0daa2a5deed5d47aa1d42eba202c15dfa372f73bebe9e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e124fd95ab1d3eb3a287842bbd7ad29b2a0ba1f90e537d2414ac90d694920749
MD5 a48c2831d65ddcfa3f613fc654dd3abf
BLAKE2b-256 0bd6153474d048b8d37e51213e1e1c14ddb593d52848569b3d7b7984111e00e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85f6c27e474bec2f4b515843a530a7fd43c0afff7c8e5d7e00e45a524441c455
MD5 877cae90e0762a0dabc21b1c4790a16a
BLAKE2b-256 e27b69d31107671f17a549f0a27eb211f547eb1e3e55671671645485646567f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cc6357d9afa4b75a245de06da7712bac2c4e0b0e5718e078c73e889dc86e3be
MD5 375d74a45779b5657719a0d6bae80a00
BLAKE2b-256 693e4c313b5d26740a192ceb074729f2317384669ff49839d61fad00ca5c1f70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 39.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.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 52f8977b43802699e3d57fbe595fe01f7b305f5396d0b7eb7870d7b82aa540d1
MD5 1f1eb3ae8592354d694e87a2995a8d1c
BLAKE2b-256 123c8b6a7f42e54158e9dc25e3ff453014792212bddeb6ab5196ebf0a97658bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 37.5 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6cc02476a1ee4f608723b33bab62f85af8d1fb27b73eae416495251af170839e
MD5 1d7fcdf1dcefa7634eb54985061aeb37
BLAKE2b-256 1c14b348f5e965e297488b5d40251e1fbe5fc64e7aace20a24ca100b9ab2a10f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5cc0a01d5663cabf59264d23ba3e21cc9863d0ed6ac9ec9699f46f7e09ac84ef
MD5 3ebbd7ca9d94067750bdd88cbc7bbe98
BLAKE2b-256 58a727b0a3d5d7ff50f3bbff3a16db917719cbadba3b659b3554cabb1f8c8b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0b7d6fc1414e0229ee214beb2784a15201235c48e6193117b0a9f5ed8b489e6a
MD5 7bb1e61467bf6193422f2116aa520db4
BLAKE2b-256 ade3ec626c4e865f04e21957540c65a6bca5f6c1491e1df53ad02b8087844172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3190e416de9f8dc15d1f2e579631ae2422e26602b427095232b78db19d5825ab
MD5 71ea24df537fbff8ebf318ed8cd46f17
BLAKE2b-256 9a31373d4079d9cc86339c9e8ed2fe1581f4e164079a90fd6771dc0ee88ade4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac3c507f69a52cfc24c67d3eb68f999b137a7dfb74163cd3ffbb3a49181fce7d
MD5 b6e331d93cebae10991a61af04f8fe0f
BLAKE2b-256 d675c63df9d0a88d73ad27449c287e13efae292e787507ad57db4b1c147c15c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cce02822bb3db7510b32067da5a4dc508fb8bbffc62a61377bdc9a3c83ea584
MD5 4672b76b5c2a76e5f405b715a116d7c2
BLAKE2b-256 168ed350fe68f7485719872a9bdd6499240ae0e7dce2bc17bfc27ee1ef156bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8dd964714669e3a5730423b612646939253f994550eed3573edf3ddc153a971c
MD5 76d5f960b1d33480f60b3496dbc50972
BLAKE2b-256 5505862ee8a468b02ee60098ef721a31a3880f0daef74ed226e1eb6cca31c44f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 40.1 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b116e26db010301b608dc604d334127b58b58e2dcf25bb26762095a96ee4e88
MD5 bdd4fddee6a09f78648bec37a2d9b01a
BLAKE2b-256 9d856923e59933ff27e682a61bb3fca70c8ec6b74108afa2f0c72fce4cf736dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 38.0 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 aa3ab96516975f62e07c635a55a2556f094bbc4283b37b4d77795556640cceeb
MD5 2e9512364a51697376a7a6563bd90ea4
BLAKE2b-256 7db1f8e4d1b80c28a23a5966a76ef5e0e520a64679a25727769e03124e846800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 287d2ea1780a73ed2219cd2d0d7188f5df11f9e953bc210aaf453240d6730387
MD5 558cb663f6445d0b0ecf32488e356516
BLAKE2b-256 2d892fcca1fa001e0499e31ba4e163d15c65fc440fd3314f9a1c7b3ce15d4cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7211205d97bbdd65f361e75a2fcdd2369b19716a4b12f98cbc9704ec6d0ba5aa
MD5 8ac0fab5a4e826dcf3fcd79324728ed8
BLAKE2b-256 3e69e7f2333f62aaa01f61c22dce6fed9e896f6525f44537b5b0f2f73e92620b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85b0f983a582543cb226c5c27bec3656e39b05272bf517ea18beb8e35d131f5e
MD5 cb724c4afe0743e2134ab779ae8cd285
BLAKE2b-256 cc41347a823867c00758f17550bde5d75f9eae2b49c8725f10a2996dd17d5c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f141440b038977b9802d38deb2758fac7e891233f90f49b573eaa460aee680d
MD5 243d5d0f9e070608ea0633049216e5fd
BLAKE2b-256 f27f1175fb62b047185f65bc579c9f74aa01205cac665293431b13c5a1167e4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3522edaf7a3e708eb8dd8c7dbd8cdcfc530e32fd419ee73e1c85c9b9c71cbe13
MD5 b23cf1df645d5b592d45b41d3d1f7478
BLAKE2b-256 a283c6785f18b58583b2def9f11fca0b0af78730f1fa6c89625350aaf20ac06f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06a76830546f94b8b65b139f4fd9fbf0feed42088621ae8dc8a8f88c02d561f9
MD5 063e2043ae5b6b1bc5f0307466691049
BLAKE2b-256 d76b56df20ca492256517662635a74e07032e26566196b6ff7910e0f311ef661

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 40.3 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7a01eaf869f352c6838c97827442571f06c2657cc08adad48243c87aa11c7ef4
MD5 d652367bff27b8670217ba0de9e8735e
BLAKE2b-256 320653db9e7d06d6e3057d28c4c8c511b96370034dfe75a47fe0263f36486d91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 38.1 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3402e644727d8a190a33203733bd7cbe2c14ef6338e51617f11ba5a505849e7c
MD5 7d95f95bc91e4ac682c9418c39e34092
BLAKE2b-256 65424b77f840ba3dcd0d46d1e1bd6c12a1ae89efac8e1733de7039c07af1f1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 040c22dee081c944419adfdff194e86a95109949f27659727f958c7c50d71498
MD5 7f3f2565c8f9de5bb6d0345b0576e395
BLAKE2b-256 b8f25e4fdfadf8ce5342984118524e9fc08c30d36a244afb7a52f52a111b818e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3896630bc4fa98102f088f9f2fab750d7a39b0687ea418d87ea5d5ffb7b464e7
MD5 e567733b74575d5d452ff644d524ae75
BLAKE2b-256 a46f9a659b1a21e07baf0ecd4a18522f03ea5fb2f487c9baf147aa0b7de42922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2ef9bfa4ccce89f291c76c72dc339a1d19156fdc3fd26e96a77d72fb78050cf
MD5 24354b584edfa8c83f294fd9569bed6d
BLAKE2b-256 36dbd84f571290698aff4a07b0e85bbd137cd15ceb954158a36df26853cac9de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d17fa394656bbb85d675ef90fa560bd211848b0ac1068aa6aadd23269b20cb2
MD5 df20a18ea7c0c86118221cae983531a3
BLAKE2b-256 39a62c3c9a4a2a08c4adc07d6d1c8a2201954d9d9e0596fc49af6987affa502f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2408f5e0317727dc24986d8bf830f265d0762bf17dd5d6419f205e9b4670258
MD5 a772e6d4902663fd2236105a1fbc9f86
BLAKE2b-256 e1e34d25a9a836e7c062a8daf6170616517abb9364737fccfba85a93b2823e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a91b86ef9e20b4201a5e72b965dfd526dad1729147ddbe783dfb063edf1a6379
MD5 0c25115ab0ff533d739cfb1619bdb57e
BLAKE2b-256 f3e98f62c29647185309ab874e7c435e596a300550c6c7935b7206c0395492a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 40.5 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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c53f7e7091fe05e423567e5327ec142d6f826d5b76966deca0a51a6f2603d81b
MD5 e1ba291a196ac2885ba4974dafa64c76
BLAKE2b-256 31e7511f0596804011fedee34e1ff9e6e79daa35dad9d87fdf3315a47d667671

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-0.3.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 38.4 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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4ee06e148553ecb8eb7d3d6442c3090e5cbccef8cc0858f44250e4894d6ca59a
MD5 e4f0587f980c5c7b341b9887098ad827
BLAKE2b-256 7a0a4a397b595e3aedd6b26b2b959863a599a5e35d399d4038eae308d7854c3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48dbb4e671e07ac6cb896e0fc1c1ae339660fef71e1266fdef173a0d00fde212
MD5 7b80a4880e9908fcca8cbf99cc190b29
BLAKE2b-256 7a62ebc44b14a3ad94afb1b5078bdd3a4a21cbeb9ce6effd9ca03c753fef681a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3d277cfc8e9d0f3a5ddc6bec33cba3cee12015add30c728ae4feb6b6e494af38
MD5 33debed5ba4e3b716d0c7905a64918e7
BLAKE2b-256 f63dd68c75d7732b8076ad808ee7e188703f700ee784331076dc31500bf3e1d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ef821c17b9763db71f317a80910e40751f7b90d04e5bc7159668f23888e5d5f
MD5 c3b3aaeeaf156da7c24148a7faf045fc
BLAKE2b-256 3c2af45cff5587d79c9627614de63c9addf85b30c722fbf1d12215d8e5d459ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa4e9166fa1fe211779d7030b1805aadd80e3c27113e31537bf6ad499f57c1eb
MD5 811f6bd955c4a8107d231238296eb7bd
BLAKE2b-256 ce4fbe5770c3caaf672c925a7a8f6c12d32181f1f970406b42a237d638701fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4491f27839680018b26e155934b816cf34256368cb93f59753de3871b0dd4896
MD5 f8a3c5f1ca7597d74e56cb534db8f5ca
BLAKE2b-256 7a23d393c78e357d60dd19c8b5070da4abb64d1446777cf0575b3c72a99efc77

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