Skip to main content

Python binding for xxHash

Reason this release was yanked:

there are some problems building wheels

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.4.0 2023-10-05

  • Build wheels for Python 3.12

v3.3.0 2023-07-29

  • Upgrade xxHash to v0.8.2

  • Drop support for Python 3.6

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.4.0.tar.gz (84.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.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (36.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (40.5 kB view details)

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

xxhash-3.4.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (29.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (36.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (40.5 kB view details)

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

xxhash-3.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (29.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (36.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (40.5 kB view details)

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

xxhash-3.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (29.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xxhash-3.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (36.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xxhash-3.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (40.9 kB view details)

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

xxhash-3.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (29.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxhash-3.4.0-cp312-cp312-musllinux_1_1_x86_64.whl (196.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

xxhash-3.4.0-cp312-cp312-musllinux_1_1_s390x.whl (303.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ s390x

xxhash-3.4.0-cp312-cp312-musllinux_1_1_ppc64le.whl (227.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ppc64le

xxhash-3.4.0-cp312-cp312-musllinux_1_1_i686.whl (216.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

xxhash-3.4.0-cp312-cp312-musllinux_1_1_aarch64.whl (220.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

xxhash-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xxhash-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xxhash-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (200.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xxhash-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (220.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xxhash-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (207.9 kB view details)

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

xxhash-3.4.0-cp312-cp312-macosx_11_0_arm64.whl (30.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxhash-3.4.0-cp312-cp312-macosx_10_9_x86_64.whl (31.8 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

xxhash-3.4.0-cp311-cp311-musllinux_1_1_x86_64.whl (197.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

xxhash-3.4.0-cp311-cp311-musllinux_1_1_s390x.whl (304.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

xxhash-3.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl (228.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

xxhash-3.4.0-cp311-cp311-musllinux_1_1_i686.whl (217.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

xxhash-3.4.0-cp311-cp311-musllinux_1_1_aarch64.whl (220.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

xxhash-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xxhash-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xxhash-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (201.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xxhash-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (221.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xxhash-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (208.5 kB view details)

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

xxhash-3.4.0-cp311-cp311-macosx_11_0_arm64.whl (30.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxhash-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl (31.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxhash-3.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (196.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

xxhash-3.4.0-cp310-cp310-musllinux_1_1_s390x.whl (303.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

xxhash-3.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl (227.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

xxhash-3.4.0-cp310-cp310-musllinux_1_1_i686.whl (216.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

xxhash-3.4.0-cp310-cp310-musllinux_1_1_aarch64.whl (219.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

xxhash-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xxhash-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xxhash-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (200.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xxhash-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (220.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xxhash-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (207.7 kB view details)

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

xxhash-3.4.0-cp310-cp310-macosx_11_0_arm64.whl (30.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl (31.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-3.4.0-cp39-cp39-musllinux_1_1_x86_64.whl (196.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

xxhash-3.4.0-cp39-cp39-musllinux_1_1_s390x.whl (302.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

xxhash-3.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl (226.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

xxhash-3.4.0-cp39-cp39-musllinux_1_1_i686.whl (216.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

xxhash-3.4.0-cp39-cp39-musllinux_1_1_aarch64.whl (219.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

xxhash-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (193.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

xxhash-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

xxhash-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (200.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

xxhash-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (220.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

xxhash-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (207.3 kB view details)

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

xxhash-3.4.0-cp39-cp39-macosx_11_0_arm64.whl (30.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl (31.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xxhash-3.4.0-cp38-cp38-musllinux_1_1_x86_64.whl (196.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

xxhash-3.4.0-cp38-cp38-musllinux_1_1_s390x.whl (303.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

xxhash-3.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl (227.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

xxhash-3.4.0-cp38-cp38-musllinux_1_1_i686.whl (216.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

xxhash-3.4.0-cp38-cp38-musllinux_1_1_aarch64.whl (220.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

xxhash-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

xxhash-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

xxhash-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (201.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

xxhash-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (221.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

xxhash-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (208.3 kB view details)

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

xxhash-3.4.0-cp38-cp38-macosx_11_0_arm64.whl (30.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

xxhash-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl (31.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

xxhash-3.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl (196.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

xxhash-3.4.0-cp37-cp37m-musllinux_1_1_s390x.whl (303.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

xxhash-3.4.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (227.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

xxhash-3.4.0-cp37-cp37m-musllinux_1_1_i686.whl (216.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

xxhash-3.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl (220.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

xxhash-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

xxhash-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

xxhash-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (200.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

xxhash-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (221.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

xxhash-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (208.3 kB view details)

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

xxhash-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (31.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.4.0.tar.gz
Algorithm Hash digest
SHA256 f8b0487f9227ecee8bcd73f1fc4c41b01fa14ad56ad2a5ff677a72995e5bb762
MD5 afad704d0ba6e85489fe3ca68217fde1
BLAKE2b-256 81d3df9d36a63333344b4112ce1ab0d6318bd016bca1d927d91189375020e0ce

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de8ae0eec46646656795084ad5de885c5cccf11dc055c608ae43bf5034c3dd2f
MD5 a18a6822891403f2ea2a5a5c2ce8be2e
BLAKE2b-256 a7af84dcb438b03d7339fc1ffe3b496baad443b4d0c1b02a4608cdd5270bc6e3

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c751f78c5f864bfab6f155a0e32c05ea8dfd93e8ee627a6083bd23d5c267f811
MD5 8994e1cd62d82051f7f720ef95300526
BLAKE2b-256 6f805d6287cf5dafaf811e4e96cda46c601adf5d0708f2434a638a6fbe1dd369

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a638b49fae179dfd846b7c5f7292b7fe1a17613f285b55d38f7eaff6b5c2e00
MD5 cc5d05b0377d46479c7ad1c655cba93e
BLAKE2b-256 afad243882d31807a7105e6d0b8dc6f386d20446bd88ce690b7a45cd296aa34f

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c21f243903d5025a663ac78d8065d9e652ba287198cd703ce2a1d43433dfe18
MD5 29d15ed2e207c9c7b2f7e7f5e7fada3b
BLAKE2b-256 e26167b932623a08270212ad58cf9efb403a60a3620e54dc3dd61afa843e0c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 549e3ff74c0a1ee06a2c1cbdd75bf0bec551c44c9273818b3a22cb6f5c29a9d1
MD5 515911ff50abfe4a78a245477b05b5ff
BLAKE2b-256 1d14b42e637ea1b6a2fd60f3e34fe21a17eddf87265c4b6403976382244ae86a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4452ffa5f782621b31135a1e1078638f5efd7764586f2b288a35cec7365bb07b
MD5 6ae78bd778ba34a77719d9fcfc616962
BLAKE2b-256 cdb75d1bb6d980aa8540d9854cc2e70ec006e675ccf0748755bb9a1904a28697

See more details on using hashes here.

File details

Details for the file xxhash-3.4.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.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f61968ff75ede61f2f3c0d5879d1c1295e07fca2d2068b0cbc9ab10c039a81e
MD5 0a16d6108588d7ec35bcd014326802f6
BLAKE2b-256 3aad34decde61f0bf4885d66bb3a8fb8ecc2bf77d2eaf2e169959660430ffae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b3f67308dd0ffa773f8ebb13858db3e39355f1e850f84e8d98dcba0bb49543e
MD5 b92a6231d1f164836871cc93e1ce80f8
BLAKE2b-256 84d135ca5cd43a6adfe9376e60a01391108a265ca0d84ef92591b2c36af37c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f4eb926288240fc31ce09d99542495104c63e7a5da175a761861fc05229a60f
MD5 8f722e1f96420c389b2723a9a3a64f55
BLAKE2b-256 9df336f41284f2b977888916d5116910a69599df53fc21c8c387975d930bae63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6518d37e07d0867de1e7da6c751ce7e8fd0e6ce3d18d9cb8dc8d7a8e55e47b3d
MD5 0b5d505cf0a35d99528b1a1157e47d17
BLAKE2b-256 c7ed3c7030e2b3286166e3ce8480d6f4885b3d972c1d6f1692ef49ddaf071671

See more details on using hashes here.

File details

Details for the file xxhash-3.4.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.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f8bd8916d0c8b399f67c0290578d354d57e3141a618509cbc4d5a70387ea96c6
MD5 c0eef8f1eece829a399c9a0dcd0606f6
BLAKE2b-256 db6bb41646539214d0ba75f7065ba0add3f30bf7c2c66254c2c70c2de29ebd9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42c49746e60e7993dc587a91bbcf3a475e2cbba5df569cab804a69e803469a88
MD5 b29933e398d88df512221f02e9057b1e
BLAKE2b-256 90829564d3c0a737c3811420c3ff7b0d6da11657ca9feb0470132068dea50b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11c6743edb2373c7d8fd60f69f66f5519bb0de79b4fa4421d56471dcc09b4c60
MD5 10e069b7fed6be77dd51f773c84e55d1
BLAKE2b-256 cef1b90a98387140949e6e971142ebdb431a55934a04759485d2fcd2c7023405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e8331c77ecf8722ebc68b2da008951d3d65b37762edaa19e1eced7b3003dd8b
MD5 2b9711b0d9efddd8fc4b44792854e7d9
BLAKE2b-256 d01e758739a1071968a209ddcc4e3c8af2feb60d45f5774276e363292435846f

See more details on using hashes here.

File details

Details for the file xxhash-3.4.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.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b2c904d4cdb9013addd308095b19d7a78816f26e5769291d7fc01e852ffac10
MD5 cfab3fd0b2b0fd6211580a61d12b5c0b
BLAKE2b-256 e6cf6cd9fe75331bae816440067592f7a0c0b54d233ddc8579c78a5e035d2775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 813641aa86621f46c7fedd4dc7a19245dafcdb6538c53eda17ea3651a6daf0fe
MD5 fa6a5cae355252834643759cb84f971d
BLAKE2b-256 e192ce96c34faae304ca75140a73307148eb906cae74efb526325dc5a9e8fbbf

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f4f2224f7d4a174f3a8b6e2467aeafaf2a2e285a39359758f27e0ab58125af77
MD5 844661061580cf0573f20ea567d037ca
BLAKE2b-256 4051e596d2c224eb505d16465c5b7f0b54c4c609d933d99f5c206c02ec1c2f59

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3bf15ca6dbace2e211d2b3094e616e1021a9948ddfc45cf30c108c1b9e3495bf
MD5 ef21c7506a684e5023534a2b9174f8c1
BLAKE2b-256 2900f284a5eee3c6e7f4f595d61cad8367f0be6b991921d4b02a03bb84a5716c

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a9e2dd1eb635c904f10578c68843265b4836eb7fa98dcd991986edd0e2a8f966
MD5 9d4289fbc58247b18e87caf34271abec
BLAKE2b-256 59b6b92956875b1eaa4ddb96b29b5664d5600172525990a034064f2063cb3a06

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9c41131be10f9b5c3fe445818bb2274efc73c1d588ca17c091224deca3a7a30d
MD5 de18f47d39c49d3364dca1af5026dc0f
BLAKE2b-256 1057202b5ee498a14dc10efc48e4b1bf26bc857b1a4d8aa33cdb51b200d3f5f2

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b266e980b3c9c2d5ccf69b4ca80b17ba7a59f7edd0b37aea2edce9653a61a634
MD5 0b514202f645066da1d62e7e3461e810
BLAKE2b-256 c3d783ae31c9f75d1ce92622576cbf7245b69077a8053510676cbe5c23d284e7

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34fbb8ddd5aa6bedaeef18bb7cf46d32b4249a3f50422e74c22c563307a20263
MD5 6e6a89bb3a46b28e101a9ca23f20c1f8
BLAKE2b-256 469b2d43dd7c036215ebfdd3c1733c8181528af8d20172e5cb500edda20a814b

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cdfcb96e95d40c0c489cbabbbf6d7cf91fbf53cdbc01fac572538f9d29046c7b
MD5 614c4021cd5e1aae9a5ee6350b707972
BLAKE2b-256 63910c1f08b4af729939e65fc715c6dfe1ed5a1c0fbb181ecd64f96b5a2e66d5

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15b8fd09884ffd973f1a326f8270b3bc91a615f677dd5035d015a9e389edeae9
MD5 c8274473ca5c13e57aab4de2e8dfc7b3
BLAKE2b-256 73226e53fa6f68fec7e84c3b926946342a4e5fe8badb670f061d51a3e85a6f4b

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f0e330dddb759695a147ee79313002fdd1749d9e9d7559642ef1e4c3b259c3b
MD5 35ad7c14ae2716e9b78188abb7a99668
BLAKE2b-256 f4a71eb7e8afac987e7b8e5697dd51e6eb1257330969fe59fa78622893d486f8

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cbfab390886d1fff61c93d2aa4814f45c8ea90b9f8930be2ab76894570dfd93
MD5 b93bd2084bc90dd1f878cf21d5fa4479
BLAKE2b-256 c3e182f3c4247dd0c36f944b4bc81293ea68c1b33163cfa0de8b905836ba2aea

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dbaade136af58aa7f6dc554b22922025682c23e7e60ab450c1a63167fe55b08
MD5 f408f08e6c6446a2dbbad7d550f77510
BLAKE2b-256 5557f208d3f2da96100fae95aa1b17f2f13c778bae0ac49611fe2a1e53fc48a1

See more details on using hashes here.

File details

Details for the file xxhash-3.4.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.4.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69e53a27da657ad72f1d4be31048a207b901ee524e9580df925b37fbfbbdc2fc
MD5 58614d726babfc996411b7147b794821
BLAKE2b-256 ac272ecaf8fcc1c7e82acf85f27c3ecf39738b315492e898f538a94e81009217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9bdf04eeb4bf9e8d18ddd6f9d47b9f683148e148d25b6f6450f103cda43a2017
MD5 770321572d4cea6043e3a12b16c19b95
BLAKE2b-256 952df8a9432ad2588a2680ba53fb2ce4294c2c0ef3e7b7ad8080676b872fc868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e852290a5bbfe0d7e6a971cef478cc6b4dabb620ac3d8d7ba3b8e83f3ad75c4d
MD5 e5b7135c5718aa302597e9c7ce5b267d
BLAKE2b-256 9e056b2140a93666ea9741169a9f43395630a67e5150cd6c6d041a34c2ebd86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1b7075375096ff6e24df24d42e2ed4006925eae4334a1c1ec697912b56b99887
MD5 1f6518e4220a11bf663e39b36ead672b
BLAKE2b-256 ece0460ecd39340f175d030b731789f5fc3ed4640922fed2aabc74eb879703cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 28a4825a018ce069f26cded89accb705598464d5c775b071d16db80374ce384c
MD5 1fc5c1123680e25b7418b0b361d22dec
BLAKE2b-256 c1f165a03b0bce9cc326028223346bc206888981da2116e6f8463136eca828d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d29bfccc661a9a5b3d3acf75e5b3afec3c36f3840a44ea3b54347ec527aff38f
MD5 12d9567e5ac4109112e91ad069e18df9
BLAKE2b-256 6dc4781285059d757e28c48bf7cafa9903019a43e3a34b7c944ab39715b11c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fdb5c38fe5ccaf9789887809101512c8392b9ef76753b99986ba5ace0c689c6
MD5 8ba8659f127f9cf8250207961567d493
BLAKE2b-256 fdb2bf4efebde006269cb98f3b81781d70d394739b67863300532d6a8791c590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc94837808c32df8309556ec6da548dbb12b7dd5fbef2844a5581cf59c185dcd
MD5 cee0927876203c76835112f7d3e26f67
BLAKE2b-256 3304b5ddd2d92efc450d19b7ceca6e59152231b97f69bdf576474fa61345d9ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d0bb37b0e7e65d5ce9de8b62f969361108744bc33b4b5fdb53bde00d94d96c7
MD5 099bb1b472dc8f3952b12810776c4a13
BLAKE2b-256 1a5ae4238070d3937db21f76518386c1a6c3b58b6e8dc8d77b7c6fa8d8faa75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c64bb06e6a32bdeb354393d8d05d2d287087f33c5525c6f8e9108d8714f63eb1
MD5 c76148f1d0c8221a31ff780a7a029887
BLAKE2b-256 60c8293d788d05ee94b181b84d39804917f4bf3db4777b791c87ca92809d6760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6fc12dfc85f2b5d58590d94956805666ddc200d73e8da7e75007b17ab8bb00a
MD5 6514f5c2ee710fbbdfa15b8c96082499
BLAKE2b-256 57b968142983918e42295ba8bb694f53c1f7b2904b2bfc33fc704b2bd3d1b5ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d187de7a863dbaee0cc902bf50b93e0cd7163c3d22e9e919cd7624196cd208b
MD5 fb52ae78fda318a08edb9b71c459a58f
BLAKE2b-256 29a8daabe86520b85e3e43fd8b581400a9ca79469babab13c8153fe0fe65ba36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2e259b628d4d986f9dc16ef1c3627e58f9ea87a3d311f8ce39b3bdbf392ffac
MD5 b7cbf2a235c72b789a10504690e351fc
BLAKE2b-256 5418bb3112a4cf0959208e5ca28864e2de0fba74d7a6935eec99683f0f6bfe81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2cc9840829e9d21dcfb5747b7a5b0d29f086ba2254e9f2811fa429a8d083da88
MD5 01b120f7e335fc2c87a72f9c7ae653f2
BLAKE2b-256 a054e5dda842c7cbd99c83dc9d537b6f49cb0dd521e1924f6e39dbafcab5c0d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ab0f681a75c47efd30e171e62541738e4ba32ad1b7fe04fe6eeec9e9cd468461
MD5 212d0f0145a084c64c02fd56e05fe65e
BLAKE2b-256 d003acb89b921fcc1d6184743878e38f2dc7ed70a23d486765d36eecfb7d0bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 ce10c888d5ce5b7bad0895b30871778b3f7cf2a4f6a7ce1e3c420d5d5fc35051
MD5 55beec47d352e0013544bc6f6a8ac02c
BLAKE2b-256 608f80f2065416f4d1a6a971eedf6754d055413f2f140aaaddc66b17e5938160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 433290b409a7d895291f3c4c183dfbd26fca926ac3da47c484dad96ef390857e
MD5 052c7fe8ec8999a3579d01166ad01e0c
BLAKE2b-256 a89eb19a9adf3f8c987445ca874333c1cfe519cfb6bb6b5998f59ce9e53f83e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a72db5ca2af2bd4a46312f8bc8b786a22334d2218228e71ba67e8c22bc524ba4
MD5 6c1f21cefcafff9f01918ab17af8639c
BLAKE2b-256 403ec16eb8698b01edef3f2b7a5067a338eeada49e091e8b54e428d131950225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37fe157116aa0ece106210d9d4e47894ee10278215438c774c3391c76125b59d
MD5 138b25d32c43a846441dca76921d6738
BLAKE2b-256 6e32a73afaf1817b656241041436905a2bf494f2f06b664af84857b370ebc62b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 406b1af8bad6ffd522391bb6d700cb323b100359e4880df014875abe7e77b8c0
MD5 a81b0797e783aad8c6d1eb9e66bc6ac5
BLAKE2b-256 bef544d3b4879f68493d2e7830c04a50b413e39d8fe8c7c33d18718a33c3b4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0f93f9c38cda162d36ca33f6bd710ef9944f2c57a2000f6f153e2b48218957b
MD5 ef27f9fd9ef0f7104cda6c45e0b35360
BLAKE2b-256 59efd89be8f4c954a6d5cafa5952c6ec5e63fde1283f52b8c9c61eb2e48d147d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99d18ddc438ea98e16cbe7048206bae63598b51cbae277429d6657a9a502ef8a
MD5 0f8b8c7caa5285403d01660718f4e27a
BLAKE2b-256 67e50960a49b0520e9ef7c4740cb1bb26c220c33d7dda8d6da239565de64815f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61fba04e289ce2e803e7749abb46ac588d90644d8afe432918dbf69645db5c9e
MD5 8a5bc78af2a5d3f0abfc197f37027185
BLAKE2b-256 1399ae93b2be6ad35e49103356e7498ace84130b1e68bfe6bac2df06dda051fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c430c2cf0d490f0cfb87b0f2cde77ffc46b294641edce33ab3f3b28e0878a898
MD5 1d4a1aa17b7a3ebdf858ff9c42457e36
BLAKE2b-256 c4e4ffefd6bb4a3f8dd0b8f76e880e51fc79fcb6c4d4a582807eff1f9881446c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 938a5f18ef31402ac69ca73e273a5f7b77e88bf102440661913182729c760680
MD5 25ee5f0f6b98f4838adf5063967219ba
BLAKE2b-256 4e98397c8ba4b1eac08c2421ab0b2b2cee629edeed5b67d0f93e59c947e60f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48398c60e1ec8c5b9e484d01be3859c452249a8dedacc04c21b85c4b77f6bf57
MD5 229c3c739ea760bca1009049428b4f32
BLAKE2b-256 533a2c6b9947a24144a09004e6207885c866b4eb0d31b0304dbfd396f30cdf99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b2c0420177e75277394e09d2af8efc255bd4269b084ce8adf3ab108f81091562
MD5 7d1c8765a6dd576b3525a0a9aeb48699
BLAKE2b-256 036b47872ea7fccf0a1be536b52aeefb1b992ac0d665c66bac15ef7dd7b31e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1c0eb3b893878109d80528520d3ac29e6738e49295994f842f1e5d92ae306029
MD5 5901c5f3f9706f7a50c90f74e9dd80fe
BLAKE2b-256 b45cffe92154e1d9baad5d10ecbab4ad1db8c4af095c99aeb60e529a37dae63d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f9610bb6795a7ce727ad00d4355c19ef3237dc3f2410e69ac8c4f6e7928454e5
MD5 61b41708662ad6e3ad68d664937a4ebe
BLAKE2b-256 6d08a090790d02df274cb9a4cc6303d4a9cbe2974f67472badf78f377f867fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9bc0ee37049ba1a9b3db825c6a7c2e99a2b645ae35e8128e036ef17951138e7c
MD5 ce224325c6a785b58cf7372744437226
BLAKE2b-256 1562df573425faab07ab806f2fea8101c8b0ea2bf75a7d492d7fb7827ff0b40a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57e803aeed47e17790efe85443ec0293e966188cd85f81277ed3545bd363496d
MD5 5da981e81242c0a15343b9b48ba28d06
BLAKE2b-256 864ad26e4e0298913895c345303bc382875feba3536b420a7be8ca0a6e1914bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ada71aa29af078b754ffba0d0652dd9f79620d34f4cfd84618720332a29b92b8
MD5 ba673d864ac3908bbcf869ddaebf2d93
BLAKE2b-256 ab3318fdfb2a752476a534c0a16da484c42db124547a7e52a6c76f89e80f9f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49e4e03cd1d1904abc4e0840287aaa8b307f8111111b1d14396a66ccde8d0e6d
MD5 ee4c41a18466bd4a8e05a122c3e19f31
BLAKE2b-256 e702b6999718c453cb2dbdc4a5ea0466727469f5634de17d8bf9512a93c51c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9010063ecc02e3bfaf4d3709a6f1d077955a558020b497333532530f1b39c50b
MD5 46c241723632f1b2c0c9ceea016ac77f
BLAKE2b-256 141becec8a847d6f53b994300929ace170863d70d0572e1afcd780bb89dae7ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a61546d88bd40166095a8872cf4fd3ab964d2db929809aa2248f824ae483bd3
MD5 ff050d22ee62fe29dfcdc8b20d606525
BLAKE2b-256 120c73fe5e790d0d186163466a3dc8b8e55490ec0c0b25387dbb0a515aa127c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9501316cefa1d60fbbb9ea759a77a0a96a08a6a62d45ea70b4cd9db88f9e8743
MD5 4cd097a95845883d7d0ff317ef7e358c
BLAKE2b-256 3ffea9f46914122e0ca330f1c66500870392cff8a3af6c1e7a2d10db0224edac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14c5d1ca76382ed8eefac42d2e6b4e6cce8c89b71a83a3f8d460382faf6838a7
MD5 7b9f1afada2d7b10d29544828237dbc2
BLAKE2b-256 2e900fc48cbe016742acc2442e220a3aea8a8a9f07ba583e2595610db7d22ff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6aa550d9f519494c3f0e97e0569643286b143a360d71914a55e034959565f0b6
MD5 d91366bfef681de07b2beb12a65992a6
BLAKE2b-256 3f56d98fa1cf4bbb6976a7c39f98eeca93b0c2be67927624cb7369c1f0615d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9f3f0d5de27d3c6e6c90bfc24869dfbe8e4f82db2cb3529a66a9b1bd9123c457
MD5 c069e5e21b780a4853d64a950cf88064
BLAKE2b-256 f97d25f0e6909f562b0b638193fb522cf163afac192e72c26d96d887b02bc656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9ca418b3ce2f2dcb46fc157af6b620e270616b51269ecc1c63916328c1b465eb
MD5 a94c993e394768860c621060466fc0ae
BLAKE2b-256 d2519b27827dfe9fa95d9951cc0cd1803ce2d7cbffaa40c6fa15d371b73f19e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 aaa60aac6b7469e10a8ed4591d51f089c1459a49af40722a132c4c9d325c2d68
MD5 24e1f577c26ba5beb2d504cdb4036e65
BLAKE2b-256 7f471db88ebe85daa24c6623336898cc9ee5b58c345fbfe91dde26e826199b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db1d80860ccd71b8355141c624a67460cd1e11681822aa36c945409c11fb6dfe
MD5 64478d0c93927cf1a246c8e9f08774c5
BLAKE2b-256 246a9f98442a421c1d2766c447b44ee213a95d3a34bbf6c4128d5308e0ba57a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be4fb58810ec6fe63f92e007a67abca1d4dcc742e2d98256843de33acc997031
MD5 2676ffd9e48b231a85f3bb17e11b0ece
BLAKE2b-256 cf2f4babfd44cf900e50e00edaa2bcb05fa2a184ba99711109428cdd443a796c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3627cc756a8c8353c3e99efc03acb9e3eb6e86eb2c864c8c90b4ac1e52598f82
MD5 994902633df3cc47903e3e0b996dcce0
BLAKE2b-256 bb8ae6d8e1f87b4849bd32536b9a50e5b8796e48bef706533aa975d124fcf2e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5c22f1c105b197c1daeaed81b3c24ebc7a7ed968061d7fcc22659782d3c1a63
MD5 3c0b5e17cefb4541c8f43f718c69614d
BLAKE2b-256 06d8e64079d6e1d669bcf3d087e39c6b2860bd1ba8f25d6812ecefa59682365b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fa820948215baa98f4bbed7b090f238413fba79221b046a75e2fed008e51668
MD5 6123c3ce81d1cb8924e951d345b3240e
BLAKE2b-256 983c71dc80d6f44f996cb7196556e3c1dcff46d19c31fc2929c8bfbafc726f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dcb601ca5c31956442a2e1dd910a24b284b128295e7451cd5ff710031911a1e
MD5 88a6f40968dd421d835c10c2224546a7
BLAKE2b-256 295942da94045378f4647a42e7a90999e48562f074001a96e153e7d67faa58ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e0067560ea27b2bf1545a64715b3abfcd9ae2c3edc1d3dff594348e7d663de1
MD5 f7753f66093f3d014fcc902158200ddf
BLAKE2b-256 b4647314c7fd8e586bbbea233173a467d03be2009e9a16c95b33850d3c4bd3b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84ffac7604e88c41e73c8d56bdb6f20e8b4d30a3534bad93e97068a7ae283a4b
MD5 056152ada0872ab9b9b266cb5faaf015
BLAKE2b-256 42fa806f14abc87f82748837eee0b7b72ab1058dee1813aefc2adecf8ebd70c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 21fbda680864789b2b063af20d2f7e11d88b4656650b87abd06a84ecc10d4bcc
MD5 ad51e98b634d5d2dcfe68e795c16c0fb
BLAKE2b-256 4ee19e2ca63ceb34858ec831491672acf5f147f8e12a0b0fecb254e1d4610b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 5cc7d531c1580f93784a3198902f66bdecbd010bb1f6106a465ddd3c0bd16334
MD5 8968ef1620f6e04e5b2febd2b0e85586
BLAKE2b-256 0d0a4ccb6ceffdaa10cb8a61443c71f6841d22c70e86944b8137c213f20d3d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 55714704714cea42047f9c0b0b417f8ab4642157bdc69cd288d0546c517dff6f
MD5 e36366fedd6549e14538219ef7928a35
BLAKE2b-256 4468adced2cdc57ff1bddfbdd7acdaab0a325eb69833555a33be1293bb8ef27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5b225b3fe62ff6445df9f298a6b0fe692d79dcbec9eb81976be69a6910eaddc6
MD5 49d54a21c4fcb258e52f18490a551f6a
BLAKE2b-256 c5a78348673c86cda0e8cd156c05f299f574f830229882f1e2ef442d152aa1b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4c78409ed8e5c44d6f531b110057159879d5cb0759201494e5a4604b22ab4a79
MD5 c7af0b08ce389ea14194e32096fa996b
BLAKE2b-256 a15b9a5817d19ce3e3ebc6461733c76e0810c0bf418306f66f2e21c42979cf12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80a816ab0f70182084cec9fabe86d1b677e48b609d405c74fd60c718b0936769
MD5 9bd1af5f2255065cf204824592a1fff0
BLAKE2b-256 da341d3ce61f6b6923b87b16d53709ef472a05e090fce67bb512593c46a29f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3635a8dfd4ddbb97c9349a74fff5c16e7cdb9a473b8c1e41d44250cb57d579a9
MD5 1904807d26386019ab096e7cffbd71f0
BLAKE2b-256 41cdc359ea0bb32e2b8d7b94252f27b1d7f787c2a8711f9abf0fd0f9bf846a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 442be3671567f2717247f19afc1a52a9e14393ec66d410c236c27b982cb072c9
MD5 092d70fcce5a4b6175a7f50165dfe25e
BLAKE2b-256 6ed0a81d9a49e258280ab93033d4b68a6f3ced662aa019b7dd3f3b3162b00fc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67f058a40cfd9eebc6703b320811d3ddf222e098477081861b9f88f9844c7e9f
MD5 7d1febd2d676997a5d7a3e77abe22e23
BLAKE2b-256 7ab7d1f9cd0acc4038f69e48dd11fcab42a16ac0e567e1218c9776d5b0c5d9a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91c3e99fe453a6e8e92a3068cb02f65df6483fc0650d2ed15f51e6cfdddbb6ba
MD5 633629c72e8884e009ef1563fa1b751e
BLAKE2b-256 ba8454f84e872ab43be6e6f5a0637aeeb8cdc3d0453cb1e4522abf4c51dd41f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b9a0dc40b585081e0fc2f2d8f98d166504ba98a671f4560e55072c397b101ef
MD5 f3e9e06efce46bdacde3402be1a6be15
BLAKE2b-256 d92535207966efe825d6e66a0a701bf2b47f1f6a054b9c3d14ce4564f426f13b

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