Skip to main content

Python module for SIMD-accelerated CRC32 checksum computation

Project description

pycrc32

PyPI - Version PyPI - Python Version PyPI - License PyPI - Downloads

pycrc32 is a Python module for SIMD-accelerated CRC32 checksum computation.
Big thanks to rust-crc32fast - this project just provides Python bindings for their Rust implementation.

Installation

pip install pycrc32

Usage

from pycrc32 import crc32

data = b"123456789"
print(f"crc32 for {data!r} is {crc32(data)}")

Advanced Checksum Calculation with Hasher

For scenarios that require more flexibility, such as processing large amounts of data or computing the checksum in stages, you can use the Hasher class:

from pycrc32 import Hasher

# Create a new Hasher instance
hasher = Hasher()

# Update the hasher with data chunks
hasher.update(b"123456")
hasher.update(b"789")

# Finalize the computation and get the checksum
checksum = hasher.finalize()
print(f"Checksum: {checksum}")

# Reset the hasher to compute another checksum
hasher.reset()
hasher.update(b"The quick brown fox jumps over the lazy dog")
new_checksum = hasher.finalize()
print(f"New checksum: {new_checksum}")

You can also initialize a Hasher with a specific initial CRC32 state:

initial_crc = 12345678
hasher = Hasher.with_initial(initial_crc)

hasher.update(b"additional data")
final_checksum = hasher.finalize()
print(f"Final checksum with initial state: {final_checksum}")

To combine checksums from different data blocks without needing to concatenate the data, use the combine method:

hasher1 = Hasher()
hasher1.update(b"Data block 1")
checksum1 = hasher1.finalize()

hasher2 = Hasher()
hasher2.update(b"Data block 2")
checksum2 = hasher2.finalize()

# Combine checksums from hasher1 into hasher2
hasher1.combine(hasher2)  # Combine the state of hasher2 into hasher1

# The final checksum after combination
combined_checksum = hasher1.finalize()
print(f"Combined checksum: {combined_checksum}")

Speed

The performance of pycrc32 has been benchmarked on a trusty old Intel i7-8550U using 32MB of random input data. Below is a comparison of the median computation times across different libraries:

Library Median Time (s)
pycrc32 0.002703
zlib 0.019796
fastcrc 0.071426

We reach almost 10x performance improvements compared to the zlib baseline implementation.
See scripts/bench.py for more details.

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

