Skip to main content

Python binding for xxHash

Project description

Github Actions Status Latest Version Supported Python versions License

xxhash is a Python binding for the xxHash library by Yann Collet.

Installation

$ pip install xxhash

You can also install using conda:

$ conda install -c conda-forge python-xxhash

Installing From Source

$ pip install --no-binary xxhash xxhash

Prerequisites

On Debian/Ubuntu:

$ apt-get install python-dev gcc

On CentOS/Fedora:

$ yum install python-devel gcc redhat-rpm-config

Linking to libxxhash.so

By default python-xxhash will use bundled xxHash, we can change this by specifying ENV var XXHASH_LINK_SO:

$ XXHASH_LINK_SO=1 pip install --no-binary xxhash xxhash

Usage

Module version and its backend xxHash library version can be retrieved using the module properties VERSION AND XXHASH_VERSION respectively.

>>> import xxhash
>>> xxhash.VERSION
'2.0.0'
>>> xxhash.XXHASH_VERSION
'0.8.0'

This module is hashlib-compliant, which means you can use it in the same way as hashlib.md5.

update() – update the current digest with an additional string
digest() – return the current digest value
hexdigest() – return the current digest as a string of hexadecimal digits
intdigest() – return the current digest as an integer
copy() – return a copy of the current xxhash object
reset() – reset state

md5 digest returns bytes, but the original xxh32 and xxh64 C APIs return integers. While this module is made hashlib-compliant, intdigest() is also provided to get the integer digest.

Constructors for hash algorithms provided by this module are xxh32() and xxh64().

For example, to obtain the digest of the byte string b'Nobody inspects the spammish repetition':

>>> import xxhash
>>> x = xxhash.xxh32()
>>> x.update(b'Nobody inspects')
>>> x.update(b' the spammish repetition')
>>> x.digest()
b'\xe2);/'
>>> x.digest_size
4
>>> x.block_size
16

More condensed:

>>> xxhash.xxh32(b'Nobody inspects the spammish repetition').hexdigest()
'e2293b2f'
>>> xxhash.xxh32(b'Nobody inspects the spammish repetition').digest() == x.digest()
True

An optional seed (default is 0) can be used to alter the result predictably:

>>> import xxhash
>>> xxhash.xxh64('xxhash').hexdigest()
'32dd38952c4bc720'
>>> xxhash.xxh64('xxhash', seed=20141025).hexdigest()
'b559b98d844e0635'
>>> x = xxhash.xxh64(seed=20141025)
>>> x.update('xxhash')
>>> x.hexdigest()
'b559b98d844e0635'
>>> x.intdigest()
13067679811253438005

Be careful that xxh32 takes an unsigned 32-bit integer as seed, while xxh64 takes an unsigned 64-bit integer. Although unsigned integer overflow is defined behavior, it’s better not to make it happen:

>>> xxhash.xxh32('I want an unsigned 32-bit seed!', seed=0).hexdigest()
'f7a35af8'
>>> xxhash.xxh32('I want an unsigned 32-bit seed!', seed=2**32).hexdigest()
'f7a35af8'
>>> xxhash.xxh32('I want an unsigned 32-bit seed!', seed=1).hexdigest()
'd8d4b4ba'
>>> xxhash.xxh32('I want an unsigned 32-bit seed!', seed=2**32+1).hexdigest()
'd8d4b4ba'
>>>
>>> xxhash.xxh64('I want an unsigned 64-bit seed!', seed=0).hexdigest()
'd4cb0a70a2b8c7c1'
>>> xxhash.xxh64('I want an unsigned 64-bit seed!', seed=2**64).hexdigest()
'd4cb0a70a2b8c7c1'
>>> xxhash.xxh64('I want an unsigned 64-bit seed!', seed=1).hexdigest()
'ce5087f12470d961'
>>> xxhash.xxh64('I want an unsigned 64-bit seed!', seed=2**64+1).hexdigest()
'ce5087f12470d961'

digest() returns bytes of the big-endian representation of the integer digest:

>>> import xxhash
>>> h = xxhash.xxh64()
>>> h.digest()
b'\xefF\xdb7Q\xd8\xe9\x99'
>>> h.intdigest().to_bytes(8, 'big')
b'\xefF\xdb7Q\xd8\xe9\x99'
>>> h.hexdigest()
'ef46db3751d8e999'
>>> format(h.intdigest(), '016x')
'ef46db3751d8e999'
>>> h.intdigest()
17241709254077376921
>>> int(h.hexdigest(), 16)
17241709254077376921

Besides xxh32/xxh64 mentioned above, oneshot functions are also provided, so we can avoid allocating XXH32/64 state on heap:

xxh32_digest(bytes, seed=0)
xxh32_intdigest(bytes, seed=0)
xxh32_hexdigest(bytes, seed=0)
xxh64_digest(bytes, seed=0)
xxh64_intdigest(bytes, seed=0)
xxh64_hexdigest(bytes, seed=0)
>>> import xxhash
>>> xxhash.xxh64('a').digest() == xxhash.xxh64_digest('a')
True
>>> xxhash.xxh64('a').intdigest() == xxhash.xxh64_intdigest('a')
True
>>> xxhash.xxh64('a').hexdigest() == xxhash.xxh64_hexdigest('a')
True
>>> xxhash.xxh64_hexdigest('xxhash', seed=20141025)
'b559b98d844e0635'
>>> xxhash.xxh64_intdigest('xxhash', seed=20141025)
13067679811253438005L
>>> xxhash.xxh64_digest('xxhash', seed=20141025)
'\xb5Y\xb9\x8d\x84N\x065'
In [1]: import xxhash

In [2]: %timeit xxhash.xxh64_hexdigest('xxhash')
268 ns ± 24.1 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

