Skip to main content

A python package implementing the crc32c algorithmin hardware and software

Project description

https://github.com/ICRAR/crc32c/workflows/Build%20and%20release%20to%20PyPI/badge.svg?branch=master https://badge.fury.io/py/crc32c.svg

This package implements the crc32c checksum algorithm. It automatically chooses between a hardware-based implementation (using the CRC32C SSE 4.2 instruction of Intel CPUs, and the crc32* instructions on ARMv8 CPUs), or a software-based one when no hardware support can be found.

Because crc32c is in PyPI, you can install it with:

pip install crc32c

Supported platforms are Linux and OSX using the gcc and clang compilers, and Windows using the Visual Studio compiler. Other compilers in Windows (MinGW for instance) might work. Binary wheels are also provided in PyPI for major platforms/architectures.

Usage

The only method exposed by this module is crc32c(data, [crc]). It computes the CRC32C checksum of data starting with an initial crc checksum, similarly to how the built-in binascii.crc32 works. It can thus be used like this:

print(crc32c.crc32c(b'hello world'))
# 3381945770
crc = crc32c.crc32c(b'hello')
print(crc32c.crc32c(b' world', crc))
# 3381945770

In older versions, the function exposed by this module was called crc32. That name is still present but deprecated, and will be removed in new versions of the library.

Additionally one can consult the hardware_based module-level value to check if the algorithm currently in use is software- or hardware-based.

Implementation details

By default, if your CPU doesn’t have CRC32C hardware support, the package will fallback to use a software implementation of the crc32c checksum algorithm. This behavior can be changed by setting the CRC32C_SW_MODE environment variable to one of the following values:

  • auto: same as if unset, will eventually be discontinued.

  • force: use software implementation regardless of hardware support.

  • none: fail to import the module with an ImportError if no hardware support is found (old 1.x default behavior).

The software algorithm is based on Intel’s slice-by-8 package, with some adaptations done by Evan Jones and packaging provided by Ferry Toth. Further adaptations were required to make the code more portable and fit for inclusion within this python package.

The Intel SSE 4.2 algorithm is based on Mark Adler’s code, with some modifications required to make the code more portable and fit for inclusion within this python package.

The ARMv8 hardware implementation is based on Google’s crc32c C++ library.

License

This package is licensed under the LGPL-2.1 license.

The original slice-by-8 software algorithm is licensed under the 2-clause BSD licence.

Further modifications to the slice-by-8 software algorithm are licensed under a 3-clause BSD licence

The original Intel SSE 4.2 crc32c algorithm’s code is licensed under a custom license embedded in the crc32c_adler.c file.

The original crc32c ARMv8 hardware code is licensed under a 3-clause BSD license.

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

crc32c-2.2.tar.gz (38.4 kB view details)

Uploaded Source

Built Distributions

crc32c-2.2-pp37-pypy37_pp73-win32.whl (30.8 kB view details)

Uploaded PyPy Windows x86

