Skip to main content

The fastest Python CRC Library

Project description

This is a Cython module with bindings to the crcany library. It supports calculating CRC hashes of arbitary sizes as well as updating a CRC hash over time.

Installation

pip install anycrc

Usage

Use an existing model:

>>> import anycrc
>>> crc32 = anycrc.Model('CRC32-MPEG-2')
>>> crc32.calc(b'Hello World!')
2498069329

Read the data in chunks:

>>> crc32.update(b'Hello ')
>>> crc32.update(b'World!')
2498069329

The update method changes the internally stored CRC value, while calc doesn't. You can use get to retrieve the CRC value stored within the object:

>>> crc32.get()
2498069329

To specify the starting CRC value:

>>> crc32.set(3788805874)
>>> crc32.calc('World!')
2498069329

To go back to the initial value, use:

>>> crc32.reset()

Create a CRC with specific parameters:

>>> crc32 = anycrc.CRC(width=32, poly=0x04c11db7, init=0xffffffff, refin=False, refout=False, xorout=0x00000000)
>>> crc32.calc('Hello World!')
2498069329

The length of the data can be specified in bits by calling calc_bits or update_bits and passing a bitarray object:

>>> from bitarray import bitarray
>>> crc32 = anycrc.Model('CRC32-MPEG-2')
>>> bits = bitarray()
>>> bits.frombytes(b'Hello World!')
>>> crc32.update_bits(bits[:50])
>>> crc32.update_bits(bits[50:])
2498069329

To use bit lengths with reflected CRCs, create a little endian bitarray object: bitarray(endian='little')

To combine two CRCs, provide the second CRC value along with the length of the CRC's message in bytes:

>>> crc32 = anycrc.Model('CRC32-MPEG-2')
>>> value = crc32.calc(b'World!')
>>> crc32.update(b'Hello ')
>>> crc32.combine(value, len(b'World!'))
2498069329

There is also a combine_bits method where the length argument is expected to be in bits.

For a list of pre-built models, check models.py. To get a list of the models at any time, use the following command:

python -m anycrc models

The maximum supported CRC width is 64 bits.

Benchmark

Module Time Elapsed (s) Speed (GiB/s) Relative
anycrc 0.39 2.36 1.00
zlib 0.48 1.93 1.22
fastcrc 1.50 0.62 3.81
crcmod-plus 1.52 0.61 3.85

Tested on a 10th generation Intel i7 processor.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anycrc-1.2.2.tar.gz (12.0 kB view details)

Uploaded Source

Built Distributions