In [3]: %timeit xxhash.xxh64('xxhash').hexdigest()
416 ns ± 17.3 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

XXH3 hashes are available since v2.0.0 (xxHash v0.8.0), they are:

Streaming classes:

xxh3_64
xxh3_128

Oneshot functions:

xxh3_64_digest(bytes, seed=0)
xxh3_64_intdigest(bytes, seed=0)
xxh3_64_hexdigest(bytes, seed=0)
xxh3_128_digest(bytes, seed=0)
xxh3_128_intdigest(bytes, seed=0)
xxh3_128_hexdigest(bytes, seed=0)

And aliases:

xxh128 = xxh3_128
xxh128_digest = xxh3_128_digest
xxh128_intdigest = xxh3_128_intdigest
xxh128_hexdigest = xxh3_128_hexdigest

Caveats

SEED OVERFLOW

xxh32 takes an unsigned 32-bit integer as seed, and xxh64 takes an unsigned 64-bit integer as seed. Make sure that the seed is greater than or equal to 0.

ENDIANNESS

As of python-xxhash 0.3.0, digest() returns bytes of the big-endian representation of the integer digest. It used to be little-endian.

DONT USE XXHASH IN HMAC

Though you can use xxhash as an HMAC hash function, but it’s highly recommended not to.

xxhash is NOT a cryptographic hash function, it is a non-cryptographic hash algorithm aimed at speed and quality. Do not put xxhash in any position where cryptographic hash functions are required.

CHANGELOG

v3.2.0 2022-12-28

This is the last version to support Python 3.6

  • Build Python 3.11 wheels.

  • Remove setup.py test_suites, call unittest directly

v3.1.0 2022-10-19

  • Type annotations.

  • Enabled muslinux wheels building.

v3.0.0 2022-02-25

  • New set algorithms_available lists all implemented algorithms in xxhash package.

  • Upgrade xxHash to v0.8.1.

  • Drop support for EOL Python versions, require python >= 3.6 from now on.

  • Migrate to github actions and build arm64 wheels for macOS.

  • Always release GIL.

v2.0.2 2021-04-15

  • Fix Travis CI OSX dpl python2.7 get-pip.py error

v2.0.1 2021-04-15

  • Only to trigger Python 3.9 wheels building.

v2.0.0 2020-08-03

  • Require xxHash version >= v0.8.0

  • Upgrade xxHash to v0.8.0

  • XXH3 hashes: xxh3_64, xxh3_128, and their oneshot functions

v1.4.4 2020-06-20

  • Upgrade xxHash to v0.7.3

  • Stop using PEP393 deprecated APIs

  • Use XXH(32|64)_canonicalFromHash to replace u2bytes and ull2bytes

v1.4.3 2019-11-12

  • Upgrade xxHash to v0.7.2

  • Python 3.8 wheels

v1.4.2 2019-10-13

  • Fixed: setup.py fails when reading README.rst and the default encoding is not UTF-8

v1.4.1 2019-08-27

  • Fixed: xxh3.h in missing from source tarball

v1.4.0 2019-08-25

  • Upgrade xxHash to v0.7.1

v1.3.0 2018-10-21

v1.2.0 2018-07-13

  • Add oneshot functions xxh{32,64}_{,int,hex}digest

v1.1.0 2018-07-05

  • Allow input larger than 2GB

  • Release the GIL on sufficiently large input

  • Drop support for Python 3.2

v1.0.1 2017-03-02

  • Free state actively, instead of delegating it to ffi.gc

v1.0.0 2017-02-10

  • Fixed copy() segfault

  • Added CFFI variant

v0.6.3 2017-02-10

  • Fixed copy() segfault

v0.6.2 2017-02-10

  • Upgrade xxHash to v0.6.2

v0.6.1 2016-06-26

  • Upgrade xxHash to v0.6.1

v0.5.0 2016-03-02

  • Upgrade xxHash to v0.5.0

v0.4.3 2015-08-21

  • Upgrade xxHash to r42

v0.4.1 2015-08-16

  • Upgrade xxHash to r41

v0.4.0 2015-08-05

  • Added method reset

  • Upgrade xxHash to r40

v0.3.2 2015-01-27

  • Fixed some typos in docstrings

v0.3.1 2015-01-24

  • Upgrade xxHash to r39

v0.3.0 2014-11-11

  • Change digest() from little-endian representation to big-endian representation of the integer digest. This change breaks compatibility (digest() results are different).

v0.2.0 2014-10-25

  • Make this package hashlib-compliant

v0.1.3 2014-10-23

  • Update xxHash to r37

v0.1.2 2014-10-19

  • Improve: Check XXHnn_init() return value.

  • Update xxHash to r36

v0.1.1 2014-08-07

  • Improve: Can now be built with Visual C++ Compiler.

v0.1.0 2014-08-05

  • New: XXH32 and XXH64 type, which support partially update.

  • Fix: build under Python 3.4

v0.0.2 2014-08-03

  • NEW: Support Python 3

v0.0.1 2014-07-30

  • NEW: xxh32 and xxh64

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

xxhash-3.2.0.tar.gz (74.6 kB view details)

Uploaded Source

Built Distributions

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