crc32c-2.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl (30.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

crc32c-2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (28.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.2-pp36-pypy36_pp73-win32.whl (30.8 kB view details)

Uploaded PyPy Windows x86

crc32c-2.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (30.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

crc32c-2.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (28.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.2-pp27-pypy_73-win32.whl (30.5 kB view details)

Uploaded PyPy Windows x86

crc32c-2.2-pp27-pypy_73-manylinux2010_x86_64.whl (30.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

crc32c-2.2-pp27-pypy_73-macosx_10_9_x86_64.whl (28.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

crc32c-2.2-cp39-cp39-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

crc32c-2.2-cp39-cp39-win32.whl (30.7 kB view details)

Uploaded CPython 3.9 Windows x86

crc32c-2.2-cp39-cp39-manylinux2010_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

crc32c-2.2-cp39-cp39-manylinux2010_i686.whl (46.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

crc32c-2.2-cp39-cp39-manylinux1_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.9

crc32c-2.2-cp39-cp39-manylinux1_i686.whl (46.9 kB view details)

Uploaded CPython 3.9

crc32c-2.2-cp39-cp39-macosx_10_9_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

crc32c-2.2-cp38-cp38-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

crc32c-2.2-cp38-cp38-win32.whl (30.7 kB view details)

Uploaded CPython 3.8 Windows x86

crc32c-2.2-cp38-cp38-manylinux2010_x86_64.whl (48.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

crc32c-2.2-cp38-cp38-manylinux2010_i686.whl (47.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

crc32c-2.2-cp38-cp38-manylinux1_x86_64.whl (48.0 kB view details)

Uploaded CPython 3.8

crc32c-2.2-cp38-cp38-manylinux1_i686.whl (47.1 kB view details)

Uploaded CPython 3.8

crc32c-2.2-cp38-cp38-macosx_10_9_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

crc32c-2.2-cp37-cp37m-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

crc32c-2.2-cp37-cp37m-win32.whl (30.7 kB view details)

Uploaded CPython 3.7m Windows x86

crc32c-2.2-cp37-cp37m-manylinux2010_x86_64.whl (48.9 kB view details)

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

crc32c-2.2-cp37-cp37m-manylinux2010_i686.whl (48.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

crc32c-2.2-cp37-cp37m-manylinux1_x86_64.whl (48.9 kB view details)

Uploaded CPython 3.7m

crc32c-2.2-cp37-cp37m-manylinux1_i686.whl (48.0 kB view details)

Uploaded CPython 3.7m

crc32c-2.2-cp37-cp37m-macosx_10_9_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

crc32c-2.2-cp36-cp36m-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

crc32c-2.2-cp36-cp36m-win32.whl (30.7 kB view details)

Uploaded CPython 3.6m Windows x86

crc32c-2.2-cp36-cp36m-manylinux2010_x86_64.whl (48.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

crc32c-2.2-cp36-cp36m-manylinux2010_i686.whl (47.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

crc32c-2.2-cp36-cp36m-manylinux1_x86_64.whl (48.0 kB view details)

Uploaded CPython 3.6m

crc32c-2.2-cp36-cp36m-manylinux1_i686.whl (47.1 kB view details)

Uploaded CPython 3.6m

crc32c-2.2-cp36-cp36m-macosx_10_9_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

crc32c-2.2-cp35-cp35m-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

crc32c-2.2-cp35-cp35m-win32.whl (30.7 kB view details)

Uploaded CPython 3.5m Windows x86

crc32c-2.2-cp35-cp35m-manylinux2010_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

crc32c-2.2-cp35-cp35m-manylinux2010_i686.whl (46.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

crc32c-2.2-cp35-cp35m-manylinux1_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.5m

crc32c-2.2-cp35-cp35m-manylinux1_i686.whl (46.9 kB view details)

Uploaded CPython 3.5m

crc32c-2.2-cp35-cp35m-macosx_10_9_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

crc32c-2.2-cp27-cp27mu-manylinux2010_x86_64.whl (46.7 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

crc32c-2.2-cp27-cp27mu-manylinux2010_i686.whl (45.8 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

crc32c-2.2-cp27-cp27mu-manylinux1_x86_64.whl (46.7 kB view details)

Uploaded CPython 2.7mu

crc32c-2.2-cp27-cp27mu-manylinux1_i686.whl (45.8 kB view details)

Uploaded CPython 2.7mu

crc32c-2.2-cp27-cp27m-win_amd64.whl (29.1 kB view details)

Uploaded CPython 2.7m Windows x86-64

crc32c-2.2-cp27-cp27m-win32.whl (29.6 kB view details)

Uploaded CPython 2.7m Windows x86

crc32c-2.2-cp27-cp27m-manylinux2010_x86_64.whl (46.7 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

crc32c-2.2-cp27-cp27m-manylinux2010_i686.whl (45.8 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

crc32c-2.2-cp27-cp27m-manylinux1_x86_64.whl (46.7 kB view details)

Uploaded CPython 2.7m

crc32c-2.2-cp27-cp27m-manylinux1_i686.whl (45.8 kB view details)

Uploaded CPython 2.7m

crc32c-2.2-cp27-cp27m-macosx_10_9_x86_64.whl (28.7 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file crc32c-2.2.tar.gz.

File metadata

  • Download URL: crc32c-2.2.tar.gz
  • Upload date:
  • Size: 38.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2.tar.gz
Algorithm Hash digest
SHA256 2643f63dc935260f017889010998cacb7d3a535b40164d688a428494396289b8
MD5 34134aa928e3913a10178635d0b899f1
BLAKE2b-256 5c695e1f1b4a932bd0be51422c9a5fd2b015c13b3fbbaa3417755f34d5f09e2f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: crc32c-2.2-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 ef4afc420361bec4992c3643cd582299c5053a0c8c5d4d0bdc5a19c9fb2bd558
MD5 c2317091b73d8a6b115cee0ec051a62a
BLAKE2b-256 9d3a24f4e1ee3e1005185fdd7d10f38346a7b7b7a052a863d6cea59d062003db

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 582e99026273056f7d7a660b404681d404e546b9572d4d2da8acd980e56ab222
MD5 d8b44d1f44a6bf109c5ef45e24c9643d
BLAKE2b-256 6926742fd769d8f531cae7df0ee31413ea431d3d6031d03f93e884e8895353dc

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 150aed5cca485f42446b74d6e894b0b7b605d691d07f60ab33978f5b4437b19b
MD5 3fe8b3e895306581dc7b629d15158bdc
BLAKE2b-256 c461b5ac6756aeea0005adfdda5633bb1aca06ee3095316f0fade4614ded26b7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a50ad56567ee8af22b50abfa568526ac5f94f41b8336e69e9efae35b96baf769
MD5 2f9509c4927bba5ec2b4e364e7a9b621
BLAKE2b-256 16aa11b45f546b7e431a957a55b13c8ad7d1a96aa182402fba6f72272e2afb8b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: crc32c-2.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 145af9afe7b4251540c97683e64aa3789041f4d507b8a21f1e24efaded7034bc
MD5 64bda482bfa519722d388185aef10831
BLAKE2b-256 b047fabf459b2611d282d7db714ec324907a647659c295185daec88fa4813ee5

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cf7f9b79512553c4f7068b412c93978c7bb3eb83ef1f6340ada5289a8dd14620
MD5 27107fc0c9409e93acba4700ab04449b
BLAKE2b-256 ab2566abf14768bb4ed4e42cdf1f5fc1fce1e843b229131066004b070acb5121

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 781ef39d664a139f542c1964aeeae2e883bbd6b54098c7529e50a3ca3bd7fa8a
MD5 d8736bce3362eb94d53e8b2c3802d0b6
BLAKE2b-256 d778aa7e5e012614744e5ecb08f5c5857f3bd808092be8f9d609e6b75781c731

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f55179d248021b62b2da7cebddea345c4b9b19890e109fdd64cdcdc6ffa542c5
MD5 864386213365acc9215ee1ae21bd915c
BLAKE2b-256 fdc66a2f431af5079405fe6dea525a790416c9df2c6dc3fac186d1dedf68eac6

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: crc32c-2.2-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 30.5 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 0971c5c88830cce293e5ae520eec15e5684e97fa944b97db48d83ddf26f48de1
MD5 a72db78083836d19b7d789caf8656f28
BLAKE2b-256 af68549871029498331d62dc0930b74d6ddd6776004b56fe3973ec4df58d5ec7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d381d509bffa7a06d998ac560d2212fd82b6425313f1001dc2e54cafdbfdf71
MD5 2d36db8cbe63effada04954b26117d4e
BLAKE2b-256 85b121ab310732b1ed19a8794de32ef87c9781a4c71f716ffd0c4a6e382e2099

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9735e49fe8aec2d6e44e520d7bdce308f198678446fd19ee2b04aeb6473b8abd
MD5 2ca448537d1deb7af72f814dd472653d
BLAKE2b-256 ea4710e2e781d2b018395fa0605f21136f0e790cd6ba9682d1360b50cfc162b4

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 587368f82a5b2d4151d084720395eaa43792448f6babe2bc6ab4c05826c78b50
MD5 69170e7eeffb9f9d748cb3d17bcadd97
BLAKE2b-256 0e1a2ad9908f79925994f912a9ee93145af3b6d14cfa865efb558a17ceb01087

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ec09ac42e92192cda944512e9a7ac3e4ac71dab92fe21d2c1de9064336ca15bc
MD5 0831d5edd492aaebd9fd9796074c7256
BLAKE2b-256 72a8c48e060e30376157ec974d2172c44557040cd2fdaf9884b75d97462c2f2b

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: crc32c-2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e9bc13221c1b8a06e136c7c6fc307054a5f86ac477803a5d6285368a5e1221aa
MD5 ebd7e07229d7e073048786452ec9a847
BLAKE2b-256 88afbc1dd32ed76d8af3d95d9efec180a188e0beff3eea62aaf0772837798046

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 47.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 49bd715b73f811a35973ad403701409fb9f0273b6f15a335bdd0561a3b93e664
MD5 0e626ea23710897fb6f9d9e9d66b09a3
BLAKE2b-256 3df916e274c9cf315542856efa92ebedb82b2d9802196dc2f08b5e915b7737e8

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 46.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 161bc716f199ac14b7d0dcc0ce4e7ceed5894162a1bc029b7009f5ab57f67156
MD5 ab0b5d2349464188a4700b934abde082
BLAKE2b-256 1b137ee0a74a7662654a6eb24246c36372f3c293b7c0a871ac2eca07d6ffd3cf

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 47.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 531d031774d6e85301831fef434eb6ce8634f98646c34636aa3c93bb6a806a52
MD5 a03c48d3c3c5647ae9be16743e2fac59
BLAKE2b-256 e822a509f1c6cfe61c9e427a7cfe202ee34c66b46f778d91b7424ce5b9fead7f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 46.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f33fa5875797bd4342ca1c92e0dad0516f4e7b42fae85b6982aa9816b07dc039
MD5 399ba8a802b0930b18feb9da4727bee9
BLAKE2b-256 844f5c7e5f6380965625e451e8eddbda01cf9ca629d2e4724bff06689a258880

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d6183be8f316a6e0d271e6b7bfec7c8e8a521ac14db38fbdfe26599e1c69e9e
MD5 479698fbeb1cc0c7b0035c8ac4ef5c1e
BLAKE2b-256 ddb2ab505e21d812124b862b62a0113aa03681c55f78a003b95481c9c14df860

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1b4b434d1ab650b46e9995fcff07349b0eefb61baf2d92b9cf0c579e5188267a
MD5 160390ea657baafcad12f424c11afb9d
BLAKE2b-256 b7eca9cc23e4c2a22ec323c43a00da297682311e1e1265c4b714260b4f400315

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: crc32c-2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1d90d4e3dae064715e5c730bdf69dbac0fd2d7b36b57c00381f920ecb0161854
MD5 48943844b43bd6f1cb4fd6c8ecd5d0c6
BLAKE2b-256 f21462b4d90f4cf9113b597c177e7fc0256037692c987ef55de5899d731f0f82

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 48.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1335afa8c008902b9a62f4f946915a12ba55489cf0a88c79ff7a852fd01e3bf1
MD5 20bb217b112fc68d5a97cbbab69ae434
BLAKE2b-256 5eb5085b9c06649ec6e455d650818bb6b9ad792b90e2ee51db8721621920ba91

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 47.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 162e3dff47bd313b82f2553e49fbad371b12c315fc62ada48bac19623e1c2b0c
MD5 31ec3a154a99d6f104a6a25e854fbb57
BLAKE2b-256 19df5a3a8673e09a336b7232db56b6dc5581bd8d65cd88f0e1aa083442c6a0eb

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 48.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71eb0cb3c648019d3d27cd843ed2c7ab2f75c57b47a1b3d8df67b2619249bda6
MD5 82165c9460c7db882883a44b76499e25
BLAKE2b-256 013df54eee905a010c34b5f1c0a475b48b521820ef971f698fa12a7418d1ec79

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 47.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5bfd2b54073b55dd9d1b9363a3c2dbcaaee673f1c1ca7ef46e5ca7074c777ce7
MD5 801072ac8feda51649f453da0c469a36
BLAKE2b-256 257a56e5f492051d036c9c90428fc9409c9f880b66224734971b72cc8f8c8b76

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f453a8ab5915a675d10fc750f5176a190d83fe2e81d42784cfe0de3bd7c7adc0
MD5 fa58e41a0d4e73d6040317f7c1ea5b2a
BLAKE2b-256 8fa1faead7a612e1cc836019e825ce1b3be20d6d223fd8801a6789139109ed96

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d19996c39fafcb54994a102d823aa0222e0de635cef527686b9cfd04c9aeb473
MD5 4179af3f9dbb9e4c4e89212f3e78b6f1
BLAKE2b-256 5444ba4fbc222b8762675e3caed32980b1bfc0c07259eec8fb8dc864b932f467

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: crc32c-2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 186b32cedef12543b6e22bee9a19ff59f3952408d51844cbaa47490573fd3d91
MD5 ebe82299b81f8437cf00312da82d0628
BLAKE2b-256 a1392edd173e5dfe592a696d7f8c0f2050bee73251f23de3b33bddcc644b032c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 48.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9a3b589f514386c22e39aaaabc5e667160f2a6337bc7206dd842cc40234c08b8
MD5 4d881151ebfebf3413be0a8993f59915
BLAKE2b-256 db854656cc0ac33be2725d6de41eabfeb72f86c194fe26decf28162d72f9a642

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 48.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e758995c390da5df1148588746e7fd7e318841f6b2259a8951ed7b0bbe82271a
MD5 abf7a9b0f3e0189f7e0530c3cd7b95fd
BLAKE2b-256 9c1e9c8698d342d42469bd09d960fa07d527f133bd5e305f75a0fe9ddc03a4f9

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 48.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c2586d8c44f4a4cc5875c01018fe0447a2d5032c00878d955f9c81d5216685a6
MD5 7b4fae3a04a87860b77ce325ea2934b8
BLAKE2b-256 6e2d1f874c03d13019ca1fa7a59d5df271d766eeb377b16a01766aaddbac6b54

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 48.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0340b2e7bb84b172cda49f4225a0519ba6182f1d32dc9407db7722b612def3ca
MD5 d95031940d862d9c382e6773bed855ef
BLAKE2b-256 76c471003a1b40e48d788ca6c69e3293d4a37abbb7398e06dab520ae3b31457c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1dc03285b92fda24219c970ce4f6712a2e6b8021e39b9c5df6a288fed7f7d19a
MD5 2744974eb8dbd2d3a16dfd6dc736a8a2
BLAKE2b-256 60f0ea3bef76f5c1f4e6b9a93c989d3ae73423c548a3b02e76d7cbb65efc031f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e5b8134713db92d0d7f53cc6b415572ceac19ffb108fd57e304ccb179ec120b5
MD5 0b6585fcbc97d2e75d917c4b4b0981c8
BLAKE2b-256 7e1bfd584087ced9a534b23e780b5ba707ffe354f2806ef02018447b7d448076

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: crc32c-2.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5f5e488879b5016d19e09ce3821abef8531c8385bf5f81499ff9e78b5386ed1a
MD5 5bd0589733fee971a5de67dd45b4837e
BLAKE2b-256 a03783383d62089ce86f06ae467adcd87f7d382a8130d50cd807abe516f6d618

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 48.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f6b0b922446f502e88dbfda941dfb9a9ff9378b8677dc3e900de5a46a8e3eee8
MD5 48efe8112f38bf9bf44eec5a9c5ed7a1
BLAKE2b-256 2fb4e2e293d323f10d03929ed2b68de14cdddd523700381de6aecec561f7c2d1

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 47.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4aa8e5bce44fcf3486560a5576fe7fb8345ed1017cc660ae443d8347e15f9efb
MD5 e6cdfd7b8473e6d5cea04ed2f74a4e88
BLAKE2b-256 437867cea8cce86dff87952e7e9c5e7947502fe638134fec140b684a9594251e

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 48.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 61850f87faa088f0e52820d760ae0da5d700e84ebc6acf0937fb3536ab99571a
MD5 e0947872c4043b39b3a1f8a2eb5bfb50
BLAKE2b-256 b8371a7f154c869991431d19c7a67033f8412a0537d3841cee8f7342d5d2095a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 47.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 47a6ec123f0a736525f9949b8652ff2a415f38ab2c8ad86c4edb217f18f4b113
MD5 6fccc41f4861469d2051766280be73cd
BLAKE2b-256 d8059ba22ead18c3185275669fe2008002f1b3790741c9c21f61a13b3f2634f7

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47448165b0728f2ecd1cf42caee92d382c32753231a17f4b881f94e15394729f
MD5 a2eb9b9172168fd6abcf15fd0e68f02a
BLAKE2b-256 dd362b5f6a2cd8f5b8230c0b49028e5eaefb6963be5a042605b17f157eea658a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4c84dd684d7d69348bbe0e09d850b6418b7bf2bf64ab560ca113a9645aa4f3da
MD5 ceb3bf31bfb31978935079bb670ae96c
BLAKE2b-256 fac7ebd2ec9871e775be4f46f3df4512cd7ecc48e42dc23b13cdd353da492e56

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: crc32c-2.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ebaf2939b5dc46cc01065ff951c4c9da2bc08315f44972e5d0b3d743eb9f8cc4
MD5 f9066a503dc737a2faacec3afb6b0275
BLAKE2b-256 79149d9d3fa253ee78eb6c631345c52534a18d1578d40f95ad94418bf7872053

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 47.8 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1fb8eb8f3ae14353eec59ca5740346bbda08f7b01f741f20a68301890ccc5580
MD5 fa43ed2f1190bf6f11823285fe38e1a2
BLAKE2b-256 b4d147f292e7ff4f44ea56cfa8d81281572cfe77e030f3d4825c2aad95d5f60f

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 46.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 85a2664f2ef34b0c4305e8d6d7f813032c5ceab23cb9f5aee0253f1785f67ba7
MD5 49bc8e0b5c01d3e8d4578324b7e55b96
BLAKE2b-256 700a2034486d8669b098b45bc3e4fb85597660331eaefae6d5fee37292853d69

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 47.8 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4aa8441d02985c93f9aae8aa3ad72d3c4b6524a3499338bbda92a6fe6f4e29da
MD5 ecefc3a4c716df2bdb404d20bd4ba36a
BLAKE2b-256 490a04a33358fccfdcdce62daa3a7fb7120655fe53afccf9ccee18c7b7f55e38

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 46.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 80a8d41cac2caef82edf0edcc5433521c264692055e74ea284aa1558fd71ae1b
MD5 7d2804998bf7a663e5364f0b4d22117c
BLAKE2b-256 b6a844510d2c7b67ba3391c3b7062dabcfd907a692e9d01e905f247efa1c2149

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14fe935270b1fb6c474647c42f68e9389f6e3e56da218152e8a4a26f267f626e
MD5 c6da0447718c215d20f4713cac4daee7
BLAKE2b-256 b0f18782a183873c5faa8c6945f7c996e7aa695032515d7e3d33c356e1b1bbdb

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 46.7 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b8382f3634610ec794f08e78b3ec8b54e46327d33cc913471bdd951e52884447
MD5 ea28f8ed7d026ce19425cfd2eeb81f0d
BLAKE2b-256 e138ef44d99d53ea1885b634956094c290f97256daea00652e745f73e01357a1

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5a7c07503c39e88214fac8a7fdadebba97c42819b31e732997cce551b1147446
MD5 9d204003e903a09b10812c275427b6c5
BLAKE2b-256 27fdc3d55bbe059ea3ec9cb391fbe59396b26009a1bb516d305aa654f4f2459c

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 46.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d3cefc649901b53240af8e3d1957154206822240c4b95d10ed6a96af148a05be
MD5 9f3d5c69530c4e1696240dad00ed9203
BLAKE2b-256 a9ee992e7d29d23cfdf04c0210999ec20f7a030f37fe6a53a70333605e6f0f43

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f570a1735af0afdffbd24ac062e82f652911a0cf2ba8ca4a9709bec66655d2c0
MD5 2c1556bb05c0351bba424f601d666b9c
BLAKE2b-256 04b42583ed0bdd807eb6f96f0239073a3bf321deb0eb6af670c8eec5c6b89238

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 29.1 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 dac951b0e9ca4e33c978dfc318bc07df4f5acf45c72bcc462326411d284b153d
MD5 d2d5147080774d5b97251f5297a4b574
BLAKE2b-256 b79292247a44c6644e92c3201d482f0c0591921c0cfdc354702416de35dd0e8a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 51ee3a1aca37ac71ed8a2db7f254e9dd2c81b18788cdeb5f27c46c630d65942e
MD5 2da159e2f0c60e4b0a58e34bbc89ed13
BLAKE2b-256 15e2b6d9018c6a560b91905c698c55bd34a5caf24634ade55a74a4519ae484fb

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 46.7 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 51f991c4f63ba3cb055c4d735041e238a397c928c30d9444121f6c9e1b492cde
MD5 b4a86b59ccf6bc758d5c3ce86d41d9a6
BLAKE2b-256 8a6fad5e816713f605e7db40a651c5ebefa826b2afa26d5c7704bd25f9957779

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 414e767a851983a143b718a2dac0a53fdcefa4443737762914ba67deb4953db8
MD5 e47136e45cca6f2515f64791cf10983a
BLAKE2b-256 fa7fc9ef7911eeaa8b2f6e24b2165a912e4d89cd6891df537a99d8d56b860858

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 46.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fe1714c521d8bd49637ecbca75920536c200735cbd192781cde8f16bf38d353a
MD5 ad3490fc67eaead60527d0d6325ee932
BLAKE2b-256 539fae4d93b9aed85cec5f64c557ceee50c75aacd7b78201be97e16b83678082

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8265afede8aeaf79cfffb6b315668cb6d4b6151cdc243f656e5149d2f534a5e
MD5 483ee40cde87844a3e785e458a63aee1
BLAKE2b-256 6992cb92708163a0e165a052191db65ba9a7b7d216bb24c55c7b3d750b88908a

See more details on using hashes here.

Provenance

File details

Details for the file crc32c-2.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: crc32c-2.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.7 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for crc32c-2.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9adcdce188d23fb9e046461a271b84f1ea177cd65fd87d7217bb309c33eabb2e
MD5 d2b74049fce84526dabfafb51251379f
BLAKE2b-256 299561b94512360348cba28f51eb479a2bdeb5dc4128088b35d6075deb4ad0f6

See more details on using hashes here.

Provenance

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