pycrc32-0.3.0.tar.gz (7.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (449.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (474.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (545.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (454.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (317.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (293.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (450.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (473.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (545.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (454.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (448.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (472.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (543.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (453.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (314.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (448.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pycrc32-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (473.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pycrc32-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (544.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (453.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pycrc32-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pycrc32-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pycrc32-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (293.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pycrc32-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (241.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pycrc32-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (248.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pycrc32-0.3.0-cp312-cp312-win_amd64.whl (144.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pycrc32-0.3.0-cp312-cp312-win32.whl (138.9 kB view details)

Uploaded CPython 3.12Windows x86

pycrc32-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (448.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pycrc32-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (473.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pycrc32-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (544.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (453.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pycrc32-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pycrc32-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pycrc32-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (293.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pycrc32-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (241.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pycrc32-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (248.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pycrc32-0.3.0-cp311-cp311-win_amd64.whl (145.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pycrc32-0.3.0-cp311-cp311-win32.whl (139.0 kB view details)

Uploaded CPython 3.11Windows x86

pycrc32-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (449.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pycrc32-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (474.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pycrc32-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (545.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (453.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pycrc32-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pycrc32-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pycrc32-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (293.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pycrc32-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (244.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pycrc32-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pycrc32-0.3.0-cp310-cp310-win_amd64.whl (145.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pycrc32-0.3.0-cp310-cp310-win32.whl (139.0 kB view details)

Uploaded CPython 3.10Windows x86

pycrc32-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (449.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pycrc32-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (474.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pycrc32-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (545.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (453.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pycrc32-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pycrc32-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (317.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pycrc32-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (293.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pycrc32-0.3.0-cp39-cp39-win_amd64.whl (145.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pycrc32-0.3.0-cp39-cp39-win32.whl (139.1 kB view details)

Uploaded CPython 3.9Windows x86

pycrc32-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (450.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pycrc32-0.3.0-cp39-cp39-musllinux_1_2_i686.whl (474.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pycrc32-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl (545.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (454.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pycrc32-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pycrc32-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pycrc32-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (283.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (294.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pycrc32-0.3.0-cp38-cp38-win_amd64.whl (145.6 kB view details)

Uploaded CPython 3.8Windows x86-64

pycrc32-0.3.0-cp38-cp38-win32.whl (139.3 kB view details)

Uploaded CPython 3.8Windows x86

pycrc32-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (450.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pycrc32-0.3.0-cp38-cp38-musllinux_1_2_i686.whl (474.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pycrc32-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl (544.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pycrc32-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (454.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pycrc32-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pycrc32-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pycrc32-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pycrc32-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pycrc32-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pycrc32-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (294.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file pycrc32-0.3.0.tar.gz.

File metadata

  • Download URL: pycrc32-0.3.0.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0.tar.gz
Algorithm Hash digest
SHA256 58d7da2b20a95c90111f6bdd13cef7b6fd9d534d82fae844f690f3c00642c6c9
MD5 169571c2cb24cfd20122a1a63eccaac6
BLAKE2b-256 1df8873c300b113847147bbd553471b54f57e7835ab20029fb1557ee2faf904a

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f7dba447add4076c8b3e524306b2dbfcf3dc524c873aa2b088134217b483b38
MD5 a1469c854f218834d49432e12ab6a9c0
BLAKE2b-256 eb914afad9d8150c31daf8d75444bbbee16794418c3208e2c1c6f1568c73270f

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7418643d74e5724f18d627fe3c38c53ce4e4d23b2a24dd03d2f4a870a47caf7d
MD5 2d495f91173ac22dcb054ea404316583
BLAKE2b-256 5fc07c0acbeefcc0c9932438ebb44be6c7399e88f8521960ef5694f52f503196

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a5bfa6eee14edc384a81fbe68eaa0d50935fd109b4fa8568688d76814d0634e
MD5 1b8e3898de041d0679c6666ba7b79104
BLAKE2b-256 f3ca39eb091cca6e44e4258a41d4537224986a2b062eb93a25a430c32f77ff7a

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e5f4dd06c722925600e3c4317bd19a27d8919e382475068f21fbb259140916c
MD5 fd46d66f4c26e321d5ad6b0b939f475d
BLAKE2b-256 0f64e65b97b5426f57a878c72bf53ba66389a354be7ad23f27bca4ca83b26310

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 785d7af865ea6f6d9a031e4c9958aad7fa391428ff09f011f1410fceeb083e39
MD5 3a95765dc9b318e97745fe765150646b
BLAKE2b-256 58e817aaa4412c20981fe51c5ba3f1e4a0ec889e71ebd5bd89d278bdd4960898

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca9b2dcbbbcf6a014775d8f763b4df15f322f9192a00d377c9460f65db26e961
MD5 5fe3c4bf3cf76defafd0f91184541e95
BLAKE2b-256 d40dab9235d9904f3a2e4db83870abc1691c854c75203908bb2447402e82aa2d

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b114cc5947e0e063a105bed35d2d348d9f545e9d7bd8285ba0b035410c04cefa
MD5 b1cef7acdec709022309848109f324b0
BLAKE2b-256 0dae8dc3da1505ef166378d4ac1c958e3b7a956f1df84b06b7bfedef8724c4c4

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af97dafba8fb077d50ff19b42e0f66864a4840dd875e7e896cee0ea66b45bdb6
MD5 d50d9249c83839330fe21c20d2f0ac56
BLAKE2b-256 c05b292dbddea6262bdd1c019c0387f9672eb737fab0cf9de8047b9da10b0995

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e962ee6c149da27479ca9b53167eb904afe0f5e5e3ee0f06b489f289a0c3c20
MD5 a9cea2a92ad4427fc72d45799f496992
BLAKE2b-256 87e8d1f80504ebd99bef31d0a5f272017aa2762d0f138f3b57e704fc19f18a92

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f7a2ceb5da20633c168fa970262f44cf487bf4f0380b18a759d9f17f4c15a0d
MD5 bef58a734b0c493a4116489851ecb6b4
BLAKE2b-256 949c1b638e15862ebef9172812676f98f28b3ca564c55b9c19317c40fa5a12ad

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd6468aeaa80d8f30d51273550cb61587b77f6efa9de949659c4f875dbed6a8f
MD5 0ce9e0835ee416448fa138520ef0f303
BLAKE2b-256 6ea64a906676020df64f119d613fc65f547cb7a1db99a43430b57aa94017a19e

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94bb0ead797c49c236d3b6bb738bc5f532df5576256ed9049763b7935ee2ede0
MD5 7a1b6063b6c9fefd89d6beeafd332cf0
BLAKE2b-256 fa7a1a5868671c7ad9fbf3cf01ef9337eae67aa27ec48889421f1016ca5624a8

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d7b9574f17ccfe68234e7e464189be13bcce71f460b68769caeedc9011335d3
MD5 444cd2ad0c3ef3c989eaf7e85bcd6291
BLAKE2b-256 efceb0f2d0f38f80b426f9976211180619e17f0184b4c00f510c010399cec731

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 756ff813f4ae4200eba017b02a809d9965b599e7d746b9deec08eb6a3fb1d9fc
MD5 9464f179f45dcf1666e49d8996395380
BLAKE2b-256 10b516e1d3b0487a731a80688024470f34ab281a6dfc2bc41e7486e18a3c5a8d

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b160e88d222e66c668fc456ad882eba8b4faa4f7b6212f74d19f72f6c5e1bd3
MD5 112a1b81cfad49b8fadfe47c26446e3c
BLAKE2b-256 80e79c78ea41b36628cfd1b3ff0f59bbaeca5629277cf37ded7d0032a575161f

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de5d1ca09eff7fd4e3d0b0db7b2ce6772cd54f3f64b56ddde8901d67daa854e1
MD5 de7c927784498b5d858f3c62a969e143
BLAKE2b-256 512c0acc433763d8a0e33c2fc9ee98cd20b3991ca16f6f3ab8b4cb896a509b32

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c503bb8d9d99fb84799bbe74e705e09760ca1a6e6c1489d7c8b21436f0999cda
MD5 48d362a3c636b676d08bda7755a8ab64
BLAKE2b-256 15274c793bea048d6810cb20f602d9185fab82dec5cdf6e83ee66b6a77cd050f

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28a843050c58d3ac2b5827fd7e398fd7dd53b08a946c3e1a7b7a4ca4636284e3
MD5 8d0ee97ab3c304172a7d6eac7473b55f
BLAKE2b-256 dbd77acd40ba2df28d69a49b4433eb6cd27b53a1246caaf373a3b4769845fd41

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0b69fe1a5a979546c0d49e5f7bdf220a0bedfdb29dd09da2124f6eca2471b4e
MD5 90c0fc8051f5c165062e440ccdde91be
BLAKE2b-256 8b97a8befe6a1f65896dc4ea9a27e3331c6190a2785e2d7a2da61c654b1a03e8

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12f6087135db968701cb8705b11973cbd7f88944cf3205297f8b726892a8f3ba
MD5 a0cfdbe49583b0198e16075bdf5055ce
BLAKE2b-256 42803a410dc2849905eba60d57dbe02796e4501d5a23da15ece44d0cd14260fa

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8b329574f22e1d9ebb56817ad8e0e91ef4225c1f82b2baa1d15b361e0ac0517
MD5 a151f515b95804ab41b07c8411c373ce
BLAKE2b-256 63541b0a6abfaaa53668cf7b9c0c31289190b7d5a23fe66e89f0ea46f3e9cced

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b431338cdc575d95393bb8417dce6168f009822035a2bc044bd24c28120b803
MD5 0f07f26e62b1fb45aae0bc6bdbbd91ec
BLAKE2b-256 19741eb51cad6ae468aaf4faf98a0a7880e5fc2c6a9841b0d562ee1feaa56632

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f0b0d1ea5febe7e16ff8b1bc94e3f118138fa07ea9363b610d64a2713674b6c
MD5 6d9a9ffc07c4f0431604561c14ed55d3
BLAKE2b-256 18d4fb116be425ae5d10bc0db11f12df25ba1c55b8c6055ccffb75f67efb6851

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6ded996d89542292df1be4649d7284789c7c6c50ec6e29c1a6a6de782057b13
MD5 c62942fc71193227be27292767542e88
BLAKE2b-256 a2f4ad6db1b74762b2f1385f394a632287f34fddf04641ad527da00a26f10ebb

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82b1461927a1007314873edaa7ca9cd634068e4b5a40f544ebbe0450bb6678ad
MD5 afdaeeb04f94f99fd3a2276566648d95
BLAKE2b-256 94e37e2478692f0c4d81d41e6f44bc1c3b9313e6386eaaa24fe374155f777be5

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1568333a3d1599fd836e68e9bdd33904ba3266afcb9c0849af6d007dbd90378f
MD5 97e54a0c0a63c18c747b45f84b539840
BLAKE2b-256 a3d6b3c7e45971c6b8fe52c935a48144abf7c0efd530cb2243fd5543167231c9

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60ecc4c4f7b8374830205beef0fcf9b4eeaa6a79e00773243fa46dc7dab7fbe9
MD5 d4a9937428b93183445a843154599f38
BLAKE2b-256 e9b93079dc83c87f0ac4c38add9fe2fb342da3902993b2abc548ae491e91cea8

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a47edf8baa1bcd560bbfa040fcbe1e6c40b150f85c9e4c4848ab44d58f2779ee
MD5 5c25cf729a04ab6a5fdaa211f6094d08
BLAKE2b-256 33fc891420e3c26d6c5109fba67308cf21b94b8591a1c7b245c0fb1d2ba5d7e3

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88e899e9f29dbfcc73d0c5ddfe9a5cefea7fd0f342ebe360fe0f2e1039279c67
MD5 03687ffa595fc2404c4e5aa84a398517
BLAKE2b-256 5ab92f496033ad56d28837dcdf43a8d25a077805d51b04605fc65f9ed0e2e55d

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5649f81517091a19dcc7f9bb47d2459ddb89e95bbe74a05b63b490b2566889ea
MD5 0d1c7120d5fb89477069f2dac4c0522c
BLAKE2b-256 ed852fa4327fe309533560b3e74d76c0732f4ccdf483b7235b71ddc82fa71d8e

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1305a1992cb2a9d63f8e7cac10bbdc4fb23a73fff7a604139c39aa002a4a4693
MD5 4e05b41d044a0e725a65030f04b1958b
BLAKE2b-256 eb248917590d20ab611a6abcafa1b191d70cc465b05f25d98197d7032b9222e2

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 509b24b9856ba638f4d3b3056e68b339a86f035c548f57793c99115ea3a7b31c
MD5 48ca22dfd1d790855d0556e1ce5b82bf
BLAKE2b-256 c921331b357a9e564e3f5645f98673ab6f5e612adc3ba284826d06275ee8dcb9

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d46b362393f5d7e28692c2c7e0bbab6d6f153cbdd4891741dc7dd2b29f849783
MD5 a3f8402222fd8e0173dabf6b2f48e776
BLAKE2b-256 230233b53ff06bd19100b854323eb2a8649e235835e4f49f2e9a2521594d6b0c

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4d9e685a6c4163470c0555aaa2bb2fcf88f5ba42b4f3ac14001b4975762c5f7
MD5 d7c6e1622a728cf21111cae8f172c844
BLAKE2b-256 335a6a8709d793ffd5fcbbb6745d9dc4e0fd4fc1866e57323435ad27707ae7e3

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6aeeb870b4acda9b32fad57f095c7f86b2934831d6fbfd330d9c3ad04be0a1f
MD5 0e625eb752154ebda8edbd30ff6f8474
BLAKE2b-256 d1de87ef017c37ce9c9bd2e905a8f97aabc6c0768e06360afc4c214e8755c244

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 564dda15581bfd9e2bab2af65ad1e395c2441b9bb74ab5388a366ecf180f217d
MD5 76c604f9ae7e62340e7a9268c28c26a9
BLAKE2b-256 3277377ae90f9f6d598da902d7126b51ff3e7013e6634bcffcdee9c179c90340

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2139cb9a3dea85af53d18785da31cb246560a9fbf1a9d4d77bc96cf71f3c07bd
MD5 4aefaad5750d65cef3f7bdfc94f4e392
BLAKE2b-256 f6790e3c0602ca2a188a8388484aeceb9065cc319a8a1f1d84e5910fc5b8053e

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af0be84a13e1f156c49710497e36ebe32070c97a53a6b4aa2b800026b623a937
MD5 440a56b347ce4545718ebe9d03a137c4
BLAKE2b-256 a6d4171730e620c724439ee6e80741c5f7fc87a71d525327126af9dd41ac4427

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 144.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2be7b0dc631b149b435cab23a986aef15b6d5f98ecb0bae51d9d85c97e6db3ce
MD5 c43c415755da362f7cca026a9b246200
BLAKE2b-256 e30301b00277ffa4aea3f5e12f6237b66f6c56cfde1da57932662157c67019a4

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 138.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1f9cf08dd8e943cbf15b266152faee8a643cdbb546594036b3f4ccc7dbc41069
MD5 398987f744947bb2b415163f67475ef1
BLAKE2b-256 7c2695e9c39b06c23c358188986b6f06f60cd7be099c6b34a2ffa7ed7115e951

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f89d33f97017c35d73ba97533f24bc83e9992f709de12a5053c5700ee880d187
MD5 76bfe35b241e8fcefabf26b38b3d528a
BLAKE2b-256 4ae58e7ffde4d5b603ee5ae1fcb4cd653e15be5c3070469a679b298cfc57836b

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19f8b8a04a851f65ef9e7322142de8dcbfba05d2496638c05510edcacc9df097
MD5 26e009d44afa9a148f2327dc5785f398
BLAKE2b-256 f5ff6845def8b25fdde9881a10d28f4e79ae61c205bb158ea87baf5c47c56c09

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 986b2b508f20ca117cf9022a2f30faa8eb2f2d292da5e44917b0ec85481c5a12
MD5 59c2be357aa00161f9a8d08d55e3f9ea
BLAKE2b-256 1420f9838350b4d87569c5ff7151fe3b526e26cdf7c38ee4f88afb4ffa2f0aa2

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed9b284d11b79b9ff16dc62f0789845bc53ab39960eb218a4d1e59da1f788878
MD5 8f5ffcf1cbb959bbcd37ae4175c541ed
BLAKE2b-256 bc777050e699d64fa98ffe7ee4089f9fe2cd03170e8505ba5eda4279cc7352da

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1745a8f005750717e57a98f7b8a3e8118056e85cc89d719f6af34ab68f81c36b
MD5 090612b316ea4d18384a881fb97b0394
BLAKE2b-256 7e5415707e38e18ce87e6b71cd24926e42f828e775bd0f7ed2a80ff5e751d6f0

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24ce8761dbc1766abd0048e5f192c7e06c520c0e59b8b853887cf3b6b6465476
MD5 5021500be67f46049fb144dc598c31b6
BLAKE2b-256 86cff84d16cdc9e67f223f6b580fbf8a1be65d5bbd4f7d0b990b996ff029ad0b

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc7bc0467e3b47644e744c2609690e6407cf5d021f77ec2fc991f6dc10c853a7
MD5 fa01f8a8287dbbaeaafcd52221feedb6
BLAKE2b-256 1f063f5747bdcffa1b688eee36b1742a7e00fa1a7eba7e5a31c60e41f5bb3144

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da6438da0ea9cfc7e9995cfd2a11bee06326b63976e73296d4a6abe152cf8884
MD5 277c34cac3dae11432e9fe823c7f605c
BLAKE2b-256 3a637dc49ba289a0f9bd437ecd3c3c65b90aed42d0ada1333134db5c10cc3a93

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74119f5d9f2cebe9d14ade91b06b6dfbab5c9c51214fe39b2f52d3efb4e8260a
MD5 8916df3ce63f8ec8d86b251533082b0c
BLAKE2b-256 09d138d444db4057db0eb4a2268d7a585aebf3cbec39359be4bb63f7058e160f

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 876bc7d2886fccb92f472f86ded46fd32c2df366f1a29790fedc397b341182f8
MD5 a604282e182e4a6f1480958dbdde2e04
BLAKE2b-256 9fc4f706ad9fd2f5d972f916561c054db69713d0f0f56a4466e5c769d9a380c9

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4d7fecf48a57d98319cae47cf0a3b35821352eafc6e3014478d99d5ab7e20ac
MD5 76cdb5be692a8534c44935e2d82fd262
BLAKE2b-256 ed0d4f98ad183bd88b02eb59c428c4da54137101842681eed392cc46a3e3097d

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa4d592617e1fb172dd3d401d1940f37431569f4d617d49f9eaf0828cf7e9727
MD5 987b4cc3368e7b10add27cc6599976c1
BLAKE2b-256 7b49614cb75b32747268b0e964c673ae0483d8576b29ea260051ff82a2244f10

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 145.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 477960deb180c2f5b93382f58ca99801639b81a07a775cf6f25401c804040fd6
MD5 edcbaa80bcee25358678aceff932586c
BLAKE2b-256 d20728c5393484d62bd32c81b31fa22440aa2193446f8b5ec7d10e1032cc5837

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 139.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 21d09a82abfc1e1354444815b7c5eeabe3f459cdd134353db40aab2be6e7dfa8
MD5 8956c950f5fd8dce47706c838013f917
BLAKE2b-256 71445e5e54b43d341981aef92b357f95d8b6ee13f82d9c6192d8eb1c59b48b5b

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 746a794be343f2f2dfb7cb145487aaf87df2399272f648747e147b046659f3e6
MD5 ddf03f2c9703355f4e568c10dc8f25d6
BLAKE2b-256 de40d1746be437114f1dd5814dfdfdd939cd18b6aec9bfb1453248568c1442b6

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 477ae751f5b2beceecf0270489d02eab4f004f7e66e98d9a6556142639599de9
MD5 dc2ef045e04121dbae9b1af52463dba9
BLAKE2b-256 8343a9c909f156d1190887db5de7cae0c85cd6c6746fe2679579dee09c5798cd

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 356933f6129a53326002a3d096632e196a3941e3c4628c2a045b62618ece54e5
MD5 2ec915138f5192061bffb4e21775554a
BLAKE2b-256 a5e56215a55960142425263d8f4ff40528d7e2fb1b7a2353f6530cd9f8811198

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d16855079dccabab14c161d60e8b5c6fcc24ba7b477f0d6b2b0fc61098020ef4
MD5 6ff44df2b922e301b756670842af3187
BLAKE2b-256 bc5852b5f305e12c4fd733e9fa5dda9548a2e1da9656214ec029fd479cbe520c

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7ae033fa8354aec09524d1ce02dadec61ab2f1a20599a1d622fcdd2cd98d26f
MD5 9287e9248c2b753b033c600492af76c6
BLAKE2b-256 00e525ca9a49844c660d925b0119b2e83f13398efeeec97ad60829fc09dbc395

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81481da393ab33b9f04ac4f4896c420f0fd332851f1722ba627fc0d87625a9f5
MD5 095783c78fc17d8edd550f0fc04e5111
BLAKE2b-256 5ebdd4ab9b5d4ce1cacdeedb2af12b3ba5a4b94f4bc44f27eaa51dd49e940276

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 807e95cf1b4eabd938783b1f953cb2151c8927f345df36363e11f68615f8f799
MD5 36c8d52560817beaa52e1146d758b59f
BLAKE2b-256 7c7f4f581415a93da1ad8e8220dc9f6542409b7812ca99ab41783c91c323fcc9

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc7516df1fed5724224f2fb446b5bb6e2c74ca57d3dbc892102c5e937f721655
MD5 280912ac3d65ccfbcb14cb3ab99d8d23
BLAKE2b-256 06b186c1890a530199a0bc999fa178d3afc3e6b74ed1682af9350dd8d8d5b1ea

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bf36899f73b1f6557db636ac33242bf5d3d35301dac9ea2fcf0f2f61496d8ec
MD5 d78a5da8871a1089c821ad48ca7f295e
BLAKE2b-256 393d4838a0378182ffd63dc6d7c296b1296277535d46e1282b95f2c43c1bdd04

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fee5d3db0ea96f545e4d13ef9aa3381260b82899bdac36d0e924fd6042c4528
MD5 39f41fdd59cc009b7319a090e8c4a06e
BLAKE2b-256 d879669e34ddcaa84595f005b63b04bcc2672a62b0c6c86aaf85ba52ac23f36e

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 696278580611ad19bdca7a42a308a2c94af46076f167b67a7d6ba3d97ff1be0f
MD5 2c420426a49a13126be1d34c3c25e8ab
BLAKE2b-256 7c332d841bf2a835cd1f3209ad3bfdcb97f2bd5e256ebe35193049f6317e9bbf

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1164b8dc0dc1f3740869b429814018abdbd3cb26a358ca12c2fb3338522630dc
MD5 0a0f2c3615c1cf85b907d18182d64e06
BLAKE2b-256 5fc3985771934e38cc6bde16359126e20bb844cd23abb55a9094a0a4d0b6de32

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 145.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5f7a2b4a41e039896ab3de2432c61b239d290fcd2e844482d8b6fe48372b488
MD5 a2b3fbffdbd909990469ca06ed642e6a
BLAKE2b-256 2819ab51235d25f5c69663be83a6978389c9d9b51132035a0f3bfc376bd848a0

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 139.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1a6839f855f9629967d43872efbd8e22789c7caf5f6029e876539deb9d95939c
MD5 6c9079238317d03e2a73762d63f610c5
BLAKE2b-256 58553520cea6720134939b1b1a69169059424d66ee5a7a2aa0e6f7bb3fb4443e

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fcaee503b450d19c0e4a524e6edc0f97d0070acc19ca9e244613fe1482ca9bc
MD5 849c0319947009c035201159f13413b0
BLAKE2b-256 961739ec5705f8f5dc2b89830fa660aff0cc554fd305c925a9abf8c3cef2208e

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0de2efe1200e7f0630a2ff67db794b60ef325ce1034cbd4003855e66a4acddbd
MD5 3fccb5acba2d33987f2585a9f328284b
BLAKE2b-256 17f30c581a12148867890189bdc0c14a78ec469405cee29e106201ad190b9755

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 678232665d546ec0c014a72111bacc70e40957b3134d254f1f639362b30dc888
MD5 cd9ffb54fa259868d5de73fe14bab0df
BLAKE2b-256 e2f590a18a347d89f85615bcb2304f7ea0787b751d18078ee2323f1dc7e35a88

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0342a14928f2864326224827fdbc4a90f37d8bc49b438102e7a6517b9953936d
MD5 de9ddfa5cda84821eee5d36dbef24682
BLAKE2b-256 d9c39a3b41858d88b28c97eddb4638cdea162fa050c34bbd81298e0afc545a0d

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d874fdd7ee430484d4839e6eb9f9a1899d14586491cf186cfe3648986a5c4f88
MD5 3875a2c5db41a51ed47cb901d0f60e34
BLAKE2b-256 04c08eddc4f70488ccb75c82bf908890aecc18239daaf99dd0fb9926dbd1ff52

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd7255f869c8df40323314874286bf34bcfb28d433dc3b1c3f7e9cc0fc49d102
MD5 c006f78b86c2e8252d6c4f1c6b5eb0c0
BLAKE2b-256 fbeb15fdd4e1c23c94458027360613d05a7db795a349a7900443250f0a2c30f0

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe33e2e9183e5e133ec9f4916576e21336333a4e6703bdb518297af201bb3cfe
MD5 921cd1d778a450b1f84e6dc58d3e71f6
BLAKE2b-256 c588de90d732465bf763a4b4329286c4318b7ddd51952307499d3c706dbc4651

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b8910a6ed386071d83a044b32ddab9c2b10a6b55a210cc16de1aca91fc06058
MD5 d9c07ed1218f955e256016dcf157ded8
BLAKE2b-256 6a7881dfdb39254bb4bdcc5b771897f68febbad8831af946ae2c4a56454adbee

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c8c0befd3660e5005eaa6962d39944eb8f0be8bdf6fc186906d25fb31fd2ea0
MD5 6487482fe6358adee380ee2ed1cef1a0
BLAKE2b-256 1092fbb40da89e7f14c31e3a73863c65ccab020705d927d4158878c150a39f94

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cfe73a47c0b01b87a9c83abf79a1c21b6d561b20d0a94831fc13880a3988c7d9
MD5 6fc68cf57a958e98f801a27766fdca17
BLAKE2b-256 c7123aabf667bfbb37273dc5132426b9f8539aa7359d4ead2ffd4a8fd29ed8b6

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 145.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7c039e0d72118e5355540e6f52e085b909d8925d92177c05c87662afc9fc3971
MD5 5aa44068395ad275f27ae9da3f326bfc
BLAKE2b-256 23e9fac498b9746a6fb438fd967bdb34ef97563f52f78681c4265da526b52bd4

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 139.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b45322e6914dffaace7000b747c71e3955cc02c9c332e01bc0fc4de2a90ce0e3
MD5 a9ac004e6acb44a6be075cd73d31052a
BLAKE2b-256 7d7613af8ccb01a2617b4de08ea261120063ad9e80314d70278f8c8bc69c613f

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e27d979203ca31dc8e18e35d69610d1087442db43bd597ebd7822f38c4a174ee
MD5 7b5f500954b2981b9518564f18512905
BLAKE2b-256 9b1cb8ade6c03250997a01d2fefdb0fe48f34956b319d2d3945643d54a26484a

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 831c2f80cb2532c4d028eb340335a72727023baac3f6d0be7680902f47351378
MD5 c0b2dddb1e6afc6bbbde86b2d0bde23e
BLAKE2b-256 8840e11f234a7ea5c088b4ebab1bd5443e020e605240f2c9dfbf2c6a94a7f1d8

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aed53b40dfee83b17dda3330ab5406590177d909822ee267c0711ac7d8f9c40c
MD5 96aab438e4cabecc28d783ed798faa89
BLAKE2b-256 6ab1ccc7754cab4c9dcb70125b5c4576d616d23231dad93aa3c8e32b6ce41b4f

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7d0145597adb0b92d968bee9616a2e0696c5ffd9ec8dbfcc78158822ca7198f
MD5 4c7943a48f71f5fdb21c2323f74d0f1d
BLAKE2b-256 8fcd9652861b246fdca21dffd8e6166084d9f088b2ca1c9117adc5e1173b3a09

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a16e036ab9e6ba0c52dd68508cc2ddd9bd1d3367790260f26b51ed42dfda15c0
MD5 c2467704b96a063c66cc56f99422d1e3
BLAKE2b-256 05fc434684e2cff9d4b95cfc6489cc012f3fd9450bfd215eaa4ea8b79a739a4a

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1aafd4111e635a9306399f79ef28cb98ed1e969c35f02cbb7add0b17dd1849b8
MD5 0bd6abb79c9335e96f59bd7c0152e25f
BLAKE2b-256 31e83716cec7cb32e03b4dd767118ca8ce271562e1a8c10f48a0060005d236fb

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2bb2a332d3057e3e3a3b3f9690ab6924c5c798c7e43c61e1426ffd2c19a2f27
MD5 be1a02ba78af15713f122828292aa9cb
BLAKE2b-256 4a3779b51088af20f16a62bfbce5ea35b5abbc6edb7dd1ed59ba1363dd25a9a5

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f5757a72a640165adc036228edcf5d474499c2a496923505db363d4e8671be1
MD5 cb0b56b1508727b5eea0d17f13ba57ce
BLAKE2b-256 bcce8ddcaee4c342ad9045936ae65e54f2eb7aef04757fbeca54c795792c8c32

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3f31a6dd9f6619c040184ee9794a9cd64d64df35ac288cfde2da5eb7b7c2298
MD5 ac8aa6985b1c60bc14bf169414ed7165
BLAKE2b-256 1ef1932ef7eb7b8b276cffea88e3f63c7bbc32624e764b81ee5a52605bab1ad5

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f78239bf9c6593e6a5d7f8f1c81b1b507c4b0f7b3bad7f54f0c5cf5f9ef3e840
MD5 2241027fcab7effb77b414d3c9c81050
BLAKE2b-256 536cfba1ae80466e6993b0d8f0824af8a7c50459406d76ce2f53004c0a56593e

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 145.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d417f051ace96308720ebd72f61016560b3c09d31766217d467d078d1443293a
MD5 0df4b9f27e1d4384310d3fafb915e401
BLAKE2b-256 b70fc95012944fd57a522d17a87db12d89b04ab24264f9fd4f19d18e2a922f49

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pycrc32-0.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 139.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5e5e9045c4046e3e262738a27f5dd4f922f8085d69b37ed9a0c42f1b2df547cf
MD5 779e57af4a1b606cd1e9fb75049ccc51
BLAKE2b-256 018b5a08b12d870fb04890316e03905626f2c5fddfd3bac2eadde662eabbda3f

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 655fd84147b3607474659ee77796528a43f1959da64149766b7491baf9185c11
MD5 c6dba025106fb118dfb3c8049aee4874
BLAKE2b-256 c0e5fdd140bfaf87cf1da8e5188791562aebbdfb156d0b1f3984fd47ccb74f0e

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f4d3882ee962b3775ab4b872b90978c721df83ba39b81b0c49ab708d2dc5ade
MD5 157bd8b1a88f0eb34fc13b996a1d33d8
BLAKE2b-256 66d13282be288acad3965b0cceb4115f9183027fd0b38a35d73e2c6dc0337f28

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fed33084dc4cdf9ad33b283de5c6f43f7d111f39f8ef89f1692f9646f0ebe376
MD5 693d54ed27386f2dec33a470de086e89
BLAKE2b-256 315b24d5de62cc7b5187c8aae61a4843d0fc4bc2a64fd5a960acd5c96e3bad95

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a42abcf4ea300bbec4fb2e4961d9d773021093193fbeebcb8191a2f1549d5de
MD5 97093b0dc6ccfc987bcddc2da7db50e3
BLAKE2b-256 e81e0243848a9816a1082f2d0086af570207b532f7219c959210adf975b15170

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0310d971ba48ab4892affd50ba90bf749d4d7e061bb74f24bbb4bf752ae4a4cf
MD5 395332d622d68073032d1efbb3cb9470
BLAKE2b-256 086c527dbf2586d3f51887069242b471bb66e247c192a171ba62e8440623c28c

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48241c49ee185ae2e20e47440458eb614b7a71cb562bcaaa9d784b2fca811f5e
MD5 c1fa02e9688098dc66295ee167fb692c
BLAKE2b-256 efc49b8d6168365f80284c13c1b4ebaa154b3f1e3fff7e6bcce2c40f9636168d

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acd2f449d64737fa23ecca893d18005aa9c3501dc714f0145865e07cb754a535
MD5 2a5a849f1352db099f70269c3f37b4a4
BLAKE2b-256 e69fe91dac87790f64dc6c96545e9c8306382a8598126491e7bf2903e8f78228

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ba7e6e814e7c5c2204c7809301757528dd0ae8a29fb0cdeaa1483d0cac82bce
MD5 16635404173b8c08309497331e9364bb
BLAKE2b-256 8f052327dbc9842e5f4a80b82534d4799ae571a9262078df9a2e9b56ee99bb35

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b20cae0634426f50e85101613cb32c9756da517187d9c5474ebe3a55d644551
MD5 7bfffe82529faa4918dfd5d2979eda10
BLAKE2b-256 81aaa115594ba71c922cf1270452e6115bff6346aaf1b3b080839abc113c98a3

See more details on using hashes here.

File details

Details for the file pycrc32-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2d4938c7b64903e4b172a9dc48ec6767e51a8049ddb95c24cdd4d007c82dff3
MD5 342769934a2203a94d7ef4c7e500430a
BLAKE2b-256 070231720508e0f80e8f93bc588a4839428646b665cd9b5858d29f5b2e3a52da

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page