xxhash-3.2.0-pp39-pypy39_pp73-win_amd64.whl (31.0 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (34.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (43.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

xxhash-3.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (32.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.2.0-pp38-pypy38_pp73-win_amd64.whl (31.0 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (34.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (43.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

xxhash-3.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (32.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.2.0-pp37-pypy37_pp73-win_amd64.whl (31.0 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (35.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (43.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

xxhash-3.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (32.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.2.0-cp311-cp311-win_amd64.whl (30.9 kB view details)

Uploaded CPython 3.11Windows x86-64

xxhash-3.2.0-cp311-cp311-win32.whl (31.1 kB view details)

Uploaded CPython 3.11Windows x86

xxhash-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (233.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

xxhash-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl (290.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

xxhash-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl (210.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

xxhash-3.2.0-cp311-cp311-musllinux_1_1_i686.whl (197.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

xxhash-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (267.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

xxhash-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (213.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xxhash-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (288.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xxhash-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (208.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xxhash-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xxhash-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (221.4 kB view details)

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

xxhash-3.2.0-cp311-cp311-macosx_11_0_arm64.whl (31.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxhash-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxhash-3.2.0-cp310-cp310-win_amd64.whl (30.9 kB view details)

Uploaded CPython 3.10Windows x86-64

xxhash-3.2.0-cp310-cp310-win32.whl (31.1 kB view details)

Uploaded CPython 3.10Windows x86

xxhash-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (232.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

xxhash-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl (289.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

xxhash-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl (210.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

xxhash-3.2.0-cp310-cp310-musllinux_1_1_i686.whl (196.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

xxhash-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (266.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

xxhash-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xxhash-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xxhash-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (207.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xxhash-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xxhash-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (220.6 kB view details)

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

xxhash-3.2.0-cp310-cp310-macosx_11_0_arm64.whl (31.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-3.2.0-cp39-cp39-win_amd64.whl (30.9 kB view details)

Uploaded CPython 3.9Windows x86-64

xxhash-3.2.0-cp39-cp39-win32.whl (31.1 kB view details)

Uploaded CPython 3.9Windows x86

xxhash-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (231.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

xxhash-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl (289.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

xxhash-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl (209.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

xxhash-3.2.0-cp39-cp39-musllinux_1_1_i686.whl (196.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

xxhash-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (266.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

xxhash-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

xxhash-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

xxhash-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (207.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

xxhash-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

xxhash-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (220.3 kB view details)

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

xxhash-3.2.0-cp39-cp39-macosx_11_0_arm64.whl (31.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xxhash-3.2.0-cp38-cp38-win_amd64.whl (30.9 kB view details)

Uploaded CPython 3.8Windows x86-64

xxhash-3.2.0-cp38-cp38-win32.whl (31.1 kB view details)

Uploaded CPython 3.8Windows x86

xxhash-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (232.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

xxhash-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl (290.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

xxhash-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl (210.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

xxhash-3.2.0-cp38-cp38-musllinux_1_1_i686.whl (197.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

xxhash-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (266.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

xxhash-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (213.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

xxhash-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (288.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

xxhash-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (208.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

xxhash-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

xxhash-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (221.2 kB view details)

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

xxhash-3.2.0-cp38-cp38-macosx_11_0_arm64.whl (31.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

xxhash-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

xxhash-3.2.0-cp37-cp37m-win_amd64.whl (30.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

xxhash-3.2.0-cp37-cp37m-win32.whl (31.1 kB view details)

Uploaded CPython 3.7mWindows x86

xxhash-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl (232.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

xxhash-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl (289.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

xxhash-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (210.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

xxhash-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl (196.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

xxhash-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl (266.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

xxhash-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (213.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

xxhash-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (288.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

xxhash-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (208.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

xxhash-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

xxhash-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (221.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

xxhash-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (34.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

xxhash-3.2.0-cp36-cp36m-win_amd64.whl (42.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

xxhash-3.2.0-cp36-cp36m-win32.whl (43.1 kB view details)

Uploaded CPython 3.6mWindows x86

xxhash-3.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl (231.3 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

xxhash-3.2.0-cp36-cp36m-musllinux_1_1_s390x.whl (289.0 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ s390x

xxhash-3.2.0-cp36-cp36m-musllinux_1_1_ppc64le.whl (209.4 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ppc64le

xxhash-3.2.0-cp36-cp36m-musllinux_1_1_i686.whl (195.9 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

xxhash-3.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl (265.8 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

xxhash-3.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

xxhash-3.2.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

xxhash-3.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (207.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

xxhash-3.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

xxhash-3.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (220.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

xxhash-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (34.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file xxhash-3.2.0.tar.gz.

File metadata

  • Download URL: xxhash-3.2.0.tar.gz
  • Upload date:
  • Size: 74.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0.tar.gz
Algorithm Hash digest
SHA256 1afd47af8955c5db730f630ad53ae798cf7fae0acb64cebb3cf94d35c47dd088
MD5 9bf4ee070c0d0bcc95e1083fd982233d
BLAKE2b-256 2490666a4d4d96a93ddaaaa0142ef8c1bd20f7135a7f1114a894f4d6efac16c5

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9d3f686e3d1c8900c5459eee02b60c7399e20ec5c6402364068a343c83a61d90
MD5 8db266556f911a95da9e1e7f5550deb0
BLAKE2b-256 1ff39b5dc7cbabdc058d53393976e1d4abc062c64da822934a1a9a8adb71c228

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ec1f57127879b419a2c8d2db9d9978eb26c61ae17e5972197830430ae78d25b
MD5 e945c85b51801cfd2e19bcdea9f08ae2
BLAKE2b-256 6b01beed761c34dda09c02add799607cef656bfb953e7d7adbc4690f381b4b87

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0773cd5c438ffcd5dbff91cdd503574f88a4b960e70cedeb67736583a17a918
MD5 eb911238976d02731c18f64cc7087986
BLAKE2b-256 1e5bdd6d70698e4d52970baafb03d03dd9abcd224fd089ce9bbd256916bf1614

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d4b15c00e807b1d3d0b612338c814739dec310b80fb069bd732b98ddc709ad7
MD5 793ab6719eb402d709f3792aa2be0f52
BLAKE2b-256 84aee14f9c6a41db2ea74dd09f62c2ff5f0a2eb9dc25d7e70417865fa07e419a

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7b79f0f302396d8e0d444826ceb3d07b61977793886ebae04e82796c02e42dc
MD5 cf4f2e0a36151ca9f00ecf1999121bf1
BLAKE2b-256 79935a30d6cccb71b3cd8ed2a78a1cfed2e90dcf72becf9654d0bd9e350a5b40

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 61b0bcf946fdfd8ab5f09179dc2b5c74d1ef47cedfc6ed0ec01fdf0ee8682dd3
MD5 a5197ff826caa079a4771bf715359e4c
BLAKE2b-256 992842db2bf1ad212d20772a878724a505e29d6a902fdd576c75d404b3e80c58

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2d15a707e7f689531eb4134eccb0f8bf3844bb8255ad50823aa39708d9e6755
MD5 3e200339ed7b8f73d7ade24ea2ad5fc5
BLAKE2b-256 28156f01b743046251c087b5ff4d5a3e7cdcc69f665045e5a105d0fdff8ecd1d

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 761df3c7e2c5270088b691c5a8121004f84318177da1ca1db64222ec83c44871
MD5 05b613285c0023ce91d97c8425c0fdfc
BLAKE2b-256 2190a06a899f396edd40f28a4c10bbe70b7f57095dae2353128e95f188ad87a7

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6b2ba4ff53dd5f57d728095e3def7375eb19c90621ce3b41b256de84ec61cfd
MD5 88038fb3474ef33d22b20494a35f02c5
BLAKE2b-256 90362e455c21090ad89601ad4abdf8d62041669e651556c2ac148baa19fb2a6d

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5e8db6e1ee7267b7c412ad0afd5863bf7a95286b8333a5958c8097c69f94cf5
MD5 04efe7e99e55b7b01dbbfa4346102b12
BLAKE2b-256 69e6838b0135d06c245af78b2fa09502765a2229539c427078ba422c3042f122

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3b1f3c6d67fa9f49c4ff6b25ce0e7143bab88a5bc0f4116dd290c92337d0ecc7
MD5 f49309b21602158bc264cb6ad9585124
BLAKE2b-256 d00fe1d5b00909e26a13058e9b46b49b24d1c72329cdfe6aa277a820d3fccbb0

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5f3e33fe6cbab481727f9aeb136a213aed7e33cd1ca27bd75e916ffacc18411
MD5 94fb3385f8fa7ec1db723deaebc5fee1
BLAKE2b-256 8143b02cca5251a636f718824400730ea7a00becbfd5524f7c92a6f7bc74357d

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8970f6a411a9839a02b23b7e90bbbba4a6de52ace009274998566dc43f36ca18
MD5 4524b640d84b91a6ecc4a585514d0d8b
BLAKE2b-256 ff19728edea799b8ca1fcb763c503a8fd1bf1a974d7e36663de3bd1240efbec3

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 368265392cb696dd53907e2328b5a8c1bee81cf2142d0cc743caf1c1047abb36
MD5 dbcf88386476d53411920bfa3bfdb8f4
BLAKE2b-256 4014213a70ef92cc606de69cca85e598b08c06ef45795a45801bde6734bce1a2

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92fd765591c83e5c5f409b33eac1d3266c03d3d11c71a7dbade36d5cdee4fbc0
MD5 b236d8f52bc74fd62d0ab6fae9da17aa
BLAKE2b-256 be356c3b0bcb7c3240a04ddc925fddd3989b505a6a687f77a6b16a7e37e4c6ad

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a32d546a1752e4ee7805d6db57944f7224afa7428d22867006b6486e4195c1f3
MD5 cd3d1677aff664c20b7b382f09cb0e0b
BLAKE2b-256 d12dbab6a443fb27d72136118912e6c05105104a02bdb2825e9158b530875e88

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 31.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a433f6162b18d52f7068175d00bd5b1563b7405f926a48d888a97b90a160c40d
MD5 f6c0e72d971d204e07b00896c23ca002
BLAKE2b-256 21eb0a324e50b193db947d29aaa55ccd12633c10747aa958fa69fdd96021dafa

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc8878935671490efe9275fb4190a6062b73277bd273237179b9b5a2aa436153
MD5 11451abb20fb7fd0f33bed773c8d4d6c
BLAKE2b-256 70a57eea66d5716ebc788a83968bf71b8ba19ff8a3e79f6ea95f2a4973084aa4

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 a0e1bd0260c1da35c1883321ce2707ceea07127816ab625e1226ec95177b561a
MD5 38454ecf82566c287ce963c8d784995a
BLAKE2b-256 92e856d5ebe409086e1714bc65c56a0795453cbc4181237def2f26f09981d265

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 cead7c0307977a00b3f784cff676e72c147adbcada19a2e6fc2ddf54f37cf387
MD5 ba8b973daaaf08cc2f200ca26e31b7b0
BLAKE2b-256 e921511d7bca2af2f10e5b2a9873d47df378d1c1fed894667daddb8eb5869f5a

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f94163ebe2d5546e6a5977e96d83621f4689c1054053428cf8d4c28b10f92f69
MD5 77df5675796162f4a4a2ad999173c04c
BLAKE2b-256 1b75c861c9ea0ce5d67c6fc2403d33b5413c35d9e51477d79b8e4b78fff8c9f1

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b0c094d5e65a46dbf3fe0928ff20873a747e6abfd2ed4b675beeb2750624bc2e
MD5 feccebc51fbcf5ca158cb8338810763c
BLAKE2b-256 4187088fe48dc34e467d59d6d39399798ed57b05ab0c54bb7e29313abda1e30e

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 919bc1b010aa6ff0eb918838ff73a435aed9e9a19c3202b91acecd296bf75607
MD5 13cd312fb32dfa0a3df4eff5eb5b4e1a
BLAKE2b-256 fc03d4d625cd19fb5ea6f73ffc81d726fb0c0c6ede36ada7438c3efaeaa907fe

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 994e4741d5ed70fc2a335a91ef79343c6b1089d7dfe6e955dd06f8ffe82bede6
MD5 6861eb39a4541e8d702b282f5b5c185c
BLAKE2b-256 63e14680269ac55d90d48659fafb992360ab3bf8138285f8644d397079cde6c4

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4d4519123aac73c93159eb8f61db9682393862dd669e7eae034ecd0a35eadac
MD5 a013bb7ead22477fc1361e1c13747e4f
BLAKE2b-256 756ffdea482230052d101dfbf0fc881d35005998ce01ed1bddf1342435b49347

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01f36b671ff55cb1d5c2f6058b799b697fd0ae4b4582bba6ed0999678068172a
MD5 31c8dcd7a7c3af4ebee24851f2eb7c5f
BLAKE2b-256 882002fa1f8395e052335cf324e021f8fe1cef2ca8ce2c22308db85cba6f487f

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17b65454c5accbb079c45eca546c27c4782f5175aa320758fafac896b1549d27
MD5 b13749dbc863db82a6115f46aba4ba98
BLAKE2b-256 4836ec2726918e8c410ae04e5272e37042ca0c0ea54cf3362f6bf20fbe07e970

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75bb5be3c5de702a547715f320ecf5c8014aeca750ed5147ca75389bd22e7343
MD5 87251c7b01801eb09157f967bd30999e
BLAKE2b-256 037abae33ff4d36208f7ffe1f7f188c12d3492523ddf33b30e6a1e34af5cd77a

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5daff3fb5bfef30bc5a2cb143810d376d43461445aa17aece7210de52adbe151
MD5 946637c1ac0b992d4eae4b57bf50aaf5
BLAKE2b-256 73e59df2bfe36fe98ff7b177591008d09a8b6a0fb01923c598d641f7fb976dae

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a0f7a16138279d707db778a63264d1d6016ac13ffd3f1e99f54b2855d6c0d8e1
MD5 799eb868804fd3c75b5a18e727445323
BLAKE2b-256 db16e9b793ee8542449eeb99682d2228af1525de1dab127c61ce142fb885c2b8

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 31.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 20181cbaed033c72cb881b2a1d13c629cd1228f113046133469c9a48cfcbcd36
MD5 12776ac64d5ec9c5caf8745c716a0fef
BLAKE2b-256 59d365d7cebf8ed49afeff7aa3cf5421db9af6b046ac411dae8423a1eba11270

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e8ed3bd2b8bb3277710843ca63e4f5c3ee6f8f80b083be5b19a7a9905420d11e
MD5 e0c9034e1159b99d94dffb59b1b25eff
BLAKE2b-256 8d0af0ccaab9d63c5b4f97e3aac669018ae7a116fbb5532c9ff8846f177a3eca

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e998efb190653f70e0f30d92b39fc645145369a4823bee46af8ddfc244aa969d
MD5 cc9f155aaa2e0bb303d0068189f634b8
BLAKE2b-256 d00b6c101322d357b68cb857bdda62bca7236e7c87214177757cc03fbe578afc

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a892b4b139126a86bfdcb97cd912a2f8c4e8623869c3ef7b50871451dd7afeb0
MD5 510fc5f0dd09b977c8e25b045acb5bc8
BLAKE2b-256 9509a0c0b6163d7cdbac3dac264ffd135846254d7894f8438f83b93152659771

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 89585adc73395a10306d2e2036e50d6c4ac0cf8dd47edf914c25488871b64f6d
MD5 55e08c68291e69b2357e5084ba88f6d0
BLAKE2b-256 5bd7bd456487842b5e05b1c02c19a06887bc039f239e6cd9dca453ee2ae83009

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d93a44d0104d1b9b10de4e7aadf747f6efc1d7ec5ed0aa3f233a720725dd31bd
MD5 3a058974b0eab09a9f677851442acde9
BLAKE2b-256 cf9c0752f0961929f80a164a8704d8eca85c116da700c15652a26bede8cd73c8

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 561076ca0dcef2fbc20b2bc2765bff099e002e96041ae9dbe910a863ca6ee3ea
MD5 a076057b9480352558c0da2ea0cbfa21
BLAKE2b-256 32c34d24d4868fab9d9c8980ce00f01e3302565b06e712129d7dda779f9bb714

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2783d41487ce6d379fdfaa7332fca5187bf7010b9bddcf20cafba923bc1dc665
MD5 8f938890c0c17a1e7aa9b0a94bc70f27
BLAKE2b-256 231516d6cf03c87f08cd5679ecaab46b7b00cb7f08feaf844e1ce1152cc310dc

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11bf87dc7bb8c3b0b5e24b7b941a9a19d8c1f88120b6a03a17264086bc8bb023
MD5 74479db35effd2b18284604208fea053
BLAKE2b-256 bf46840e16ac11fe943af3edcf4d4ffcad997e9e6942782adae3808bf1e396e0

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b7c9aa77bbce61a5e681bd39cb6a804338474dcc90abe3c543592aa5d6c9a9b
MD5 9590c5c666767cacecb80efef7b22030
BLAKE2b-256 35af294352c37eacc63371304450c1c5f8faf485a51f3e3580c39de4c68d9a87

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a26eeb4625a6e61cedc8c1b39b89327c9c7e1a8c2c4d786fe3f178eb839ede6
MD5 2e0cbd22d3686a0e3449331246e7115c
BLAKE2b-256 bc350a315fea9c268944cb75b0f50f1f4c8b5b1aee02834c8adb7f0fa86f07b2

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bdd57973e2b802ef32553d7bebf9402dac1557874dbe5c908b499ea917662cd
MD5 f3179e31d6f78c762fc70c688261b022
BLAKE2b-256 3cbc5da8254bc46f0eea4a95c8a6cc189f2694fb6387d5fc30eede810dc939e7

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af44b9e59c4b2926a4e3c7f9d29949ff42fcea28637ff6b8182e654461932be8
MD5 b944821f099b8d3f6e4ad6ce6fbe0874
BLAKE2b-256 2d3374f8a77eb6f98cf2b27f0c347deb696395d4daf5eb56779aba61629a40b0

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e57d94a1552af67f67b27db5dba0b03783ea69d5ca2af2f40e098f0ba3ce3f5f
MD5 5e9cb74485ca885c41ff382ad81042e6
BLAKE2b-256 a71e88549866793ab18c9dd187a713cfe3c34fd344811600c0ecdee9ae587793

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 31.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9b94749130ef3119375c599bfce82142c2500ef9ed3280089157ee37662a7137
MD5 a41d7d2122f56f99e12d52f8d0b9e489
BLAKE2b-256 41213c1f53f5ad6a2088169d06e75560af1f41bada46822e9a2805143e22ccb7

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 add774341c09853b1612c64a526032d95ab1683053325403e1afbe3ad2f374c5
MD5 aa7ab67e6b6fed9b6d51e5462054ed69
BLAKE2b-256 99596d7365262432f77c3bd5039eb3a254049bb909cca6be54673ee9327bd8b7

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 7deae3a312feb5c17c97cbf18129f83cbd3f1f9ec25b0f50e2bd9697befb22e7
MD5 1f31326e1211bd4b2e7b3243a29bb524
BLAKE2b-256 898b4e2ae5276ba81fade2d1702303d97f4ec9b0b4c99c85afdc623a096191fb

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 eaa3ea15025b56076d806b248948612289b093e8dcda8d013776b3848dffff15
MD5 bf6acf696840c16674d0567a6c424d78
BLAKE2b-256 4ea86c0a4ecfc2036dc679a05642c65bf5b49587561511e57bfaf5c8b4559d05

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 196.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dad638cde3a5357ad3163b80b3127df61fb5b5e34e9e05a87697144400ba03c7
MD5 f3f9e5bdd3a510458e2381e66eb89c2f
BLAKE2b-256 e50e46e084c48c881a8f76636dbf51b31ef6312f54afe69b97bbb7d151ff4471

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 314ec0bd21f0ee8d30f2bd82ed3759314bd317ddbbd8555668f3d20ab7a8899a
MD5 806a1d150c8bd6969c6f91d1dfed1b29
BLAKE2b-256 a3e3ab913f0f314509fa3d31fbcc45be634fbfaba59461e5e772c76306f774b2

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59dc8bfacf89b8f5be54d55bc3b4bd6d74d0c5320c8a63d2538ac7df5b96f1d5
MD5 06ed34b2f29367cc16462eca1f7b7ec1
BLAKE2b-256 4b2d20756410ea0de5411bd1a7c8f355da6fb195bb88f210b330b19353fcd33d

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 883dc3d3942620f4c7dbc3fd6162f50a67f050b714e47da77444e3bcea7d91cc
MD5 753724f340cb57662a4786a3b9878b48
BLAKE2b-256 2b30ddda27a121c5693a2033cd31b7898bab62872330652945af124889c888f4

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb6d8ce31dc25faf4da92991320e211fa7f42de010ef51937b1dc565a4926501
MD5 9399ff9ba4862adbeb6fdefa0269d08a
BLAKE2b-256 1d9843597829fee7757e254fc352b03ce5000a0b48c4f58b73677bae5099a0b7

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a910b1193cd90af17228f5d6069816646df0148f14f53eefa6b2b11a1dedfcd0
MD5 6a850f6fb38463fa0176e88901c9f8e5
BLAKE2b-256 1d252bba2f695fde991b925d81b50a37619d450b498f6e956f75c9fd00c736b5

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61e6aa1d30c2af692aa88c4dd48709426e8b37bff6a574ee2de677579c34a3d6
MD5 46e4e32f0ca4d9cb71a1b0e0e7e08e01
BLAKE2b-256 e8f258030d058767d348209d7030d3fabdb298ea986f2eade81ee63cfbc9847a

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 498843b66b9ca416e9d03037e5875c8d0c0ab9037527e22df3b39aa5163214cd
MD5 09dcdbd3dcf54401d8a4eb0746533f7a
BLAKE2b-256 a0977bbaddb39ad314c1e1cc9253eca1b5cc3c4e9bc08279bc003608191085ac

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aabdbc082030f8df613e2d2ea1f974e7ad36a539bdfc40d36f34e55c7e4b8e94
MD5 a54363a026e5a8957318a6661f1a1d11
BLAKE2b-256 a8afd87659959743be6cc2dc81dae1b2086cabf39549524df3c100f7f7d50829

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0a6d58ba5865475e53d6c2c4fa6a62e2721e7875e146e2681e5337a6948f12e7
MD5 b09da12661a07bcf2d883d8111b60c4d
BLAKE2b-256 8f9a513e63de457bfd44ca942c783f519df82532b093564fd2b8744e2d13c667

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 31.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1a42994f0d42b55514785356722d9031f064fd34e495b3a589e96db68ee0179d
MD5 c268eccd57cd64d88e5d053dbf79a086
BLAKE2b-256 919aacbd79c9e86c0cef1766d6705145fc418b2c3eb1746135061a45c592a74f

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49f51fab7b762da7c2cee0a3d575184d3b9be5e2f64f26cae2dd286258ac9b3c
MD5 1468a77348c4a71dd8e1a3ec377f93c9
BLAKE2b-256 bf731b2db5c9480b70dfb1a3e150fcabd7470e90ae39dea71bf9ed2922d4b54a

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4b948a03f89f5c72d69d40975af8af241111f0643228796558dc1cae8f5560b0
MD5 052fd0c8716b7520a7f30b24437a6199
BLAKE2b-256 9ae85e7bc307acccea71165577ec40051a5181d6784bb7311ddf8a4027a5b672

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 649cdf19df175925ad87289ead6f760cd840730ee85abc5eb43be326a0a24d97
MD5 7f545d3625d6a78768eaeee6888b622e
BLAKE2b-256 d08cae2be97884fd76ae94cdd9702988c8a985edacfeef260db62403e8a2e67c

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 197.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 66b8a90b28c13c2aae7a71b32638ceb14cefc2a1c8cf23d8d50dfb64dfac7aaf
MD5 6515a8c555b1f84b9cf19409f218f436
BLAKE2b-256 ad6925771e2954626c12f059558cd6a4b87d8c2ee8bdbbe54009205340a9982c

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 02badf3754e2133de254a4688798c4d80f0060635087abcb461415cb3eb82115
MD5 f1fb52d1016a7503856a9cb0e9a72c17
BLAKE2b-256 103e4949f9ae39829caa33ff16f2c6776dd8772d86467fdbfdd44fec53222c83

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe454aeab348c42f56d6f7434ff758a3ef90787ac81b9ad5a363cd61b90a1b0b
MD5 b5639a1d996bfe49a85a4a91091d6389
BLAKE2b-256 1ad7a42f83d34d4999321e06ca273f5e7bf7fa177154e29e0bfe455f3c66648d

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0d16775094423088ffa357d09fbbb9ab48d2fb721d42c0856b801c86f616eec
MD5 7c6827bcc5c33cef27692f10eeacd6d8
BLAKE2b-256 9d81c2d9f5bacad6eb710d8ece7bdaf0a4569f5c51f25b492dc3216c0da9a4a0

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae521ed9287f86aac979eeac43af762f03d9d9797b2272185fb9ddd810391216
MD5 d932f07864095c99854f7a8eef62be91
BLAKE2b-256 6ac4e8de0e42c573784fa91dc4743f95283856632f356be4b607f7f47a9b8384

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dcb419bf7b0bc77d366e5005c25682249c5521a63fd36c51f584bd91bb13bd5
MD5 81ea7edc539f6ffc35d259bad6697bc0
BLAKE2b-256 1a95f7160058ebb563858208f2e2accc2ae31b4c7eb05e47e8b304e7b28bb97b

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 052fd0efdd5525c2dbc61bebb423d92aa619c4905bba605afbf1e985a562a231
MD5 559c4697911a9ee584b5f5fceba669b3
BLAKE2b-256 0c101f1decfbb1ad948cf15e1fc0b15356155710a13a9d202d8ba747f8a813fe

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce7c3ce28f94302df95eaea7c9c1e2c974b6d15d78a0c82142a97939d7b6c082
MD5 b937d5c1f2b5eda39e4735519d71df19
BLAKE2b-256 6bc52aea104f98b6a2e41d6e586d315694e8babb0c6c0514188063f47a077ac7

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a68d1e8a390b660d94b9360ae5baa8c21a101bd9c4790a8b30781bada9f1fc6
MD5 df375dda79b6f9311938ed82b9a1dbfd
BLAKE2b-256 42ac617b40907f53c118035af56fa826df9da80d3b89c1e48d7dbfd01c30c631

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0a2cdfb5cae9fafb9f7b65fd52ecd60cf7d72c13bb2591ea59aaefa03d5a8827
MD5 a1d92fcf5fc18c72b6fbc11ee2b8ac84
BLAKE2b-256 d0c686255a450668796ab037dd98b56a1d24b13a36cfdfb3846227728852577d

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 31.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 75aa692936942ccb2e8fd6a386c81c61630ac1b6d6e921698122db8a930579c3
MD5 32318e69bc0d494753b403be4698aeec
BLAKE2b-256 c2feeb5198afb668e0835f008f21ac04095ff59f118827affb0ef9477240d2e6

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 baa99cebf95c1885db21e119395f222a706a2bb75a545f0672880a442137725e
MD5 812385aac87362d074c78d021bc67904
BLAKE2b-256 bade70fec2cecb1b3926dde1ba3209ccc3d5eab27c4a0dd88cead814f9a45b4c

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1afb9b9d27fd675b436cb110c15979976d92d761ad6e66799b83756402f3a974
MD5 03cf009a4888ae790f2e0b619e5a9c2e
BLAKE2b-256 c02dffaa2b37f3d1928a4230c56729ea7e59a62949631f7ef53d7b9296ea2555

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f4ce006215497993ae77c612c1883ca4f3973899573ce0c52fee91f0d39c4561
MD5 b1bc2332bf95c66ef430f7b1fc155731
BLAKE2b-256 39647e002b540be8314ac51d308f83249f358bb61d0bf2b2f6b85952699710e4

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c55fa832fc3fe64e0d29da5dc9b50ba66ca93312107cec2709300ea3d3bab5c7
MD5 ee3a54e8c8b49ce4bc9b193c42eb2910
BLAKE2b-256 5bba09e56a3c5620892cc620c1415f452be2e34e1f61ef09d86e062b78694bd2

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0d54ac023eef7e3ac9f0b8841ae8a376b933043bc2ad428121346c6fa61c491c
MD5 753ca15ef068262b9df9f2505a5e0e8b
BLAKE2b-256 875b866e09eac214bc92ed2389cd30e10c4ffc6221037c2d629317c66841b4ff

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50ce82a71b22a3069c02e914bf842118a53065e2ec1c6fb54786e03608ab89cc
MD5 ca1d2495d3e5bfd6af55821e148ba053
BLAKE2b-256 7f9f8645235cc0913d54eb38599e9bfbd884de6f430cd1a3217530ccb6cc1800

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2198c4901a0223c48f6ec0a978b60bca4f4f7229a11ca4dc96ca325dd6a29115
MD5 d3ff2a4187a2e9d2a8df1b627f0fa9b5
BLAKE2b-256 8a899d34e11bf0d14aa21041bb7721c799884c6c46416ffcb1b522cd53309190

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9eba0c7c12126b12f7fcbea5513f28c950d28f33d2a227f74b50b77789e478e8
MD5 d5a5534ae1029ffb14841dc3596cf0cc
BLAKE2b-256 764af6790428d5d50aeeac36738b66694697e70b91d11b7ea196cc3e342d92d2

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8be562e2ce3e481d9209b6f254c3d7c5ff920eb256aba2380d2fb5ba75d4f87
MD5 d66449abff099cedc47b1763920db723
BLAKE2b-256 910029238f44509e03711b66be6cea69fc528266acc43c4865b78b2c490ef032

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5019fb33711c30e54e4e57ae0ca70af9d35b589d385ac04acd6954452fa73bb
MD5 8f99e4d600b1c5cfc7d407fb22b79a9f
BLAKE2b-256 60a566ae49a6dc8f978dc46977fc3fcc9f877358fb10d8b6f966c518d0496517

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4af8bc5c3fcc2192c266421c6aa2daab1a18e002cb8e66ef672030e46ae25cf
MD5 6acf8088a5e3c97f69a63b969394833e
BLAKE2b-256 7a9ef8c9a826974b8171e9359049e4b645e802d3cfac9ab06ba89d214651578c

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 91687671fd9d484a4e201ad266d366b695a45a1f2b41be93d116ba60f1b8f3b3
MD5 70f2a598c0f908ee70d8fa26f91bc097
BLAKE2b-256 5a94a77ea77e2a78230becbb111d5aa7f99d021175f5557ff03be40bdccc7531

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: xxhash-3.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 43.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 77709139af5123c578ab06cf999429cdb9ab211047acd0c787e098dcb3f1cb4d
MD5 cf843367a06ebaa6a7dde7c2c8095085
BLAKE2b-256 a6b36941abe5734494e41014c17b9a364174d6c14dff64456d99ba22833b2518

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0eea848758e4823a01abdbcccb021a03c1ee4100411cbeeb7a5c36a202a0c13c
MD5 23ebbe8b65ab8fbe65ed1235308da5c4
BLAKE2b-256 8fc67c09946864de73f07e00ab3a87eb9cbc9127b1361e1351bedfe3a57651f4

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3f4152fd0bf8b03b79f2f900fd6087a66866537e94b5a11fd0fd99ef7efe5c42
MD5 aa462d6e67f28c45f4a848a4f989b2fc
BLAKE2b-256 d5d9df4c7d661492971ebea66dfc81a4700bb0f4b6afa29aebfc3ca269979398

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 2408d49260b0a4a7cc6ba445aebf38e073aeaf482f8e32767ca477e32ccbbf9e
MD5 875cc9759844272c23717117d49dcd1d
BLAKE2b-256 510828b9e435571aa0f6b5eb1b1c5cf439237f656d3789a133b28146e92b21a3

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bbc30c98ab006ab9fc47e5ed439c00f706bc9d4441ff52693b8b6fea335163e0
MD5 c333dba0dc638ff7e3f70368fb0809de
BLAKE2b-256 f74a62cb00cdc05e9bb3defdd9cdba30207c43a8c44e050a3081088119c2d4c1

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f988daf25f31726d5b9d0be6af636ca9000898f9ea43a57eac594daea25b0948
MD5 1d825597173f6c8f34c10cc6ea8bef99
BLAKE2b-256 ea7ec720cb3a1854656f3aaa74db6840ec1363f7c96373bc3393bdcc6407d79d

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26cb52174a7e96a17acad27a3ca65b24713610ac479c99ac9640843822d3bebf
MD5 44eba30e8632d535c0199bf3bf7e8a2e
BLAKE2b-256 0981c52beb776995b9bc3b5b652b93a03fa3f08f85a902fa6008cdb2500855d4

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5384f1d9f30876f5d5b618464fb19ff7ce6c0fe4c690fbaafd1c52adc3aae807
MD5 7474a5ef4190813758e8a1773b00928f
BLAKE2b-256 cad6017beb54ae9ea6450c85b6186c970c88481a42b905d34f0b9899e0a4116a

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e172c1ee40507ae3b8d220f4048aaca204f203e1e4197e8e652f5c814f61d1aa
MD5 e93f0122a6bc2dbdfa46d87563e0c274
BLAKE2b-256 e2a9f3774ca9f512d8da6398c55b31970392dac7b93f2f77b8466700510b5182

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3126df6520cbdbaddd87ce74794b2b6c45dd2cf6ac2b600a374b8cdb76a2548c
MD5 23c8516249c2cbb676b46de7e35aabb9
BLAKE2b-256 bac730bdd3b73035ba2e60e00c344e230df88652d1c62c738b37619066f285f1

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fbcd613a5e76b1495fc24db9c37a6b7ee5f214fd85979187ec4e032abfc12ded
MD5 73bccd36cc2e4a39ecf1f658e3810720
BLAKE2b-256 153208d40b1c82d1430767260df85b47bd5df3df1629391b4f1936b2af8421d6

See more details on using hashes here.

File details

Details for the file xxhash-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82daaab720866bf690b20b49de5640b0c27e3b8eea2d08aa75bdca2b0f0cfb63
MD5 02ae1e8327dc4f4f9f813cd38d3f3ca6
BLAKE2b-256 d0cd540b125c0404433f91cb1274a911d94757d9669e4ff6d340330d05c68533

See more details on using hashes here.

Supported by

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