anycrc-1.2.2-cp313-cp313-win_amd64.whl (90.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

anycrc-1.2.2-cp313-cp313-win32.whl (78.3 kB view details)

Uploaded CPython 3.13 Windows x86

anycrc-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (489.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

anycrc-1.2.2-cp313-cp313-musllinux_1_2_i686.whl (468.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

anycrc-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (504.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

anycrc-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (474.9 kB view details)

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

anycrc-1.2.2-cp313-cp313-macosx_11_0_arm64.whl (90.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

anycrc-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl (96.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

anycrc-1.2.2-cp312-cp312-win_amd64.whl (90.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

anycrc-1.2.2-cp312-cp312-win32.whl (78.5 kB view details)

Uploaded CPython 3.12 Windows x86

anycrc-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (497.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

anycrc-1.2.2-cp312-cp312-musllinux_1_2_i686.whl (477.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

anycrc-1.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anycrc-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (485.3 kB view details)

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

anycrc-1.2.2-cp312-cp312-macosx_11_0_arm64.whl (92.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anycrc-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl (97.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

anycrc-1.2.2-cp311-cp311-win_amd64.whl (90.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

anycrc-1.2.2-cp311-cp311-win32.whl (79.0 kB view details)

Uploaded CPython 3.11 Windows x86

anycrc-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (478.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

anycrc-1.2.2-cp311-cp311-musllinux_1_2_i686.whl (463.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

anycrc-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anycrc-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (455.2 kB view details)

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

anycrc-1.2.2-cp311-cp311-macosx_11_0_arm64.whl (91.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anycrc-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl (97.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

anycrc-1.2.2-cp310-cp310-win_amd64.whl (90.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

anycrc-1.2.2-cp310-cp310-win32.whl (79.4 kB view details)

Uploaded CPython 3.10 Windows x86

anycrc-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (448.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

anycrc-1.2.2-cp310-cp310-musllinux_1_2_i686.whl (434.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

anycrc-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anycrc-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (428.1 kB view details)

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

anycrc-1.2.2-cp310-cp310-macosx_11_0_arm64.whl (91.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anycrc-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl (96.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

anycrc-1.2.2-cp39-cp39-win_amd64.whl (91.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

anycrc-1.2.2-cp39-cp39-win32.whl (79.9 kB view details)

Uploaded CPython 3.9 Windows x86

anycrc-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (450.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

anycrc-1.2.2-cp39-cp39-musllinux_1_2_i686.whl (435.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

anycrc-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anycrc-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (430.1 kB view details)

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

anycrc-1.2.2-cp39-cp39-macosx_11_0_arm64.whl (92.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anycrc-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl (97.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

anycrc-1.2.2-cp38-cp38-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

anycrc-1.2.2-cp38-cp38-win32.whl (79.4 kB view details)

Uploaded CPython 3.8 Windows x86

anycrc-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl (470.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

anycrc-1.2.2-cp38-cp38-musllinux_1_2_i686.whl (447.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

anycrc-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anycrc-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (445.0 kB view details)

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

anycrc-1.2.2-cp38-cp38-macosx_11_0_arm64.whl (92.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

anycrc-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl (97.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

anycrc-1.2.2-cp37-cp37m-win_amd64.whl (90.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

anycrc-1.2.2-cp37-cp37m-win32.whl (79.0 kB view details)

Uploaded CPython 3.7m Windows x86

anycrc-1.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl (426.4 kB view details)

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

anycrc-1.2.2-cp37-cp37m-musllinux_1_2_i686.whl (408.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

anycrc-1.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (434.5 kB view details)

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

anycrc-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (407.8 kB view details)

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

anycrc-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl (96.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: anycrc-1.2.2.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2.tar.gz
Algorithm Hash digest
SHA256 317b5e7f2d659f9d847972f8bd93fc114f23cafd94fdce3a163eff96917a33d7
MD5 95270e9c97f8b2e39b496f7ecaa17481
BLAKE2b-256 a19a4539cfc961bbe837c98a4b00ed271dfaae631cb954b2546de11548511559

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: anycrc-1.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 90.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d776564be29b592c0fa49bf0798a98fe5ed7613c96b4f65dfc817eb1c5e27a02
MD5 2bac5a2aad8dbc8c04e2f0e15d65e13b
BLAKE2b-256 48ab1324e0107b308b83e802658bb45f74a9781be4f732cd02853b1e55f92e2d

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: anycrc-1.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 78.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bd1d3dab61ed556cf92115c99a549c8f905fc5194e1da817478be011478607f4
MD5 903b86b0cd4dbe5fbcf67d5f9e2c01f1
BLAKE2b-256 add8aee53feb42b20333a42e03f75a0f7d982666911d4cd9e40ec3606745f99f

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3196bf4692be9cbc0193ff712e63f3bdf461bf12c9aa3c5cbc44e04cd203075e
MD5 deca15dd8a9c2bdeeccb6c97f7af0820
BLAKE2b-256 8328e5999db1888b186cbe1fb24935f264d0d5773c34f57bf6d2096e44ef4d62

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9064faec5bacff4ef6f41ccac382087f3f1f195b60e098da6edf906f8163f906
MD5 437aa743a97b47ff269cf70109b5ca8d
BLAKE2b-256 a0064266d36958435e18c90a5f9165060c19daaf730f7add76f977e6a3d35280

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0221036634a9e8d1227bb80c1b13712fae8280ff5dfa9e012ef1d7de22f53cec
MD5 e3b413536eca81f2a73adcce95d21d56
BLAKE2b-256 b5044c15909e71b289d13362a5661f3431d07fb7cb5838d102f65dd60b766987

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bebaeed857c9b6900d3aae8131b4d546fdf3487167ff6a9201a3bb83bbf85765
MD5 8557341c87dae9bd3d91c961b2b1a911
BLAKE2b-256 ddf14ce6eb86cca0389782c36bac0c35dcb747f471a059783c09feb09b6792f4

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50cac94ac60dedc894f2ae247565244e356296ba773884dfb6ffbb35ddcdef75
MD5 1a51c096054e2b8724338d317cc921e4
BLAKE2b-256 fbf54d72de7e57a8f129f5ef494723c22895a77b24b76de70b81ac10a1bd53be

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89e4c917ef4d4c29f4ea24ef9acd7edb132a804fea481b0d6d90e31dac025482
MD5 5673f6b4ae425bdb98a7d6f872fc2a2e
BLAKE2b-256 5cf1558ad5d16bede90a6b7d02025d8c6c2a6f9c35a102c1f5f85a5cbcaebf9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 90.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9532d8ccdbbc493f9a36f8e601b6e6b7adcd81f20532987de564be4d021333bf
MD5 b99f665527022fcb1f13a3bc5c12e19a
BLAKE2b-256 6cdbe3b970223711652687120fbc94a180dd6564eda565d19d2e8d1adc133b70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 78.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 28b80ca8d24bc61292fa31792b0ea021ad1db139c4b295e59bd38a056db4cc27
MD5 988cdf4f32358e43fe6c89c67cf6279a
BLAKE2b-256 d67061e5f6021619b00d4bffffc054c3c0875c7c811a9f88fc0c632b05d454e2

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d14f3758a53c6c13ca7f897ed4dfed8853956d5c223f883c0cb8d4ba79891e7a
MD5 9f604e9470704c83a7bf33bca9436517
BLAKE2b-256 516cac59e92c1fdc893644244f69c7862e35041504fdc466689421b865d923b4

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddc164fb1fc2af92deeb7a9e497d8766c5ab0e64fe595b4a074f31a714d6a8b5
MD5 59ba6983067ee73dda40bdf8393ba773
BLAKE2b-256 0a4601f525d05d9098e9cf0d506a78209aae8200e2cc82953866f6128946e9f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10961033e2b244a3017edf183e22a2f9fda905c7c0ff83d471425bcdb9bd9898
MD5 22fcd0e64b8eb04dae9d20f7751dc8ce
BLAKE2b-256 85f26228a5ae9f39c1925e2353fad65de96aad0f32a7420560437e1960745828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c12feb1ce62f41166cfd68a628d4b16c827901cec81a72c7a83c4498e614e579
MD5 34c43bc1e2c93a6314e6f2a80e1f02fb
BLAKE2b-256 38e5e5b293600fe08c6e0b7098a9e462c24d39b0cab25cc6bbd252e7fc17e1f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc503995871e913160f66aadb4264ac21c9564ab19fde76c675a5e610240b470
MD5 d31a1fb6bb262cc5424c35817b90ed6d
BLAKE2b-256 a11be444d424b52faeab8b21e1d210a590b8f0aac7195f70e0d2c9289f8d7ce8

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d084110bef2de2836ab31c0e6819b16fd04f895117bd0a976d297cf56124f8a4
MD5 0286dbed99cb87aedfd5ed8ce3c226f4
BLAKE2b-256 56a70808586176987cba254e1ca1a9b960580b79e4df941d013ab3957737f31a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 90.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 33bd94f3946b3ad7c293dcb1d0df950b4e10a6d20f361fa0ede62f3c2f0e778f
MD5 fde2471a7b89d5eae8695aff2c7ec8fa
BLAKE2b-256 5ab413457417f3f6902bad74c0e558eb38a3fcf19a99ab91ec5c1017995dab50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 79.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 76dba832836db0a312cf6c2b89b6ed7781d7686c96f8d8aa135a17665efb737e
MD5 2525800cda7a79596aba4bba5323c78e
BLAKE2b-256 c9d392403245aab5f8c7884011633b4fdaf1ac8c974bbd1e0f0108b514732f67

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 289968c0cdbd02d7d5b9cd0d24ff634c546921e4ed1795ff03530d7952c3f6e8
MD5 89bef0c2cdef526962bb8b4080094665
BLAKE2b-256 99c9aa2a4e38449d3d69625bcce6bf4642eac1ca060554d0b2d71ba8b46ea0f4

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79437d21422e7fcdce87552e955d807c6d17fc48f8d06ec5ecefe2731a1e2ec1
MD5 fb864495c66bd529dc7aa62904b023c9
BLAKE2b-256 4fa689e9d55f9f7a900026a6960c7a6763d550f3cb1ffd1f726892911510ae66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da451ffd76659ef931ac8ac7a1f8e8072f6f67df612890da0b6a759e518e50a6
MD5 b8ce8c315b613bfa82948c556581659d
BLAKE2b-256 92defb57f72d37fe5c7e7930e1c110cb1b07e0c0897eb7215297f291b618430b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6db777d70a25eb46ebf417b5295709e0497805d1fe52eb621a80f7bb4f88f2b
MD5 f5df07bb6b449dc47e574b67edec9b91
BLAKE2b-256 cb7e83cc7d6f0b6549186c1f3f1fcccf25102caeabafb1f8937a5d172e04b0e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e390d29aeee43ebd893ca6e4d2e03c6a342f4774e48d893cdecf03aa0f648d64
MD5 a178258d0576b5be1806adf7efdc592e
BLAKE2b-256 ff9c35af31a040b159ca159f81d99afd1ce19defa7d782873e2c17ffe0db604f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbfcfa45921345c5bd295fbc2695aa02cda0aa4b751f2542d4963ebdfec48875
MD5 84ce06ee4269c46e31b654fb85669f19
BLAKE2b-256 a867871521f2e250b642add8670376f444553c187f69c5e64fe93055b23f6c07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 90.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 52905464094d580e025b6a7e1729bfc6d639f55a9b823092a82e23b1f15a6fb7
MD5 fa3c7a42672923656d4b2f13300cf70a
BLAKE2b-256 6ece0790161eb094886a02bd59087e73ecc37e926e8ccbdbb8895f574e2ee374

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 79.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2a284ecf6ed96236aea3b06b3c9b6e85dc40d9de3d5817cdef6b2e0189cf8233
MD5 7213f4d6cf2724e0b66957b85101324a
BLAKE2b-256 bd2947c9892685fe222e02f4881227b644481bbfc7817fc869a9817864a61bb8

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cc4df6ad8380f84d708eccf6859f5fa2d16be7db6fd8e6cb1f1a5497ea1175d
MD5 d0414e715625d12724a28a6abbd7ca91
BLAKE2b-256 60ae2460c06ad191126184be94e0b0deac0b6792e25ef579334c711ba842f5ba

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0d79a1f5684530152bc07bab3362580a2497082fe6cc680baf3501f487612c0
MD5 501e71c1393be1dc861f3e739976d4d0
BLAKE2b-256 418cb70d062a91346fe56de910ce725f4ddf14199516230f3c31c0b45fb93e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9cdf48fd4260040e35e23773ccf8fa4b308ed610ef2dee68441be9040214df4
MD5 1c36289f4c75ac687adc074ffb0c2ace
BLAKE2b-256 1f94a377c1b61d63365dc2a53c364c2a9a4a9aaac38efd5f391e014961b8c3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7cfa9f37db3730561ad213302983b2fa00fba9faddaaa8b0a4ac07f22e08b581
MD5 20404b0e63fd76c13ee4de5d4da3d98b
BLAKE2b-256 5f8c11e29134088081d84c7abe674161dd2f3f7162b56a282ae14fe168b9d06e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6e48114049d37978d4f3ebe97b4f0762bb100868ec6a2ee58f47df9e24544d2
MD5 2f57274d141c0458cc8ad2f53b364d71
BLAKE2b-256 9653cd98ac91077fdbcb1e562775eca4b6cdb3cc4235c12631fcece0159dff80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40cebe0dd97e88a7f6c3ce98b663a086f413f0cf55009537c89e891d83c1aa3a
MD5 baa73ef62bd6c9e3805bc3347f246d3f
BLAKE2b-256 1c655ae278ca1fff570833669483765bbe6a417f1c149f2f996554e3b6606b5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 91.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 03af675235043d787188a5e3711528174862e7952c1d273f2e223b7004d210b9
MD5 348c85153154a4a4b26ba61f73dfc312
BLAKE2b-256 be30188fcadf3bac46592d47fa58b52d7e27cd51aa62e2cf659c6f87cadd20de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 79.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0914ed56a3501a5f32c3252fef88e58eb16d34c7c9ccc0bf3aaa966aa6bb2870
MD5 ca193de2621c58c77fb1d40941d46143
BLAKE2b-256 e5336cfe06009654c1ca20186823ec11f76ffd7e56662d84fd0226628ad96ca1

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b70ad40c5f35e6ea0c63cb44861b03a7afcf1cdf699dc9541ee9983dce0e6f7
MD5 4d5cda72b21102c1c56e802af31d436f
BLAKE2b-256 388c8aa7e647799b628abfbe5d551341c0dcc40f0727f756b2363611935a2e8f

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce131329efe079f103859a4e3dcfc61589d7527a327584f0c2d03854a232d813
MD5 17bc0a065935edb8d7121478030602d0
BLAKE2b-256 f91a1878ca04b37b3a0365b6649848e82e086e650b2e67dbf7a351226c0ddcfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bd438e9bfda6467c36ebbd6d363398f1aeecce2fd25cb77e06258f8bfebbd9e
MD5 cee2f2f28791c431f980a382ce2d8c7d
BLAKE2b-256 3233c0fb3c024b5760ed03cc06f6cc7de5953044c7a697237cab76572be1842f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62b4fe7b254caebaea7818ef76e4162f1026ebffd12dd5e2debf61e218b2eaf2
MD5 e4f111cd567925ba3f3c67194a8e401e
BLAKE2b-256 a9c1003f5343c3d25f58b1ced16490632d3e579296541de7e2c802e7980140f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6197b9239727b97e24554412118cf9ef916ab431359926f98991b2d36531170f
MD5 d3c3e3c000ff10d4be15bff12566b94b
BLAKE2b-256 8155d9fecb570f097b7c4f5ee2c5903e411c8e5b25bcd57b2479e7df2e19c058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a149c6e5837b846375f38950c05a0b3ad901babbca142da556683d6753d1c229
MD5 bea1ce7304bae4663ef932ee41c484a2
BLAKE2b-256 a2caecef4ef9d86b60cbb9f98652808cda1338e20c1eda7a19ba4e4f4c25e01c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 90.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 710b21825b8ed4ce0613ff619b94720524a25fbb43c2fe57dc8423ae8bff0830
MD5 ed6719ccc41d98abe0e7e9d7e95e66c6
BLAKE2b-256 ee6d13206d748c7a5f2c187433f4784feb4cda9b7b7d2ef64c034410fa3005e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 79.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c9dda3fbdd5bf46c54858a2af3d865d0170d2f555a5d827df9af64cea7cf8855
MD5 52504146c9b58d159ec181687ae48a55
BLAKE2b-256 1b7721b63a8048229ebcdfa0e36aca2e4657c1fed0215eb28dd98a0706ce371b

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe36a6d33dd243e94438621e52d040af3e28732082f890a3f128762485829a17
MD5 6bfa0ea80815845f717e1c578fcf5ea6
BLAKE2b-256 e4ac25c3a4fc341d71059b9ecd797234ef1073d4b09ee8499904ad3d7f8149db

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbe01195070f6977f08097dbb6b3f49ebae4ecfd4a8902c44a12c0c147d4e500
MD5 ab1aa488fb31c064ff5726541d2ac615
BLAKE2b-256 0a5f69427ea8ec993aeb5d759e98e78e58e5dbeec3c81fab0d1bce901d40bf7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcd5225222e1589694299c3184f5a629e43d9f85ad08a2aa632893a836218913
MD5 e2e14089f93862e2cea8dcc28f6d8de9
BLAKE2b-256 3d827c8bd575c5c48026e18f85e60f8a6b63ea942dff3fd2f11b12ecbd3f5981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71a8829fcdc6cee5caa21bc6a68cc9b52d6348a3e6dc992d39a77c63824d7050
MD5 b7622e7180a5c82b8cddfc98474bacd8
BLAKE2b-256 2f3fac047bd3665233f339471ed15be354688e7ab2b8d2caa513ddc715d31bbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d93923a61aae79dcd3e95389033c7d5b8bf0572e2903702adf21db65c5ad64e
MD5 ab8e4c61fa1a632072f6aa8b3f0e6cad
BLAKE2b-256 4ba79b82160920fa30524bc17937579f69061c85670fe14c12c4e92e8de43c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4775c86d959e020b4e6d695b2aa638e42de74065e3a4060e9e6d7b8295333c6
MD5 cbeb4587557d87782a7485eca3227e88
BLAKE2b-256 64c09694bd89983010bdb634b316c18e3caad2dc38242c412325d7bc201713be

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for anycrc-1.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7dab2a7f21d8c8cf675436b0abae326e691cb3f1abb5ad3b08fc34694e5e4441
MD5 517f741e242914505743a057cbbf1f2f
BLAKE2b-256 bd0bb94e86ef47b64b58c9375580382b4037528ef68f1baf503518c7d50de9bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: anycrc-1.2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 79.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for anycrc-1.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5f90af73ed04e92760bcba292e9f891365af89e7110944bf8ecd3b1cca6667c2
MD5 436455b3f78343cf05860faf99b168b5
BLAKE2b-256 28aa297e6e2df511d7912e557a25f1ef372b27843d177e23ad898c5d08f6da8a

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ca96038ba6285636450b4c750cdf611882e76624ae9d04ff70c5294b355e09c
MD5 4c05220b6f5549215bb00741ba271553
BLAKE2b-256 2802881ae2358c51c2b44693b30b93839523f9069277d327a423d6d804bd1578

See more details on using hashes here.

File details

Details for the file anycrc-1.2.2-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for anycrc-1.2.2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4eec4655559fabc1a5c0ae16b26fb2cacbe00a20685759aa80fd6e7d4c4c75bd
MD5 d6d87e1d34b2f2d0cd38d635ee2c0f7b
BLAKE2b-256 9ff9887e6625d91b0031e7c71b5aed2ff52ff734910eba7cca6e1b6c194d7958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21c3206a9cf39042e6bee68faa7ad677009b6092f986e27ae6b1e034a53589ef
MD5 e864b77cb0c5cfa13f2646387d70c6ee
BLAKE2b-256 e499588dad67decf9e625951518f295625ad0120e89a49eb50a6d4ae9219434d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 272d069343a1825b50303e04085cd4e66733eaf7453aa1fa1d06676885e752ab
MD5 ca5a91732306d985539c84ea03e1d734
BLAKE2b-256 cb78f102c3691d23989a0e3ce795bade6c4661b82b424c23b6a0a8d6364a6da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for anycrc-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4820242d49760ceb7f89ae0b93965ecb7f30f080c02886780372557c5250d29b
MD5 5200f464529b707e95df8fd588b802c3
BLAKE2b-256 974ce37bc7e35ad0c330630d80bf5260da7034839a7b2611070dedd6909da1fe

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