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

Uploaded Source

Built Distributions

pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pycrc32-0.2.0-cp312-none-win_amd64.whl (150.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

pycrc32-0.2.0-cp312-none-win32.whl (146.5 kB view details)

Uploaded CPython 3.12 Windows x86

pycrc32-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pycrc32-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pycrc32-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pycrc32-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pycrc32-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pycrc32-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

pycrc32-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (262.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pycrc32-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (267.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pycrc32-0.2.0-cp311-none-win_amd64.whl (149.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pycrc32-0.2.0-cp311-none-win32.whl (146.6 kB view details)

Uploaded CPython 3.11 Windows x86

pycrc32-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pycrc32-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pycrc32-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pycrc32-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pycrc32-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pycrc32-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

pycrc32-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (261.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pycrc32-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (267.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pycrc32-0.2.0-cp310-none-win_amd64.whl (149.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pycrc32-0.2.0-cp310-none-win32.whl (146.6 kB view details)

Uploaded CPython 3.10 Windows x86

pycrc32-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pycrc32-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pycrc32-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pycrc32-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pycrc32-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pycrc32-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

pycrc32-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (261.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pycrc32-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (267.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

pycrc32-0.2.0-cp39-none-win_amd64.whl (149.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pycrc32-0.2.0-cp39-none-win32.whl (146.6 kB view details)

Uploaded CPython 3.9 Windows x86

pycrc32-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pycrc32-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pycrc32-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pycrc32-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pycrc32-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pycrc32-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pycrc32-0.2.0-cp38-none-win_amd64.whl (150.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

pycrc32-0.2.0-cp38-none-win32.whl (146.5 kB view details)

Uploaded CPython 3.8 Windows x86

pycrc32-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pycrc32-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pycrc32-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pycrc32-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pycrc32-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pycrc32-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pycrc32-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0de6efe1430151c399bebff6d92996f20c8a28309cd362c0f6befb3e59551de0
MD5 6bc04c185ce659232ba9580423d625d9
BLAKE2b-256 b3f6e4df6b1ddc9ef4ec3a25a29a9987f0218917560c769e793a97c98ae227db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ce41d1d559629d3452e4156a9baf12aae5c5d682d26995f6c6573798c8b03fb
MD5 05b2241271758338ac23fd5873abe38b
BLAKE2b-256 b2fc12bd47f25b111b8a1242006e46304d53c0d2a91163ff4bd7ff89fd06432b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cea61f5900cfff845753e2889067b21c2b952c5839fa9fb7c67b87bc0c541b9
MD5 d2e3f480c83bbe25d608d8cb341eb156
BLAKE2b-256 bc7f67771a377dcce89c551448ab76571068c35511c186a69116038a541bec69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac40639f8ae8ba365e62ee075bdd25c4f5aadf5ee2ea0921a9cead86a43be9a5
MD5 56069828a70b0bd435dba987bfc37788
BLAKE2b-256 cf6f88f98f92bac0b9092fa51e0a254810c17ad053c25b5e4f92640c3a5bf7b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0d7c51361fd638cb46f0815f7e03373436321a208c06bb45bbaf789e9d835bc
MD5 798ae7c69f9b503965237a80ccdd0882
BLAKE2b-256 472dfc033371745805ff23e92a6ea479704eee415811cfd68628b79fd8892147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 181ed86cf0ae23fff01690b14a28ca187af2678ef97b1306fc652c1af8103df6
MD5 2b3e2701e337a3dc0406cae117180ee8
BLAKE2b-256 a5dc506b5516e3743756082a83f1ebbae49242941bc914ff9f270b5e2f151e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aab9743219d2bb015c21c155fff55db042c1a7db2091c6029354f918ef6b4824
MD5 f86eaf19a0f3967f56fd5d8c99dbbe00
BLAKE2b-256 6e0ef9a86f5a7d518ece7ab5edf755fa570f798302d26de967e5b620bbe4b632

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34f6e011c6a08b79c60ac997865a410a1657fc2f0c703044c35b6a8fac8cc8e6
MD5 660ab44c4c16951b844d6f2536643487
BLAKE2b-256 49884837906852223978a59bca88f8364b573ee6e2dc126964b1b6b1d792534a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2500187efe0a6b3e8a3ea1f6379d5034119020c0401cee50c13210b53c847fe
MD5 f5e0cfff65c9e18f65e58d8c01342501
BLAKE2b-256 40c231c7ac4e8afb786b1194045e6866f505097da263e3f9ee7ee618e01ea071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edea94ccecc1019097af8b02da0a41f5f4123845295f05beee3c700c337e386b
MD5 706f62fd0217a25e07e149d69d4f429f
BLAKE2b-256 ee88a756cf9d49de881e83694e281be856f52a7a67f996e2e832d44268cea56a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39c9a4734e26f0fbd2aa3fb39d2c28d7e726eaf2443556ce334b9ad2dea238ed
MD5 85bc860759e5c28b6152102ddf69f9eb
BLAKE2b-256 f77dc79ac709af60031bb92fbd649d96130e2c25ea9e3ac6b17d9994dfd5231a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8520730cd90d282856712181255b6bf26886e3dd579423466c03f24f6d34c94
MD5 e6556ee911e6d957acdeee7f412f9f85
BLAKE2b-256 3814e0500c4b268c16b913257e4f4b2f0154e71dad5d2f3d687aca243a7869e9

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f1d36f4bbf35abdd7519fbcb58fb611c153ba1f5e39373f9305851dd9f047450
MD5 41589e79c728fc6776923ae0457ca1f6
BLAKE2b-256 94d326c2c18e87568adfcc56612ae1b2181d17a14c90f5c63f3f1bbd70433e65

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2545d40ca5e3b0dfd6d64ae4afdf0b3212a7f08194902776ba0d83ef52603269
MD5 b2fbf1eb1934e8c2f4c76de0f7397787
BLAKE2b-256 755b0d0071f9e287fcf454b19f2e0e4e746c7ee92fa0611f3e90359977b2a67a

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97fe8a24bca0f192cc94c146ba20a70f9f8635b794dc88db2724c335a71915f0
MD5 c5993bdea4e1337b80d97c5374e29642
BLAKE2b-256 17190f42cf224286684b656e1d7aa44a6e693ff2a1b41bcbd9560b70b3f358dc

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7aec8d5f679863aa3566014ed73bc74b58e1412db475026074e162240a1efa6
MD5 21f0b44d7c5ecc42f724d786fd0baea1
BLAKE2b-256 7db3ec2cc83d56baf729eacb2319990bad88a7ce71fa22bc04e36e49ed3ddbab

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17c489e28d3b750f4893daaf0f93b6248f0843349eeae50d96a0f201629cc90b
MD5 bd68933c2a414c61803f30d20e90e0e9
BLAKE2b-256 31988bf9310efb6c882ec7b02ef1bf9d56263a29a676df288d7e2ed0d50e37c3

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42b58db1285a322d43fd2df2483337c4863209f85127e5ebc355e3fa9910d64d
MD5 7dab84d61ad8fe300dcb8df48d95e620
BLAKE2b-256 2d9c237ac5b62dbd7d3bc52ca61ba0094dd1395143edba3552a9726b1cb0bfbf

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b434c1426841f52361310724011be9989ae0a165c3d0c80a2e371f522a758ada
MD5 19057e7f8ee67eb302bc300fbf29fa1b
BLAKE2b-256 0fc619a39f446a787e456e3f7328194d168790d8cfe4e2b961555749fd2aa891

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 23ec6ba1e1a80ad107ad61773f33978d43dcd0c6790e2c96851e663cb58a8e8a
MD5 3c3b96e98fd3200ce4e6553299c897d4
BLAKE2b-256 b88c11d727a8667642531707cd506e60cf2548b10aa35c220602001e8fb17cb8

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for pycrc32-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 fb9477ddca619bcec8ea135636d551965099512358335e065a2892fd1e2ac528
MD5 2d7b6637be43dcc89658111a96f4bdd0
BLAKE2b-256 4db780a96a9fc561de625a1177da368950dc722e92d64685379c3b4e3aaba5dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93b5e3fc64d2bc07bc2cce00e9c60504ef08211769acfa4ebfabaa0b0f098c63
MD5 3ac3b53dddef0d3031286445b3b55cc5
BLAKE2b-256 1819ce74f1425c7178233f3b93059b8d3b100896bcf1dba3a612d24193ea453e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f85b1d38cf32fdc3c12f8c5df24298b0dd5b936647ca7e7130d2a0ca165de227
MD5 107a7ae7499ca31da55b9e53e3911846
BLAKE2b-256 b904db6a7394e10148532152637b80e71825c1a53000e304336aa34139e29c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 104165103c97069640afd6602db111a4b6366ea65f0c8a43a5db786d03a1f1d2
MD5 bafae1c93f775eb47826804bea712f67
BLAKE2b-256 17acf7e08daf4cea92eb9993b8acaef9a7fbf455b588c3e8e2ed5064aaea7698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f9011c2b8849cd133eb84074ebcee78026f22ff949582052660573b53c81d4a
MD5 38bdd0dec2ec61d5d4b063be613ed90f
BLAKE2b-256 e628de7dbc8ddd9b59448c914f581bd198c3021a76ed829cab5a26d953c52444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4880a297efac45d0cf76d2930e584335f71368099596501e6617359a17f6d511
MD5 6f539cc24f6aaecb8aa897e1f9e6d1be
BLAKE2b-256 dcb2ab1078b18141c28007aabb515206c7c32d3d450628dba75bd5f35ff8b2c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7d442d0c849c4b35d3f50e837656cdddee9c4675d39b19d3b0be069abe7ac7b
MD5 f638da84c0284a11ae2fb08d20219152
BLAKE2b-256 ee14e646c78d498883dd1fdc87827280f17c45fc1010af06c48ee78e66a21ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7fb9389b4e2cde51333ab66c6d9f25d0b2514b162cce62891565232217f8bfa
MD5 ec0578e8aaae5259b508e3522bfdf701
BLAKE2b-256 ab9d3e1a67bb4a6bb4693d09db76e3ab2b418df2223ddc4bffc6693a21152eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9623fd33ce2586b51aa28fd2659867eabbd7b8d06d34c386ad0e6905e764010
MD5 98b1013e0180913ee52ff27533be1abd
BLAKE2b-256 b40ede1cdf057466e00ea0e119dab198c0f3be3513fc9e5f7bedf652ea3249ca

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c9b3b84c7d10d2b1cb5a6cd841040629f55a386551618b2528cca0269933bb6a
MD5 a57c2a5039754eed4b0d797e89a97877
BLAKE2b-256 d7376da0977fab93e6d083fed02a34eb2a04fc204c645b9b103e4df555109f0f

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for pycrc32-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a2cbd6c11900574e46adf87dbcfa45f327e5e1ef55516484f89c44365427ea42
MD5 e29ec29f5e86aeb4006041c1c7eb157b
BLAKE2b-256 9458843d5a32594a66cd38f5a888d169dc68cb503de79543b0a223a5ac579055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f4cd6400a9af10b0ce5631d2d2eff8a87cf9f37c7932e39242e593e8a5f931d
MD5 672720c73f141c2023249b26d96b1ae5
BLAKE2b-256 9d8938f0eb40611764febc0b1b401c78fda8dd1cae8b359b9d49c981213a0f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2009dd7fcfa2fb1081fdcc0b99656d8271ed21a54b17626e2a6d008267be8a4
MD5 d561709311119bfcc18934d8c08f344e
BLAKE2b-256 96fcd9db0374901282035ff36b2d75fe67a578de3429980c30e0c690be4ae909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76a90f41010107318ac26759b35f2d26b8214bd67db08488727fadb22947520a
MD5 1ea4a1fbe0dc6cf8659d84221a96d4eb
BLAKE2b-256 ae9a7866b6236b50b1e5f751a1a51cc72a239fc56ce673c2a50db1f1b4e806ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0827666628ad5dcaad195a6e8ecd49b32cfc09a9cbf854af4e0f983d63c7f48
MD5 8e531f2d37f8485206b79064b767b561
BLAKE2b-256 ada8ce32d67a2ad2907768145ccb8983a257a899ff09ddd3774f8dd3d91c0f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d65de062a2c09e19903b8d9d3c3b63940e405c0097f01e778d1a42501d6f4e9d
MD5 78352fdd8691b95fb3ff42a2168a6929
BLAKE2b-256 bffe4c3b5577044add61869b62d2a05bd12b3db5850944dda678749887146033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2acd62556535b45591851949aff3655f4ed6bc912a24c3848e60589f32dae6c
MD5 d56c0b4c3e07985983ad9f4d4ec7abd8
BLAKE2b-256 6c43031e94979d255662b3db35b905a4c77dc01d8f33298e01c9b1929d7c778f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 574a90786148f9ae64fa180c7807729b68db1c8a2057e79806a550a014df3819
MD5 233ce613615141837d8154f1643f725a
BLAKE2b-256 8a1e05797c065b1591a3083358ab4d3f9274f5c4afe0e13c90192d0bfa3a2aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3940a5da33b69111103a680a6c482b297aed81b2068b2046a3a66dca671c75ee
MD5 031a6e418b8582d9579ca82b18b52000
BLAKE2b-256 01816796ddf53d6f15ec22299feb66600fd0156663b7a126625847a0a2d229ae

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b0eba4fa243dc9cd290372f6548bd6e7802756cd1e696220cf809c2acd7c83a6
MD5 69746d3e57111fecbee8413e1d751a2b
BLAKE2b-256 0f1ba70d824a44e45811c6d6c6e68f9f5f5fee9f6fbdc3aa5993f2e9e40c7964

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for pycrc32-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1d096952f1ce41281ddd1682921538cf16509a1583043c60ab5e75e4d80d6f53
MD5 697e432b1c5b1988f8c7a1a832007161
BLAKE2b-256 f1ae6637dd8fc4e5625abadfdd30299aa82409543fdc2523b1dc9caeb3f32f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c613a924b4fee949991eb8598de488b2bb0da0af929dba9a8bae33134260c378
MD5 79c4e7348215bc5af64ee71148d73b62
BLAKE2b-256 8e2b823a46744312856312b7491fd2581b28ed74580f1075ad657abbb7f97d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ded3fe838925b6d2c2f76cec8650f36adb4435ab05d92f778d65b5e2c6178574
MD5 daa6ba11bbb8caa49e024a5483f9306c
BLAKE2b-256 41736d9d6a89acf6db9d5e6944fe2b22eefabf4002f6bfff38656aa49dc1b73b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4c887b82a40b251e031d158c5948735d29b5a84f0959602b1c10923883466b8
MD5 291bb374f7637eb0b759bad02588f263
BLAKE2b-256 78ac06504caae376c785bbf1ecc63c4b692041ffaccb942dd3304f0bb3e4dd60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91d8b4e1ed77564c212de3341c706c70533b975b85477a00996657c29af750a2
MD5 53b6e344b61220456d9cdb4c938a4fa1
BLAKE2b-256 42a925eb44119218085e9300ffcf1520640902d2ddc5240401db278974abd612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c6d9130c836e8e3508d681059affe844eeffb18b7c23dd39c1b755f7886878a
MD5 dd9a72601a4d4848e4f6ac6dd0ab18e7
BLAKE2b-256 74b403347da527124da475ddffe69783e1e9bf61f36f6e83a2e67cfea73698d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 64d49568a74b3667a65a67bd112e3594b4572e9fe9baa8b7b758c7f99b4599c6
MD5 20f3fd9d72434647ac96b2aef1c34f1b
BLAKE2b-256 55cb9a68bc5eec07a82e9196391a4728180ca03487add45959490b3bbdd6b8d2

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b24fc3900f0a4c67a5e905235b4405580c568692ed022016b79654ddc334d600
MD5 d39938f14ed5341f9e0785d29a699127
BLAKE2b-256 2d93203465ae573cba9481f0e95b27fffc5beb7f8f08b61fa5c39a0f2469a2e0

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ba7c0cf0e56f90725601fb08e1629b3ca0bc0ebe11912a76593c24e6c423789
MD5 40806bd7311ecc9a65486f52eee34769
BLAKE2b-256 c867661db33e9e38e7d5630972e8e69aef2d08b78a8bff285fc14f529ebf4245

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f18673014c4d7f3d5109407f0a0eca81f98c7144c2c7ecb60382bd5567a73fa
MD5 725292d1848f380109016e4d02c1a9fa
BLAKE2b-256 b2bb892bb5d93ce4debfddb751d6e347547398b0e64c40c1dd34a1bbf51700a5

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for pycrc32-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fccf5c273ade1ecbdf1320d7eacca18e9168835c9cce2f770d22e218394c598d
MD5 e38a10f2483b9af84e2bcab3a676b5d7
BLAKE2b-256 355d656a16b80909f14e32430b3289db1bac52fa1bee68b7dd91ab2569e79166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f3da1aed4c32e0366937ef35d368813143bc4ca039bf65703b03ea5932f2e98
MD5 32209f4b3a2f14d9d802fc9fd65facef
BLAKE2b-256 147cbd5d5948a68a9748e0902d884d7d1896aeaef0b3e5ce0489f2c0b2982b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25fc72ae7d5ad64b8233f562cda5566a33e3214267b348fe5e4d6341ec73dfd9
MD5 30dd5077598f6e3157555bc484f4c521
BLAKE2b-256 f058115f239261d0dff05c77a7fc3bd3c5bd6d58dfde81ac1160c0923067bc2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e281811f6fe7fe71c0a2c94bc24c4e011766558d1df9cd7a6eff66058f8dc8d7
MD5 4f47e567ddddcb0dd28a2f1cf0109a13
BLAKE2b-256 802e13dd61ec648ff99c36098223127af8a57e8c5d1dce1ee1adf5d4d4c21f2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61a8d5d73697a4d31362806f5bc02ff7afa8c8b496da401afece5f36f0d9aa2e
MD5 ef477c187ed5a7ace2a57bef124c6126
BLAKE2b-256 40ed9359f14b7665c32370a59b3d924f56a732265b20b4b9f62689f714e596ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8c66bcada16705d744ed24ec8a64f1d8e0a33c37e5d487572964c266d52bd9b
MD5 1462ddd8b90fe3fc2a03cd45f72443d4
BLAKE2b-256 0e43bf939cfeb3d77530cdaa479f839d79b7f97723ac40a1b33946e698a92810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e694b5ac466370e6d368832955acbc28e6c578d390e0e5e5ab69d9ad0dd7e962
MD5 f7604c5af8cb24f21c590af17f270f93
BLAKE2b-256 71d1320728c614bd568688c73675628c9880bce4cf6b5180271197e7f5330e2a

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 bac842f24c4110d5cc43a244da3696da33628f0d1f063348b712a54d92134ed1
MD5 3be05fa523b1d6ecc23e540caa00633f
BLAKE2b-256 2939c217cfd333487285257a449d7bfc312548ad0743fb02666eeb367d477d79

See more details on using hashes here.

File details

Details for the file pycrc32-0.2.0-cp38-none-win32.whl.

File metadata

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

File hashes

Hashes for pycrc32-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2a4f72af5b8be3934a127c3e513f51d27a706f14ca683dc9c62816701e74a5e0
MD5 aeb66796135749ef720995752bf56ad0
BLAKE2b-256 5d6c6004ee11b5f12c3f3dc073cecddae4179561094e920c1dd6414f9c1ae244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6fbbf96b96ccff51e2e127ee8e8b79a0c39c2be980a01db2b6fa67f196dc366
MD5 9aa28b92d5b14ea382f35d4357d90859
BLAKE2b-256 cef56a0cdc2439d3af47fc43c03d3616e265ce7cf18bc1990dad2d0f0faddd6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 080e3bc69a790a9e451ad9fb17d0bc695322859436b987c1a0a53288ce5e24cb
MD5 ce87a900cb07c427861158dad659cd02
BLAKE2b-256 527190db154aa61f57da3b8ba91340d61ce3f281d9fd5ae5e050e8acd7c1965b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6875bb6fb4f2ad0dfd947ac36cda32c5ecb4e255ec16f3c8b04593a6b5434320
MD5 e3a347d21d18788c544645478db36439
BLAKE2b-256 4c7b57674473d43bc1ee0dbbcffded1ed611c80277ebe8dc2d8e4fecb97331fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c071551c7aa2fb9eefa306dc4a832b95a2eafe87a35c8961d734e9e779c30cd8
MD5 4b014f0718e16c02e6251520347d746e
BLAKE2b-256 ea19c07507629210664e1a9b1c9c2f16b08bfd604e612d6cf2d443db89227f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f0ee4c333bb77abf2c6f180e0f72362fafc6bd2fcd72c0448f11f8f3843e3be
MD5 ce6cf20ecb77db4ac6ed16c3983a53a4
BLAKE2b-256 89bd0e2a96c8f6ad78384207c5fc2ab98ba34dbddf516eba2b8121f0760225e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycrc32-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b38b798772fc99264e20d17172cb216dae4b6b0af3b8a4feb481961cd8a3f2de
MD5 42cc2a1279e56932c2b18e62196d086b
BLAKE2b-256 15ec11c9d17f0da007d5e96ff02dea9ca27b8b0104a8c2bf097385318bc584b8

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