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

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.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.1.0.tar.gz (74.4 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.1.0-pp38-pypy38_pp73-win_amd64.whl (30.8 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (34.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (43.6 kB view details)

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

xxhash-3.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (32.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.1.0-pp37-pypy37_pp73-win_amd64.whl (30.8 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (34.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (43.6 kB view details)

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

xxhash-3.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (32.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.1.0-cp310-cp310-win_amd64.whl (30.7 kB view details)

Uploaded CPython 3.10Windows x86-64

xxhash-3.1.0-cp310-cp310-win32.whl (31.0 kB view details)

Uploaded CPython 3.10Windows x86

xxhash-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (232.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

xxhash-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl (289.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

xxhash-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl (209.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

xxhash-3.1.0-cp310-cp310-musllinux_1_1_i686.whl (196.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

xxhash-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (266.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

xxhash-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xxhash-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xxhash-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (207.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xxhash-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xxhash-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (220.5 kB view details)

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

xxhash-3.1.0-cp310-cp310-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl (34.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-3.1.0-cp39-cp39-win_amd64.whl (30.7 kB view details)

Uploaded CPython 3.9Windows x86-64

xxhash-3.1.0-cp39-cp39-win32.whl (31.0 kB view details)

Uploaded CPython 3.9Windows x86

xxhash-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (231.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

xxhash-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl (289.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

xxhash-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl (209.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

xxhash-3.1.0-cp39-cp39-musllinux_1_1_i686.whl (196.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

xxhash-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl (266.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

xxhash-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

xxhash-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (286.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

xxhash-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (206.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

xxhash-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

xxhash-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (220.2 kB view details)

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

xxhash-3.1.0-cp39-cp39-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl (34.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xxhash-3.1.0-cp38-cp38-win_amd64.whl (30.7 kB view details)

Uploaded CPython 3.8Windows x86-64

xxhash-3.1.0-cp38-cp38-win32.whl (31.0 kB view details)

Uploaded CPython 3.8Windows x86

xxhash-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (232.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

xxhash-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl (290.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

xxhash-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl (210.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

xxhash-3.1.0-cp38-cp38-musllinux_1_1_i686.whl (196.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

xxhash-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl (266.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

xxhash-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (212.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

xxhash-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

xxhash-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (208.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

xxhash-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

xxhash-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (221.1 kB view details)

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

xxhash-3.1.0-cp38-cp38-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

xxhash-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl (34.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

xxhash-3.1.0-cp37-cp37m-win_amd64.whl (30.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

xxhash-3.1.0-cp37-cp37m-win32.whl (31.0 kB view details)

Uploaded CPython 3.7mWindows x86

xxhash-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl (232.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

xxhash-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl (289.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

xxhash-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (209.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

xxhash-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl (196.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

xxhash-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl (266.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

xxhash-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (213.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

xxhash-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

xxhash-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (207.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

xxhash-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

xxhash-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (221.0 kB view details)

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

xxhash-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (34.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

xxhash-3.1.0-cp36-cp36m-win_amd64.whl (42.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

xxhash-3.1.0-cp36-cp36m-win32.whl (43.0 kB view details)

Uploaded CPython 3.6mWindows x86

xxhash-3.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl (231.2 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

xxhash-3.1.0-cp36-cp36m-musllinux_1_1_s390x.whl (288.9 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ s390x

xxhash-3.1.0-cp36-cp36m-musllinux_1_1_ppc64le.whl (209.3 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ppc64le

xxhash-3.1.0-cp36-cp36m-musllinux_1_1_i686.whl (195.8 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

xxhash-3.1.0-cp36-cp36m-musllinux_1_1_aarch64.whl (265.7 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

xxhash-3.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

xxhash-3.1.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

xxhash-3.1.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (207.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

xxhash-3.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

xxhash-3.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (220.4 kB view details)

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

xxhash-3.1.0-cp36-cp36m-macosx_10_9_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxhash-3.1.0.tar.gz
  • Upload date:
  • Size: 74.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0.tar.gz
Algorithm Hash digest
SHA256 ac21b1e21dc6fdfee9a57b53f4777539d53a84f2e1546a3f802f159f9966bdc1
MD5 a5ddfd329adce556c6d00986ea13352e
BLAKE2b-256 9b58863e9ca03abd547f6fd1a9ffbbfca6c07e6c9a930af4ca06bc85210594f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 369af334d58f6d2f716bd1557d3580c4c1235077090769abf1d54daec2b301a7
MD5 c5c1435b60178daed0c6ef24195afe07
BLAKE2b-256 1acce32d365337aef999c97c4cb06137334d13fc0f56c9b43b84a64b0d0f1ab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efafa866662f6ab50f1ffb808424ca9373d2f3b4a73e6ea66432dce1779f501c
MD5 ceaf24d316edb453bdb22115eb778fe7
BLAKE2b-256 91cc93a10346e83c224b96a4fb615af70c7410550dafede9bc0c850c1b1ded54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c58b2bc7240966f54db9ef7dcfcc988362b0a315c12ed13a778917457c8dfe9d
MD5 c6888938eca83547ac0f6c4c811827b0
BLAKE2b-256 48ea1c990130ea4e6905553adbe164648816d973ccc84abf56c5f461ead0b885

See more details on using hashes here.

File details

Details for the file xxhash-3.1.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.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea074722fa953a1a3bece979620e2f0b43f2dfca841de84aca32a477c2fdb658
MD5 42d1e11107c7e90aafbada9c8a6f61d0
BLAKE2b-256 519b9e80bc7a5f3a3d62a0db361441e9be55f699710e97173638cf621ac079df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 daa1a37685759003680bd2775053bbf772c4f71ad3c729810ea4901535635d5e
MD5 c9a25fd1e54591fd884e9afd4fe5df25
BLAKE2b-256 f78cc892cec89c3cf2af7ada0069abc2caeb9937a82e159362348817c1051ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 379c37f2d46a441bdb71af79443990e21943ef644ffeed5662157a9a682d55be
MD5 818a04ca252a2fbd96b093ce4c57aa54
BLAKE2b-256 f551bffb2da080738b366932b666dd4d761109038cc1bc5ba2255161c311dcd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4521fed12d111bb2691ca0dc01fa8b36f6c626f53d9ee54befcea957e1b4dbaa
MD5 6f41af85d0b76604a3ec1051a6f8b8ae
BLAKE2b-256 aa1384689de3c6a85ff7979e66a3818d321545f3f3bf1267d2ca8bb0b6e1ed62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f109a872aba254ffebe3c749a6b7148463e5d3168ac5afb515f1a929e73feb8f
MD5 a5e25aead9bf2950aa9dbc464d04ad1e
BLAKE2b-256 e641f7be9571a1fc4d88e151cd2c6999c2455a71aac0d341720cc1314624932b

See more details on using hashes here.

File details

Details for the file xxhash-3.1.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.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c60ff7946e46beaa873509c1ca41937b40fc3048620cbd8441bfe03aa053f33
MD5 94cc5e62aaf28ce99449d332938984e0
BLAKE2b-256 c00394f9aa82a145eb0caaad19cb16f2fc7cdd14a01b47423f1ca53907762287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a06311c247f2f45619e754249ca6f868c349fbfb63979ce291c83151840952a2
MD5 4f1543e63ec8b7e53098fc009ba8a6e7
BLAKE2b-256 c67ebd781599acba53794d0a9b96a14f03b892b7faadf0062ed2e28250daa61d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f32770a4b39ffe6a5785f87b66435b2e4048ba4a36334108ac5d375447ce667
MD5 3d48e89b46fdba166c9b290a6877cd23
BLAKE2b-256 31f7405f9c2834a5c16711ace200227788e1d767fe0e1db86455796ab7c678ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5c65cfb8fd3efd3d574a0cd4abbe59741f720334fa1d79e5366b34b0f4584b66
MD5 28873c2034439b37df80b222197d31bb
BLAKE2b-256 b03999cd4c4ccb6a793d57ab679e6f95232e08b3707452b11c1375dd2f18e36c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aa4e22665290f2dfa608901c38b1a5f0d367280fd8adc5996356d7f4993f41f7
MD5 0090562378c6f1da524f7ea5900499c1
BLAKE2b-256 c3c3816d16a895c1f81114b98d7c29d7dd7a6b1503e469ed54c0426525448ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 77c6d1e0993e8a314f4a6aec911c12fbb4caf4f58223381d3d41fa153ae6924f
MD5 db1b881423891bbabe012ec232df6475
BLAKE2b-256 256475185f89a7af305cdb742fde0af4cbd649c5de10e8a7f5bd0c77f3fdf641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3a9e2052ac6520e1f56630ff689b2b85ccd24799d362493435cf46defe163cc1
MD5 9ef5716a1ef42650b711565aa1d4fc85
BLAKE2b-256 b39f0afc0c0e01b8f647d88dd37a411acb274c700e8d580cfe27dece123291a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2d65d773c4d9c8d1a88af8e0e2169910cfc3d425006e2eb18cd13a6391543ed1
MD5 c2a7247bc56ad71a64f6e781092039ac
BLAKE2b-256 24571ac6d1fdbe173784441124b5c06273c99aabea1ff351262e8b9c88f6fbf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 540966f42ccd0d3d09539a7236fbfdce6b15d7be49ee5d5adaef0aa0d020cd1e
MD5 b191f2bfb6e9c78ccbb1443e8f670d56
BLAKE2b-256 47606e47b0eac32f6a3c4753785bc76a786f87e90934cb491ce44a55fa171467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f50cfc3e80fe241d25e557f7ca5a145d3d557bdf738cd2d355bfe1324c28d21
MD5 ebf94198eae78c3b8ead30c0ead481c1
BLAKE2b-256 878e8899a5cdc14ce30e60e142a06a369f6e5f330b2ca3eefe70b3820a977d1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d72b5d4eee98ecd25a2c647f7547a024585400ab13aa7ec837ebb8a25151bbef
MD5 25e559422be21a20cdb708733d171e0f
BLAKE2b-256 53a1bce6e96db79dcd87a0d0e08158b043eea2f33a9c3465317c2443f1968e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4582e12d9aa25530449a8cad4e9e8e973e0b2f28e77ef6504fc6f216f8f07406
MD5 39222c415558ed7db925785e39f50495
BLAKE2b-256 b03c6b76fdc18102c2836b1067b07465143c90dc2ac543e6a57155d0df78078a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb07bb4125c432f500a76a84ef51c0eafc09afbd1479308c6e1e2bbb73a33bb4
MD5 07ace9caf882e8e77ec3b32d0fa80004
BLAKE2b-256 fb9a85f94d883c73ca0bd247474692c65f710fde98942122b4faca2ff31ed3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90d03b46fc06f9ca3c0a4db685df3efffeb880ebcef2ffee707057e09fb8cba2
MD5 f217c7df0a8551be718610598be933d8
BLAKE2b-256 5639382634e2a5bda62db7581e2ec0cca594d0ec522ae0b0e84cea71b8a6b32b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8810fa72d361262168c2b215e3cee223eb19b74806c08713b943f57f0c91fd6
MD5 3ed243fd52b3dedfa7340bf8bdb5786b
BLAKE2b-256 86cd6568f46d0574b842a0d189328d36bc9c1c4bd31845580969da9fde9f7a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e9141f224a4dc984ea016744aa40a8a040054ef91933b2f9c81ba18e5b9d06e
MD5 7c9fdadea01a3e808ecdc8442aba4052
BLAKE2b-256 6284489fc46b6a82fa8afebd76039554982b2ab1f984915c9ee2b96dfe1d0a31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0602b45447934fd5b81b387e76512a7c7c946b571b3f9a7d7b2cd9d3a09f9041
MD5 e0712fbd2be6384abcfc4dd4e944584b
BLAKE2b-256 f37714a33dbb9b2cf2d60311ffea391c9f383addc08e391631fe334a66a9b044

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dfa73020bc696a46dab2dddd28c76d1abcd0643dc8a2dd06a037392bda5cc5ec
MD5 29e14069b65efc2294d16b111974ef87
BLAKE2b-256 39407cf4e663dbd00a08c0973cb1ffb177c15da9e77a7a499eec7e4322fa4c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f4089c92b7aac2ead222345b0368e7d69e7a61e7a56762ae2f5e8d67fb67349
MD5 e803a2fb791998f5faa7b938a3bcaa75
BLAKE2b-256 a474645bd9b5ea60bd737262f388419b50b065f0f6fd1a756d3f5e1b98a8d904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 84e9d14baccdf31e3c59ed34b9d00df52ad4db376dbbbaad936ea02b9be4a534
MD5 b0a1aa2b43be20f549e1f95362281cc2
BLAKE2b-256 76abd7fc08011ba0f2bc45c4c600c68faa723fba5275f941c0c341a93ddc21f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 216b90f30351fe434903bb039ae88df4c5ae43eb4320a012f6c73bec1d630213
MD5 3fe55dd920ba0a2128527705126048e1
BLAKE2b-256 0d59d6d1c44f358c6f7f310815f9c796234547396b5fd75106a99d011cb0ce1d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 de9758872881d50d0946dfc6067b4782986de6af5ec74c266d47d85c699aa0de
MD5 92d5f5850603155e352dc40c7b3acc64
BLAKE2b-256 6a6b7c411f21b18ef7f5a2e96cde50ce6915f6ca0e1376fa45a340619d33806b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 62cc09f3024ef1a0153e32ac6593025f20fae13b1bc5d08b639891ec110cacec
MD5 b25bc2e9d5442fec863b4bdb7b75b11b
BLAKE2b-256 a5bc5ad75414d2c4562664244be49b0b464c211dcfe8fa1834d6d5dab6b7790b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21e030031f13455c9bfc10ed58301fbee8fad0e179cc6a1b15e899d71af2958f
MD5 c11097c2f9d86b55e27ab703d711a15a
BLAKE2b-256 0d0341c0a294677944c5baf23a9581672337f6f930145826947e96754fc71863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b74a787be31b8493797d3e7dfac2b240ed443bcd1b42dfbb406629538f103667
MD5 1aefb60a4075c7cae7eb5cbdaada8ba5
BLAKE2b-256 918d8f5f7da349eaf7789371754fc84efbd2e349d4bc7020f45adf7619b732e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65a9aac88cc960b3a21a52922d5846f1b15af7a5b937a26c7edee1d3fe80800c
MD5 ba2e0255412b48fa9d5f62ce7dcf6e82
BLAKE2b-256 680a3f5c8343a36b2e730f69575446011d9559fd76b91cb044d69f16ff30e334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc93e4bd34fd14459672345ca4a070b0f28d906bea4b178373b4271498e38ec9
MD5 2f0b1be6a898049f110c4a06d6c88e10
BLAKE2b-256 f8fe5ef00a8b4d04d1c54e57b8fe9d801a4806674ccc97e455bcd5ffefeeaa44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c627840400b90a90d989ebef431b146e89e44377de42cd2e75996bbed394e3c5
MD5 c6f9c728022a4b0beec34aa417127273
BLAKE2b-256 71d8a5e39d19d82ee4aa4d51188336f140125d030f46dec6311bd88d297f0430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778f3c6007d280b6fff12f95c81d9c4ad6907632a0bfecf23aca18afb54319c0
MD5 2b1fb8a5d4c15ec6e30d0740f1101c22
BLAKE2b-256 0452caf8c2841874646f13cabb0b26975266f152e85282498d3889ca0c6f64f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53e587e6625bc9a7cfa5e067837590a626ff4150000ae31be2af73a67d08ea8c
MD5 b69529f8a843c6803340fe9815aa1650
BLAKE2b-256 5603f5862e8a8c82c52faf829cc7cd56256608f8a793c924986e2b6c641d15df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 30.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 04812deabfdba3fa9cae57abb908a3f980bccbe9a4178f3e56afca2f1f625874
MD5 12b3618db357375eefadeb651aa718f5
BLAKE2b-256 f966fcdc99ffe08c0cddaea51f9a0db6e6bc12d8bdf7f6a291ee070603ab5319

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4143a1ad5f436550fcc091c80e7af23ec31cca1991750391067b24b051dcd0d7
MD5 0817ec7db81a3c32f472e3b1d3ac1727
BLAKE2b-256 3d100afc15886578efcce02a8fb30b8d5362ae9a171787959907400c3ed0ab52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6502a60ced52547e9c8e3eba3e5818ac0adca3e9abb5e32d2ee73a060f3dc362
MD5 d83ff29443f1bc2d264c549903e411f9
BLAKE2b-256 ed2c3e7c8e44661f12838760057b9e41255d2a3b88a2dfac66a8a0fa7599959d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 362520c908887c85af832e16448bad58cb182d165a16241e3251bdd17bd427be
MD5 da3e4c9d2d21bd37b15019d82842ed1f
BLAKE2b-256 bd258267df4b8d54297fe937748ce3d7c415d7e3051ba9d4f05a3396273ee099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e5d54d8e01c34acf3361bb58c5022a92abc9d5054b919a1d483679d59989bbff
MD5 ba4b3793e2b2b566b6ff11e41980aae5
BLAKE2b-256 5b60e07225d0ceab9df32e3ac1caef95770a1ef641d6e7fb7c13daa19bd320d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3cb1c759c2a863dd963bdca8504c7ae39388dd1ef189fca91b94f18acb7bde26
MD5 0439fde90f74bb132121eea4d46e4ed8
BLAKE2b-256 5fd3e05e38b30608956348d2bf788d14686342d755e274c7ae281fd1f9f7c66e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ae86b9672ad4ef431b0e1d284530289382575e2569078071c7adcf5827b4995
MD5 0aa7a0ee58f4fa80904c5f886ab2dbf1
BLAKE2b-256 7294c2c32515c6e91062e0a2b6eff56fb2c66579f5294fee5471d52d27f15d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edd65c4850231324af7a613e5647c1c484f3dcbcde4a0e608d099050c684ae79
MD5 d4ed04d6ce07a5f136a45eb6055a2263
BLAKE2b-256 e25d7f471ae2191994de756f2ee8911c1dc9731cfaa1a810a3b5f7d0caec2444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02f9a6176152a64955b3dff89dfb2d3c9a7c93e862cbc37c0858e8e25d1f3f3c
MD5 6f671506915937312ad22594a479e2a1
BLAKE2b-256 275e31c40618dd4fadb63fad097c886d2b1774fbae9ab7c8d972203eb4b8e447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4645b106732885fc488656657a5790dee4d8ffd123d2134647028f6575f2c05e
MD5 a9d07058c470cde61414c9d1dce73e46
BLAKE2b-256 c4cf57de1231cd4a130870eb119f32e83248ece87408f949cf23672ecbdcbd15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0f1e298f80e302fd1b859e0b27f997eae82e9e9592843a1df2ca79122365ac1
MD5 284506b2befbfb847fac93f7314b54f6
BLAKE2b-256 02e5976adb146c4f0b9fc0bcf4cc17bd6121e3b276498a2eee7c3bab69d2314a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80b6cd0f781c198b0b53f78124658d0f407fbba7450e79d537505608bf4125ba
MD5 91b79ceb9a5b3c0dc7acf19b6b4f62b9
BLAKE2b-256 ad53c5bb81b49a62caafe13cc01665d0fbed1561195da6a6ab2d37c0952e7ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b16e7fc7991118c0b6cd9f5e141911110388f39df58b2996834619d2b956b4a8
MD5 3b3ac9b80e283d41e8f697484f7c21dd
BLAKE2b-256 df67d7af76e03327c1ca292397bdfa39f38d08dae2144ece711d0c7bfa59832e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9efbc1c780ef3b578486eb250f5e93b2934c918386d981d96b7a06bae90c4d4
MD5 3cd02e5284ac7d982089f0ff5af0846f
BLAKE2b-256 64dee348229f77d138d1ef15c760ea687f0586a4abbc129f8136ace8722ece59

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cf20bca461ae45273599be8635b60b517d2212b51d6d5d85fc8c441078eb02ab
MD5 b481702d7d52926084a13e96ceaca374
BLAKE2b-256 9390309117ccc94f56615ed59e8553f0dee196daa37deccfc6c1f6c8c8906ddf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0bce4ce403129c6cee69860cf2597d04f29c714797c11e8ec3b2b7b3677c4586
MD5 6ec40d6d77a9e3549e02af1e35c7e382
BLAKE2b-256 06d3c33493793e4810abb19b9f051db92d3e10be13f5e54e64e818a057fb7af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d4f9c8570e9adecae7d480090bcbf856b1d28f462c30c5cbe9f23b6418d6423
MD5 f6e6a02706f30be667e5925e56e1b88e
BLAKE2b-256 8da7c4b4e7971eff36b21a3b4c97c51f6daf2a964dd44061eb31d7a1d7cc3e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d30df80c8bc56aa55f545b1840d84ad6f773a3623b3e1462f17ebbd93c4c69ae
MD5 b634e6a360325201ace02e5dcaf6d3b4
BLAKE2b-256 c955a522d9a308b27f77586ab28b0536afaf56067f8d2f3fee6cc5ad3b4e4cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 91bf72f009114320d9cbb452d5995286f2c6f70b3f53041f72654c4c1a8b79bd
MD5 8963ca1a740b3a52bd9858917dfe6c86
BLAKE2b-256 a5e64b1c098f41f728ed48ca57cd239d882b584cbeecf6488a32ce21a266ab63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2e798287d6efcd51df12ac67f65ba7d78937be80c2c91bff2d17bf5404c63a24
MD5 5024219d419c66dcff6b6346e1221c72
BLAKE2b-256 5b6de4fc6434ac32cd7c7f9a8529aa511b3ef278b5efedf69fbcab4552d0b587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d08ebd5313f6811ef76cde0f97179374b047442b918089a09019fed53b9f9cef
MD5 168de65abeac3b51d7b40986f8e5e4f5
BLAKE2b-256 3e1482c86a65d84fab187385b1aae06ae63a4ca9b9b89da7e2ffae9f0fcf6136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2259f13de36b4e675840e50b16bcd5c6f7aec6f5e833af47b3a0186c19e92dd
MD5 3b93705986cdca8c2e748eda85a6e961
BLAKE2b-256 fcca8dd0bcbd592d6f355b75c473f5eedc6b432ffad74ad7c36e16de6bbe68fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ab8f652ffaed3855d25f7666f63bf1ee81ead4d9d30cc9e592571a3959d2964
MD5 6acb0f9941a9771391616acf338d66d2
BLAKE2b-256 51a5646fb11d1cd40326326463e8e2a9506077fa272e9bccc2953333e50e0479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a3d7cd6412a1d0d5e43be188a67f95326e5a8c5d2ae1ad10adf8f896e630091
MD5 9b8987c6b83b7071421bf139af694df3
BLAKE2b-256 e16e3b797cfc2bfecb524ba1d6971ea5c8fd11e183412da5341be2c83d80aa65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 694fd42161959382b70ea3442ea017675071dafe8b960849d5a599c4538737d8
MD5 5fd20778472e755578ebd2390e462896
BLAKE2b-256 50c80b365c882c440a7061d82d82eb5571944ae72539c687f488cebca240c99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e86290486768b51478f320abca9fe61805578298b6e60719ec23bca85c60eec
MD5 2e342e41e632a11ea1b44d7e4c01aa78
BLAKE2b-256 4da452287ad4c86a3c42e27a269e9455de2f0e57038478b5ba82f7461f7ee262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b43b55e0d2d81f4ec8caaf165a0a96325d7dd4317770b663701700f9aee855ed
MD5 43726f44cc8d9c85dd943577dd9b19c5
BLAKE2b-256 45952ce408fab0148f05ac2382c1846cadae3c4348bba889f607eb32ecfaa948

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 95175636d28943eaf3da331aa57c7d02756017880151e11f8476a2ef49dd35de
MD5 b6f8568486feebeb05500b2f6320f615
BLAKE2b-256 4e32fa032026282700086bb628ed7da56071243490d22ef799df131b8557398c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 43.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 33f865b6eb9126a60345cf3106925a5039ef582b840d2df96f7777a160d0ef17
MD5 74fb084fbf08fe180ded753114cbb508
BLAKE2b-256 8641f4e35c230d8b4f6c831cfd480315fdfa0ede2afd7954ba1c27eafa20be6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 00f2603b91fbb6fd1c3b83b263a405834e2df393fd2bac6a86e2e0ecc511076c
MD5 03680df63d9730ebda03b428df0dbb17
BLAKE2b-256 e3c6aaeb9ed33a1b2a8fd91c29dcc26898041a23fa6a953332cf7b5e88bc3346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b9c56f45fd18879212b480dc44dc1da44a22d453e3b4038c4b686f6307124220
MD5 32fa0ca23f2169027d29be568233520a
BLAKE2b-256 a11b004ddb1506afb20c8bb1bd85d59ef3156792d7f0f8e2b2c6d3e04fb8ebcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 cb3032588cd46bc6d16b2b35cd7ff5041fcc90423ae7c8f62263a029ff8f1e5d
MD5 a8c45807cbe6e58be4ebcfb409b46392
BLAKE2b-256 f98355e8c442f0b32f9cfc4d446bcdcf71ee94acb8c93e56979bcbe301418037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e24bab9aecdfba23c7feb3b173488ca6b3168a50095ff544dedc7caa0c05ac3c
MD5 8d57cf48769153addb591130f1787742
BLAKE2b-256 4cd124df5e5589fd536bd5fc9fb95b785733ad16a5ad1a5aefcebd9a44e45b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f7f1b27db4798f7ebe599107c75b2a0648fc1f9d9226fa2771fc296c5593dc7e
MD5 689b7926d31f8fc2150450ea97a08a5a
BLAKE2b-256 c91e281251729c268588eb9c1b993ffe9d89843ad35168ff5948f85e340826c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83a7b89e0b8b26cb86369ca0a7395299e0046930664ce96cbc07702504af9a26
MD5 cee0399e632741eb428c988516cbd323
BLAKE2b-256 29bf5ce2dbfa6a9989c54630bd42a74e5564f129435f7a08ab79216043471ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11d4af8d50b8b08835f653a96d58bb3658454144e5e4d28e369f4b3ad2bff4ea
MD5 142ff15e9e93684376ff7e9a3df4b210
BLAKE2b-256 01d8222bd7c325d12e17a80ffc05723bdc74d75a6ea0876164ad54c8544e5b00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1980f79c8ab4536c01048eb6398db0ac2049292150064bef665fa4c89918f86c
MD5 7353812f0331de632b856897091e8a9b
BLAKE2b-256 745492e945325bcdd61c606d1f9d5134daf9e8a47ef0ebeb1c1a0ac6f8fcd961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2324c31095708ceb7ee8c15b31bd1bea7376ca477748f9a20aba2e94d01fab1
MD5 2b75a2a509989548c71b6f864e974944
BLAKE2b-256 37964bc228e10d39c7ab8a8315d53e21b7ddf9f67062c6ccfc2297dec9caccb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca24dd052adf23e1fd8fb5839d9046328e60222a866fa3c2761e90ddab1fc2b8
MD5 9e063d356cea18fb87ff705b57538ee6
BLAKE2b-256 b128aa411a30d81387c139ef61aa40cad9d32dbaa2717672c50cea9ab5bb0d0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.1.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 effd26669365a71e1337977ba789c95029c9cb0ac26e7455255922d3c9ff8fff
MD5 6f680f397399b362679cabe8be13e623
BLAKE2b-256 0177107118dde88b5c98dd9a59426c5ffe2e46c74a8bbea6640135a76e832c84

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