Skip to main content

Python binding for xxHash

Project description

Github Actions Status Latest Version Supported Python versions License

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

Installation

$ pip install xxhash

You can also install using conda:

$ conda install -c conda-forge python-xxhash

Installing From Source

$ pip install --no-binary xxhash xxhash

Prerequisites

On Debian/Ubuntu:

$ apt-get install python-dev gcc

On CentOS/Fedora:

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

Linking to libxxhash.so

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

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

Usage

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

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

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

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

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

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

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

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

More condensed:

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

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

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

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

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

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

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

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

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

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

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

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

Streaming classes:

xxh3_64
xxh3_128

Oneshot functions:

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

And aliases:

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

Caveats

SEED OVERFLOW

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

ENDIANNESS

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

DONT USE XXHASH IN HMAC

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

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

CHANGELOG

v3.5.0 2024-08-17

  • Build wheels for Python 3.13

v3.4.1 2023-10-05

  • Build wheels for Python 3.12

  • Remove setuptools_scm

v3.4.0 2023-10-05

Yanked due to wheels building problem.

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

Uploaded Source

Built Distributions

xxhash-3.5.0-pp310-pypy310_pp73-win_amd64.whl (30.1 kB view details)

Uploaded PyPy Windows x86-64

xxhash-3.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxhash-3.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (29.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

xxhash-3.5.0-pp39-pypy39_pp73-win_amd64.whl (30.1 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxhash-3.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (29.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

xxhash-3.5.0-pp38-pypy38_pp73-win_amd64.whl (30.1 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

xxhash-3.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (36.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 10.9+ x86-64

xxhash-3.5.0-pp37-pypy37_pp73-win_amd64.whl (30.1 kB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxhash-3.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (29.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

xxhash-3.5.0-cp313-cp313-win_arm64.whl (26.8 kB view details)

Uploaded CPython 3.13 Windows ARM64

xxhash-3.5.0-cp313-cp313-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

xxhash-3.5.0-cp313-cp313-win32.whl (30.2 kB view details)

Uploaded CPython 3.13 Windows x86

xxhash-3.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (192.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

xxhash-3.5.0-cp313-cp313-musllinux_1_2_s390x.whl (414.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

xxhash-3.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl (210.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

xxhash-3.5.0-cp313-cp313-musllinux_1_2_i686.whl (203.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

xxhash-3.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (216.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

xxhash-3.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

xxhash-3.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

xxhash-3.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (200.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

xxhash-3.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (220.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

xxhash-3.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (207.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxhash-3.5.0-cp313-cp313-macosx_11_0_arm64.whl (30.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

xxhash-3.5.0-cp313-cp313-macosx_10_13_x86_64.whl (31.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

xxhash-3.5.0-cp312-cp312-win_arm64.whl (26.8 kB view details)

Uploaded CPython 3.12 Windows ARM64

xxhash-3.5.0-cp312-cp312-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

xxhash-3.5.0-cp312-cp312-win32.whl (30.2 kB view details)

Uploaded CPython 3.12 Windows x86

xxhash-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (192.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

xxhash-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl (414.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

xxhash-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl (210.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

xxhash-3.5.0-cp312-cp312-musllinux_1_2_i686.whl (203.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

xxhash-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (216.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

xxhash-3.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

xxhash-3.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (221.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

xxhash-3.5.0-cp312-cp312-macosx_11_0_arm64.whl (30.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

xxhash-3.5.0-cp312-cp312-macosx_10_9_x86_64.whl (32.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

xxhash-3.5.0-cp311-cp311-win_arm64.whl (26.8 kB view details)

Uploaded CPython 3.11 Windows ARM64

xxhash-3.5.0-cp311-cp311-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

xxhash-3.5.0-cp311-cp311-win32.whl (30.1 kB view details)

Uploaded CPython 3.11 Windows x86

xxhash-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (192.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

xxhash-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl (415.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

xxhash-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl (211.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

xxhash-3.5.0-cp311-cp311-musllinux_1_2_i686.whl (203.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

xxhash-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (217.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

xxhash-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (221.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

xxhash-3.5.0-cp311-cp311-macosx_11_0_arm64.whl (30.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

xxhash-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl (32.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

xxhash-3.5.0-cp310-cp310-win_arm64.whl (26.8 kB view details)

Uploaded CPython 3.10 Windows ARM64

xxhash-3.5.0-cp310-cp310-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

xxhash-3.5.0-cp310-cp310-win32.whl (30.1 kB view details)

Uploaded CPython 3.10 Windows x86

xxhash-3.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (191.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

xxhash-3.5.0-cp310-cp310-musllinux_1_2_s390x.whl (414.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

xxhash-3.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl (210.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

xxhash-3.5.0-cp310-cp310-musllinux_1_2_i686.whl (202.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

xxhash-3.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (216.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

xxhash-3.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (200.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

xxhash-3.5.0-cp310-cp310-macosx_11_0_arm64.whl (30.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

xxhash-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl (32.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

xxhash-3.5.0-cp39-cp39-win_arm64.whl (26.8 kB view details)

Uploaded CPython 3.9 Windows ARM64

xxhash-3.5.0-cp39-cp39-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

xxhash-3.5.0-cp39-cp39-win32.whl (30.1 kB view details)

Uploaded CPython 3.9 Windows x86

xxhash-3.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (191.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

xxhash-3.5.0-cp39-cp39-musllinux_1_2_s390x.whl (413.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

xxhash-3.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl (209.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

xxhash-3.5.0-cp39-cp39-musllinux_1_2_i686.whl (202.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

xxhash-3.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (216.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

xxhash-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (193.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

xxhash-3.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (207.4 kB view details)

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

xxhash-3.5.0-cp39-cp39-macosx_11_0_arm64.whl (30.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

xxhash-3.5.0-cp39-cp39-macosx_10_9_x86_64.whl (32.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

xxhash-3.5.0-cp38-cp38-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

xxhash-3.5.0-cp38-cp38-win32.whl (30.1 kB view details)

Uploaded CPython 3.8 Windows x86

xxhash-3.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (191.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

xxhash-3.5.0-cp38-cp38-musllinux_1_2_s390x.whl (414.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

xxhash-3.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl (210.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

xxhash-3.5.0-cp38-cp38-musllinux_1_2_i686.whl (202.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

xxhash-3.5.0-cp38-cp38-musllinux_1_2_aarch64.whl (216.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

xxhash-3.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

xxhash-3.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (201.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

xxhash-3.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (208.4 kB view details)

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

xxhash-3.5.0-cp38-cp38-macosx_11_0_arm64.whl (30.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

xxhash-3.5.0-cp38-cp38-macosx_10_9_x86_64.whl (32.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

xxhash-3.5.0-cp37-cp37m-win_amd64.whl (30.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

xxhash-3.5.0-cp37-cp37m-win32.whl (30.1 kB view details)

Uploaded CPython 3.7m Windows x86

xxhash-3.5.0-cp37-cp37m-musllinux_1_2_x86_64.whl (191.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

xxhash-3.5.0-cp37-cp37m-musllinux_1_2_s390x.whl (414.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ s390x

xxhash-3.5.0-cp37-cp37m-musllinux_1_2_ppc64le.whl (210.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ppc64le

xxhash-3.5.0-cp37-cp37m-musllinux_1_2_i686.whl (202.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

xxhash-3.5.0-cp37-cp37m-musllinux_1_2_aarch64.whl (216.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

xxhash-3.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.7 kB view details)

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

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

xxhash-3.5.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (201.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxhash-3.5.0-cp37-cp37m-macosx_10_9_x86_64.whl (31.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxhash-3.5.0.tar.gz
  • Upload date:
  • Size: 84.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0.tar.gz
Algorithm Hash digest
SHA256 84f2caddf951c9cbf8dc2e22a89d4ccf5d86391ac6418fe81e3c67d0cf60b45f
MD5 34b8bf6a66906dd2d99d41982dfc5726
BLAKE2b-256 005ed6e5258d69df8b4ed8c83b6664f2b47d30d2dec551a29ad72a6c69eafd31

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5a74f23335b9689b66eb6dbe2a931a88fcd7a4c2cc4b1cb0edba8ce381c7a1da
MD5 61e99079cdafa283272164f2de329017
BLAKE2b-256 62e3bef7b82c1997579c94de9ac5ea7626d01ae5858aa22bf4fcb38bf220cb3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e2febf914ace002132aa09169cc572e0d8959d0f305f93d5828c4836f9bc5a6
MD5 d440b3823398ac1a6081a314683ff2b1
BLAKE2b-256 0ff8f6c61fd794229cc3848d144f73754a0c107854372d7261419dcbbd286299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fab81ef75003eda96239a23eda4e4543cedc22e34c373edcaf744e721a163986
MD5 4d01957617b408f8b481d1ccce877841
BLAKE2b-256 0c67f75276ca39e2c6604e3bee6c84e9db8a56a4973fde9bf35989787cf6e8aa

See more details on using hashes here.

File details

Details for the file xxhash-3.5.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.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d3a10609c51da2a1c0ea0293fc3968ca0a18bd73838455b5bca3069d7f8e32b
MD5 5de4a6eb5fd0be848b0bc45fc1c26e5b
BLAKE2b-256 79d3c029c99801526f859e6b38d34ab87c08993bf3dcea34b11275775001638a

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2014c5b3ff15e64feecb6b713af12093f75b7926049e26a580e94dcad3c73d8c
MD5 62ccd3f9c69a9847bc0dcbeb8b4cde78
BLAKE2b-256 ab9a233606bada5bd6f50b2b72c45de3d9868ad551e83893d2ac86dc7bb8553a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b150b8467852e1bd844387459aa6fbe11d7f38b56e901f9f3b3e6aba0d660240
MD5 b0d448de5ef80621bc0e457a9169b798
BLAKE2b-256 bbf8505385e2fbd753ddcaafd5550eabe86f6232cbebabad3b2508d411b19153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd1b2281d01723f076df3c8188f43f2472248a6b63118b036e641243656b1b0f
MD5 94220397f256d2de1c0d8dda48e195f6
BLAKE2b-256 b2408f902ab3bebda228a9b4de69eba988280285a7f7f167b942bc20bb562df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ce379bcaa9fcc00f19affa7773084dd09f5b59947b3fb47a1ceb0179f91aaa1
MD5 189df76e01a2b63ac7a751e474ab7b7e
BLAKE2b-256 82dd3c42a1f022ad0d82c852d3cb65493ebac03dcfa8c994465a5fb052b00e3c

See more details on using hashes here.

File details

Details for the file xxhash-3.5.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.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c770750cc80e8694492244bca7251385188bc5597b6a39d98a9f30e8da984e0
MD5 9a5d4c0c9b9bd2cb7b7103d481e55dc5
BLAKE2b-256 db87bd06beb8ccaa0e9e577c9b909a49cfa5c5cd2ca46034342d72dd9ce5bc56

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 531af8845aaadcadf951b7e0c1345c6b9c68a990eeb74ff9acd8501a0ad6a1c9
MD5 84c94a971c9da7562317c5360e123807
BLAKE2b-256 c25630d3df421814947f9d782b20c9b7e5e957f3791cbd89874578011daafcbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e6a4dd644d72ab316b580a1c120b375890e4c52ec392d4aef3c63361ec4d77d1
MD5 1e1b7772702cc7bb7155004f5069dbc3
BLAKE2b-256 239b401ae46144c4baaf4e62a171e23d19ee3ee438c6c9973707575c0add920a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2061188a1ba352fc699c82bff722f4baacb4b4b8b2f0c745d2001e56d0dfb514
MD5 aac036d2ec36d6095e800e05bf159b7f
BLAKE2b-256 23576427bf11fbf68ebdb85624bd1b1d5ebb42dbf1053e284c1c2ea3b7f01b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc1276d369452040cbb943300dc8abeedab14245ea44056a2943183822513a18
MD5 88f5794100a973e76c79bbe4f862d677
BLAKE2b-256 d2e8256021fadf225b2d56689358ad7eead0471a05d004ed0b29db6bdb0c99ff

See more details on using hashes here.

File details

Details for the file xxhash-3.5.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.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38c384c434021e4f62b8d9ba0bc9467e14d394893077e2c66d826243025e1f81
MD5 c5424a45b2a24e24208e61d189f405ce
BLAKE2b-256 8390823ff5d5058338f55f8ad060dddebe9cb279e2f2b780b47faae55be1c537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 297595fe6138d4da2c8ce9e72a04d73e58725bb60f3a19048bc96ab2ff31c692
MD5 7af895b0df03597a822424139b2f165b
BLAKE2b-256 cbdc7eaa6769f20cdf215a291a5aa92dbfad56f2cdcf2774522d60de76af0fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0691bfcc4f9c656bcb96cc5db94b4d75980b9d5589f2e59de790091028580837
MD5 635a3bb24bca971b79e1ec0ada57c9d8
BLAKE2b-256 683c1a99e63e64448cd73d21ef633fef6c00d57f19b82874fe9b0cbfc6b0158f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fa0b72f2423e2aa53077e54a61c28e181d23effeaafd73fcb9c494e60930c8e
MD5 20b2dc3e94ac8a94196b9cf03f04e3f7
BLAKE2b-256 816d050b8ddd15446a7ceddf715ba3c96c3633348e5a7351a2e44b6059bd5818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d30bbc1644f726b825b3278764240f449d75f1a8bdda892e641d4a688b1494ae
MD5 0888b3a569dbdb32fe494537f35e7c43
BLAKE2b-256 654432dbb74901f3127efbadcc41593af55def1a60303f433dc4db1b14d27515

See more details on using hashes here.

File details

Details for the file xxhash-3.5.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.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13de2b76c1835399b2e419a296d5b38dc4855385d9e96916299170085ef72f57
MD5 ef82ba421c979e2ba2b29e7db4c2b67b
BLAKE2b-256 fe366fd2ed01010f45b88aeaa9240749057adc2f654b7632a2bdc19a0ecf73d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b4154c00eb22e4d543f472cfca430e7962a0f1d0f3778334f2e08a7ba59363c
MD5 45b64a179ffda4035e05c32e5a59e85d
BLAKE2b-256 8abd65655cbb174b363840e72b6ecc6f32ad78ce81c3da6e799b75764805a543

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4811336f1ce11cac89dcbd18f3a25c527c16311709a89313c3acaf771def2d4b
MD5 d3eec5a0167e5ea0f86fd068876c9404
BLAKE2b-256 27ee518b72faa2073f5aa8e3262408d284892cb79cf2754ba0c3a5870645ef73

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 80babcc30e7a1a484eab952d76a4f4673ff601f54d5142c26826502740e70b43
MD5 2da6b8a30a7d6c73e3b3ba5202e6b262
BLAKE2b-256 96148416dce965f35e3d24722cdf79361ae154fa23e2ab730e5323aa98d7919e

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 53a068fe70301ec30d868ece566ac90d873e3bb059cf83c32e76012c889b8637
MD5 bc689e98e76a53d392dbae3af26be65d
BLAKE2b-256 1f6dc61e0668943a034abc3a569cdc5aeae37d686d9da7e39cf2ed621d533e36

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6c50017518329ed65a9e4829154626f008916d36295b6a3ba336e2458824c8c
MD5 53a23e222eb3cc68a92173e013f6fc02
BLAKE2b-256 75db009206f7076ad60a517e016bb0058381d96a007ce3f79fa91d3010f49cc2

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4e28503dccc7d32e0b9817aa0cbfc1f45f563b2c995b7a66c4c8a0d232e840c7
MD5 897b7a30690af301a81d1ea2354fd44e
BLAKE2b-256 9862440083fafbc917bf3e4b67c2ade621920dd905517e85631c10aac955c1d2

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3ff2c0a34eae7df88c868be53a8dd56fbdf592109e21d4bfa092a27b0bf4a7bf
MD5 521b91006ff34491c5396776669a4feb
BLAKE2b-256 a2b29a8ded888b7b190aed75b484eb5c853ddd48aa2896e7b59bbfbce442f0a1

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bcd51708a633410737111e998ceb3b45d3dbc98c0931f743d9bb0a209033a326
MD5 4b1d161a8c7635fca29172e524f81f4a
BLAKE2b-256 b62a5043dba5ddbe35b4fe6ea0a111280ad9c3d4ba477dd0f2d1fe1129bda9d0

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89e66ceed67b213dec5a773e2f7a9e8c58f64daeb38c7859d8815d2c89f39ad7
MD5 270426e4119efe94328f14dba471ad1d
BLAKE2b-256 80d573c73b03fc0ac73dacf069fdf6036c9abad82de0a47549e9912c955ab449

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07fda5de378626e502b42b311b049848c2ef38784d0d67b6f30bb5008642f8eb
MD5 ebfcf91a71d114543e081db0a1799f9b
BLAKE2b-256 b40e15c243775342ce840b9ba34aceace06a1148fa1630cd8ca269e3223987f5

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82085c2abec437abebf457c1d12fccb30cc8b3774a0814872511f0f0562c768c
MD5 558ef6f52df9f2fac28d202e6111157a
BLAKE2b-256 bf85a836cd0dc5cc20376de26b346858d0ac9656f8f730998ca4324921a010b9

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd2fd827b0ba763ac919440042302315c564fdb797294d86e8cdd4578e3bc7f3
MD5 bb1e4927bc54eda0611617ce09b5d6b8
BLAKE2b-256 fee9cc266f1042c3c13750e86a535496b58beb12bf8c50a915c336136f6168dc

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f85e0108d51092bdda90672476c7d909c04ada6923c14ff9d913c4f7dc8a3bc
MD5 2a40681bc1e2606f7da20c661a42d790
BLAKE2b-256 c3cc762312960691da989c7cd0545cb120ba2a4148741c6ba458aa723c00a3f8

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c279f0d2b34ef15f922b77966640ade58b4ccdfef1c4d94b20f2a364617a493f
MD5 5babbce6e6b1f8a79db6a114014c49de
BLAKE2b-256 87a1b028bb02636dfdc190da01951d0703b3d904301ed0ef6094d948983bef0e

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97a662338797c660178e682f3bc180277b9569a59abfb5925e8620fba00b9fc5
MD5 542ed547ab31511ab4a3448c49265b71
BLAKE2b-256 fcd8b3627a0aebfbfa4c12a41e22af3742cf08c8ea84f5cc3367b5de2d039cce

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 37889a0d13b0b7d739cfc128b1c902f04e32de17b33d74b637ad42f1c55101f6
MD5 4ebba594061aae09ba304d60db5b4bd2
BLAKE2b-256 c9b8e4b3ad92d249be5c83fa72916c9091b0965cb0faeff05d9a0a3870ae6bff

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 586886c7e89cb9828bcd8a5686b12e161368e0064d040e225e72607b43858ba2
MD5 5cfcbeda3e441579fbcfe70ee0d86f60
BLAKE2b-256 0feb04405305f290173acc0350eba6d2f1a794b57925df0398861a20fbafa415

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa0cafd3a2af231b4e113fba24a65d7922af91aeb23774a8b78228e6cd785e3e
MD5 02d02ff9eba76e87c77e696687379272
BLAKE2b-256 d96b1c443fe6cfeb4ad1dcf231cdec96eb94fb43d6498b4469ed8b51f8b59a37

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f7b58d1fd3551b8c80a971199543379be1cee3d0d409e1f6d8b01c1a2eebf1f8
MD5 b3fb68e7a62301ef2121db83879de692
BLAKE2b-256 78e3dd76659b2811b3fd06892a8beb850e1996b63e9235af5a86ea348f053e9e

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa9f547bd98f5553d03160967866a71056a60960be00356a15ecc44efb40ba8e
MD5 bd9fe6e80a143c9b29b3bd4336af844b
BLAKE2b-256 315cb7a8db8a3237cff3d535261325d95de509f6a8ae439a5a7a4ffcff478189

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 eade977f5c96c677035ff39c56ac74d851b1cca7d607ab3d8f23c6b859379cab
MD5 462951be2e6df1846819ec940077250a
BLAKE2b-256 1702215c4698955762d45a8158117190261b2dbefe9ae7e5b906768c09d8bc74

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 149b7914451eb154b3dfaa721315117ea1dac2cc55a01bfbd4df7c68c5dd683d
MD5 7bc969997a15de1dc109401867e6e562
BLAKE2b-256 22618d6a40f288f791cf79ed5bb113159abf0c81d6efb86e734334f698eb4c59

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e5b5e16c5a480fe5f59f56c30abdeba09ffd75da8d13f6b9b6fd224d0b4d0a2
MD5 f9e30069a72de83e5dfa40429542a5fe
BLAKE2b-256 af517862f4fa4b75a25c3b4163c8a873f070532fe5f2d3f9b3fc869c8337a398

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5d0ddaca65ecca9c10dcf01730165fd858533d0be84c75c327487c37a906a27
MD5 e1696b76c91d7b96c0f8c0efbbbba10f
BLAKE2b-256 8a6e6e88b8f24612510e73d4d70d9b0c7dff62a2e78451b9f0d042a5462c8d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d32a592cac88d18cc09a89172e1c32d7f2a6e516c3dfde1b9adb90ab5df54a6
MD5 d83b8bdf7c3bc88867e937ecbfb0cfb1
BLAKE2b-256 11a781dba5010f7e733de88af9555725146fc133be97ce36533867f4c7e75066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2f2c61bee5844d41c3eb015ac652a0229e901074951ae48581d58bfb2ba01be
MD5 00bc95c68645915b13eea14d3e82a979
BLAKE2b-256 020a96973bd325412feccf23cf3680fd2246aebf4b789122f938d5557c54a6b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61a1ff00674879725b194695e17f23d3248998b843eb5e933007ca743310f793
MD5 56b78764d56754e23ee616003f2419e8
BLAKE2b-256 fe8651258d3e8a8545ff26468c977101964c14d56a8a37f5835bc0082426c672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08424f6648526076e28fae6ea2806c0a7d504b9ef05ae61d196d571e5c879c84
MD5 9198f0d5030b33e071b1e25a466a1466
BLAKE2b-256 5b84de7c89bc6ef63d750159086a6ada6416cc4349eab23f76ab870407178b93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70dabf941dede727cca579e8c205e61121afc9b28516752fd65724be1355cc90
MD5 a5caa8ca3782ef9e35451cf45e4cb223
BLAKE2b-256 fb7df29006ab398a173f4501c0e4977ba288f1c621d878ec217b4ff516810c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59aa1203de1cb96dbeab595ded0ad0c0056bb2245ae11fac11c0ceea861382b9
MD5 c2657a171f02cd63b307767032c57296
BLAKE2b-256 3fd68ca450d6fe5b71ce521b4e5db69622383d039e2b253e9b2f24f93265b52c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14470ace8bd3b5d51318782cd94e6f94431974f16cb3b8dc15d52f3b69df8e00
MD5 138446744400d803f8b7f8bcb89cd0b5
BLAKE2b-256 070e1bfce2502c57d7e2e787600b31c83535af83746885aa1a5f153d8c8059d6

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c4dcb4120d0cc3cc448624147dba64e9021b278c63e34a38789b688fd0da9bf3
MD5 75dfa7cab08d167d31ec0f624ff543c1
BLAKE2b-256 6b8e9e6fc572acf6e1cc7ccb01973c213f895cb8668a9d4c2b58a99350da14b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b702f806693201ad6c0a05ddbbe4c8f359626d0b3305f766077d51388a6bac58
MD5 ce1bbeea3656b8a5b427e999d28181e6
BLAKE2b-256 521cfa3b61c0cf03e1da4767213672efe186b1dfa4fc901a4a694fb184a513d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 109b436096d0a2dd039c355fa3414160ec4d843dfecc64a14077332a00aeb7da
MD5 a967de477709fb3aaf285ccf0c119f1d
BLAKE2b-256 226ddb4abec29e7a567455344433d095fdb39c97db6955bb4a2c432e486b4d28

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 963be41bcd49f53af6d795f65c0da9b4cc518c0dd9c47145c98f61cb464f4839
MD5 05fb0df5755a859720a613686f53f5bb
BLAKE2b-256 71436db4c02dcb488ad4e03bc86d70506c3d40a384ee73c9b5c93338eb1f3c23

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a905ad00ad1e1c34fe4e9d7c1d949ab09c6fa90c919860c1534ff479f40fd12d
MD5 d72d989ad48dee74c47d3ac0110c9f9c
BLAKE2b-256 e364ed82ec09489474cbb35c716b189ddc1521d8b3de12b1b5ab41ce7f70253c

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a8fb786fb754ef6ff8c120cb96629fb518f8eb5a61a16aac3a979a9dbd40a084
MD5 aad097b6d193b932767b699d380aca50
BLAKE2b-256 2303aeceb273933d7eee248c4322b98b8e971f06cc3880e5f7602c94e5578af5

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25b5a51dc3dfb20a10833c8eee25903fd2e14059e9afcd329c9da20609a307b2
MD5 e72f782132fe895514d0bef6f413484b
BLAKE2b-256 3502137300e24203bf2b2a49b48ce898ecce6fd01789c0fcd9c686c0a002d129

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbd2ecfbfee70bc1a4acb7461fa6af7748ec2ab08ac0fa298f281c51518f982c
MD5 f9be5398e01435930dfc8b567a9e1d77
BLAKE2b-256 53ad7fa1a109663366de42f724a1cdb8e796a260dbac45047bce153bc1e18abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89997aa1c4b6a5b1e5b588979d1da048a3c6f15e55c11d117a56b75c84531f5a
MD5 6bec515a071475eea65564e35d8b68b6
BLAKE2b-256 d9729256303f10e41ab004799a4aa74b80b3c5977d6383ae4550548b24bd1971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 924361811732ddad75ff23e90efd9ccfda4f664132feecb90895bade6a1b4623
MD5 5051fe2513d8068dae6474ef5e024080
BLAKE2b-256 62f56d2dc9f8d55a7ce0f5e7bfef916e67536f01b85d32a9fbf137d4cadbee38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c28b2fdcee797e1c1961cd3bcd3d545cab22ad202c846235197935e1df2f8ef7
MD5 d18a11fae728d0fd7efe56c248040fee
BLAKE2b-256 d409d4996de4059c3ce5342b6e1e6a77c9d6c91acce31f6ed979891872dd162b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1308fa542bbdbf2fa85e9e66b1077eea3a88bef38ee8a06270b4298a7a62a166
MD5 f8cc033093146544fe426d0b8976b22a
BLAKE2b-256 049e01067981d98069eec1c20201f8c145367698e9056f8bc295346e4ea32dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 685c4f4e8c59837de103344eb1c8a3851f670309eb5c361f746805c5471b8c88
MD5 9b71c2edeaa49338da80dabd6be01441
BLAKE2b-256 34921a3a29acd08248a34b0e6a94f4e0ed9b8379a4ff471f1668e4dce7bdbaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6027dcd885e21581e46d3c7f682cfb2b870942feeed58a21c29583512c3f09f8
MD5 c3a8d33dd66776a79261bcd61a8f211f
BLAKE2b-256 8c0c7c3bc6d87e5235672fcc2fb42fd5ad79fe1033925f71bf549ee068c7d1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02c2e816896dc6f85922ced60097bcf6f008dedfc5073dcba32f9c8dd786f3c1
MD5 a0e4798d1f9c15de88fb56ea34bf2d2d
BLAKE2b-256 b8c7afed0f131fbda960ff15eee7f304fa0eeb2d58770fade99897984852ef23

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 893074d651cf25c1cc14e3bea4fceefd67f2921b1bb8e40fcfeba56820de80c6
MD5 a736efb9b1d49a1db8108bd7f85f99f3
BLAKE2b-256 6912f969b81541ee91b55f1ce469d7ab55079593c80d04fd01691b550e535000

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9bed5144c6923cc902cd14bb8963f2d5e034def4486ab0bbe1f58f03f042f9a9
MD5 9d4359e88121d2aaf4bb661c7fa14aeb
BLAKE2b-256 7bd7aa0b22c4ebb7c3ccb993d4c565132abc641cd11164f8952d89eb6a501909

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 61c722ed8d49ac9bc26c7071eeaa1f6ff24053d553146d5df031802deffd03da
MD5 9c102e0ee96449eea0a2513027ec149a
BLAKE2b-256 0829dfe393805b2f86bfc47c290b275f0b7c189dc2f4e136fd4754f32eb18a8d

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b96d559e0fcddd3343c510a0fe2b127fbff16bf346dd76280b82292567523442
MD5 4cad69474e92fdb93efa6a57e3a5158c
BLAKE2b-256 a105918f9e7d2fbbd334b829997045d341d6239b563c44e683b9a7ef8fe50f5d

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8d47ebd9f5d9607fd039c1fbf4994e3b071ea23eff42f4ecef246ab2b7334198
MD5 ff5442329c4613287ac5d21f72573799
BLAKE2b-256 487db3c27c27d1fc868094d02fe4498ccce8cec9fcc591825c01d6bcb0b4fc49

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1328f6d8cca2b86acb14104e381225a3d7b42c92c4b86ceae814e5c400dbb415
MD5 419649d5bc8e9613af7498f3a219c8db
BLAKE2b-256 19ae6a6438864a8c4c39915d7b65effd85392ebe22710412902487e51769146d

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec28adb204b759306a3d64358a5e5c07d7b1dd0ccbce04aa76cb9377b7b70296
MD5 d7b2ac30eab482c0c853eca499bede25
BLAKE2b-256 3fd42b971e2d2b0a61045f842b622ef11e94096cf1f12cd448b6fd426e80e0e2

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cc2d67fdb4d057730c75a64c5923abfa17775ae234a71b0200346bfb0a7f482
MD5 584b373c62a434eea204d791dd4d3e04
BLAKE2b-256 b10832d558ce23e1e068453c39aed7b3c1cdc690c177873ec0ca3a90d5808765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0342aafd421795d740e514bc9858ebddfc705a75a8c5046ac56d85fe97bf196
MD5 ff56563588670966663658ecea2d58f3
BLAKE2b-256 f207d9a3059f702dec5b3b703737afb6dda32f304f6e9da181a229dafd052c29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d0d307d27099bb0cbeea7260eb39ed4fdb99c5542e21e94bb6fd29e49c57a23
MD5 1cbaa89b9f4eecd3c662496b2b312e5d
BLAKE2b-256 234161202663ea9b1bd8e53673b8ec9e2619989353dba8cfb68e59a9cbd9ffe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7cb29a034301e2982df8b1fe6328a84f4b676106a13e9135a0d7e0c3e9f806da
MD5 726cb27cc2a83df63bb01823355ae27b
BLAKE2b-256 586215d10582ef159283a5c2b47f6d799fc3303fe3911d5bb0bcc820e1ef7ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c5d3e570ef46adaf93fc81b44aca6002b5a4d8ca11bd0580c07eac537f36680
MD5 433aa87c66220c634c638bab91b99b33
BLAKE2b-256 20eeb8a99ebbc6d1113b3a3f09e747fa318c3cde5b04bd9c197688fadf0eeae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dbbd9892c5ebffeca1ed620cf0ade13eb55a0d8c84e0751a6653adc6ac40d0c
MD5 5ed26ad5e1c7206ddd439fa46a67deb6
BLAKE2b-256 eb5827caadf78226ecf1d62dbd0c01d152ed381c14c1ee4ad01f0d460fc40eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3171f693dbc2cef6477054a665dc255d996646b4023fe56cb4db80e26f4cc520
MD5 0f67599a77270baa817bc1d0b9c3aead
BLAKE2b-256 16e6be5aa49580cd064a18200ab78e29b88b1127e1a8c7955eb8ecf81f2626eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ece616532c499ee9afbb83078b1b952beffef121d989841f7f4b3dc5ac0fd212
MD5 6983dabada05c44c36752198db756638
BLAKE2b-256 bb8a0e9feca390d512d293afd844d31670e25608c4a901e10202aa98785eab09

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.5.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a7b1d8315d9b5e9f89eb2933b73afae6ec9597a258d52190944437158b49d38e
MD5 fa59b0d77f57638b10897008762767a9
BLAKE2b-256 e247d06b24e2d9c3dcabccfd734d11b5bbebfdf59ceac2c61509d8205dd20ac6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 220f3f896c6b8d0316f63f16c077d52c412619e475f9372333474ee15133a558
MD5 b88e839e945de78b7199d8693012e7cc
BLAKE2b-256 d587382ef7b24917d7cf4c540ee30f29b283bc87ac5893d2f89b23ea3cdf7d77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5ed9ebc46f24cf91034544b26b131241b699edbfc99ec5e7f8f3d02d6eb7fba4
MD5 f9dadbd002baee5d989224850bc6491a
BLAKE2b-256 862b915049db13401792fec159f57e4f4a5ca7a9768e83ef71d6645b9d0cd749

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8aa771ff2c13dd9cda8166d685d7333d389fae30a4d2bb39d63ab5775de8606
MD5 2e7fdb9e337b53bcdbc61af96ff7b6e7
BLAKE2b-256 72bb5b55c391084a0321c3809632a018b9b657e59d5966289664f85a645942ac

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 30eb2efe6503c379b7ab99c81ba4a779748e3830241f032ab46bd182bf5873af
MD5 49e83f89b54f89a6a21e2d20ee3161c3
BLAKE2b-256 022c18c6a622429368274739372d2f86c8125413ec169025c7d8ffb051784bba

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7a46e1d6d2817ba8024de44c4fd79913a90e5f7265434cef97026215b7d30df6
MD5 8c0b1085c5e72dc094a59d3d35d06632
BLAKE2b-256 94fbe9028d3645bba5412a09de13ee36df276a567e60bdb31d499dafa46d76ae

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e93a5ad22f434d7876665444a97e713a8f60b5b1a3521e8df11b98309bff833
MD5 68b9c607cdd34c987120abd226b739d7
BLAKE2b-256 c4f405e15e67505228fc19ee98a79e427b3a0b9695f5567cd66ced5d66389883

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 604253b2143e13218ff1ef0b59ce67f18b8bd1c4205d2ffda22b09b426386898
MD5 d28c35eaed67c8f43fdc8ea0db1b0a64
BLAKE2b-256 c4d704e1b0daae9dc9b02c73c1664cc8aa527498c3f66ccbc586eeb25bbe9f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a606c8070ada8aa2a88e181773fa1ef17ba65ce5dd168b9d08038e2a61b33754
MD5 7723ff48e31a2ff750d05817f5603331
BLAKE2b-256 b4b4332647451ed7d2c021294b7c1e9c144dbb5586b1fb214ad4f5a404642835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eefc37f6138f522e771ac6db71a6d4838ec7933939676f3753eafd7d3f4c40bc
MD5 e0a613a40e347bc972659ad81357a1ed
BLAKE2b-256 f3de0ab8c79993765c94fc0d0c1a22b454483c58a0161e1b562f58b654f47660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33513d6cc3ed3b559134fb307aae9bdd94d7e7c02907b37896a6c45ff9ce51bd
MD5 4988bf9311b95a86db3e05767a68e97d
BLAKE2b-256 8648c1426dd3c86fc4a52f983301867463472f6a9013fb32d15991e60c9919b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe1a92cfbaa0a1253e339ccec42dbe6db262615e52df591b68726ab10338003f
MD5 f82567f3bf26472e0c1b12b127c3a366
BLAKE2b-256 b4929ac297e3487818f429bcf369c1c6a097edf5b56ed6fc1feff4c1882e87ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42eca420c8fa072cc1dd62597635d140e78e384a79bb4944f825fbef8bfeeef6
MD5 c4b85554734b3458c67e2761f4e84ea1
BLAKE2b-256 f41ca42c0a6cac752f84f7b44a90d1a9fa9047cf70bdba5198a304fde7cc471f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0c48b6300cd0b0106bf49169c3e0536408dfbeb1ccb53180068a18b03c662ab
MD5 0b302c09181609ec532cf06a497585c0
BLAKE2b-256 7ca8b2a42b6c9ae46e233f474f3d307c2e7bca8d9817650babeca048d2ad01d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfc8cdd7f33d57f0468b0614ae634cc38ab9202c6957a60e31d285a71ebe0301
MD5 0b7ef895937288bba130049cb71ef36e
BLAKE2b-256 d4f6531dd6858adf8877675270b9d6989b6dacfd1c2d7135b17584fc29866df3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 392f52ebbb932db566973693de48f15ce787cabd15cf6334e855ed22ea0be5b3
MD5 a00c4740e29539b32a06825954553a18
BLAKE2b-256 df293a416533b23f1041cc2967b11de1aaa764585d97fd1d22b79efe9f58e7aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 50ac2184ffb1b999e11e27c7e3e70cc1139047e7ebc1aa95ed12f4269abe98d4
MD5 eef4c6b4273ab2e4654ef69e955b41e2
BLAKE2b-256 a5c3f008537288e998f7986f7c38fce74142edca3b3bdf9ef221ac74d58c9f1d

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a80ad0ffd78bef9509eee27b4a29e56f5414b87fb01a888353e3d5bda7038bd
MD5 1d12f6b2f108c89c005a257711bc389e
BLAKE2b-256 db4731a7694fa8e89ec094b5624f4ef51d0926f06f29d4b35faad04532f2c6d5

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 82b833d5563fefd6fceafb1aed2f3f3ebe19f84760fdd289f8b926731c2e6e91
MD5 3f3fb491200b3496b311b90db4c994f4
BLAKE2b-256 d1491f9028d521c06173c57d02ef02c7d0ae406277e912c850a408d2e2cf7433

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 23241ff6423378a731d84864bf923a41649dc67b144debd1077f02e6249a0d54
MD5 f31ec54d535ed7c0efcf55ef5b6fbcbf
BLAKE2b-256 e67ff0ca5f4106f85d865b897e9e28d7399985983ceeeffed6a7a3bcada39a4e

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5e9db7ef3ecbfc0b4733579cea45713a76852b002cf605420b12ef3ef1ec148
MD5 9fcc0c492f6a0ed340c38cbdfda242a5
BLAKE2b-256 c7a1f9db5d348bd0a9022fb1103dac588f4200cdacf58a4eaa93f2b0e68471fd

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1abffa122452481a61c3551ab3c89d72238e279e517705b8b03847b1d93d738
MD5 c7932721892e8b7c81e7f28fb8aa1fb1
BLAKE2b-256 c37a762052e7c2c198809d81a578d6e16ae747b13cf3061bc2cbfd9b6ef43d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5bc08f33c4966f4eb6590d6ff3ceae76151ad744576b5fc6c4ba8edd459fdec
MD5 2f3f87acb7fe0389c71ac20a494a9980
BLAKE2b-256 62f10d1bb3518dbcf4424c5d3e0b259d742e50a51753036799e8a6f1714e4fb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1030a39ba01b0c519b1a82f80e8802630d16ab95dc3f2b2386a0b5c8ed5cbb10
MD5 f80b9390055fc7359eaeb8c0fbccdb5c
BLAKE2b-256 c4bf435e86a00d15751e2939027b39e8ba739ddfe840f0d5a9d795095edf5482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 695735deeddfb35da1677dbc16a083445360e37ff46d8ac5c6fcd64917ff9ade
MD5 0748a11bd6b385b2e7cc9610434ef504
BLAKE2b-256 db2d0ac52e0f52dd376b0ddadb4d13b9f793b1c8edf458f8c31a2b8db6df56c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 602d339548d35a8579c6b013339fb34aee2df9b4e105f985443d2860e4d7ffaa
MD5 f33dd086a7d70554fd021f51a32fb477
BLAKE2b-256 6fbd5e452cac8b4c619ff55c455bebfdab51303519dc23dd9123c20e6182ee30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 160e0c19ee500482ddfb5d5570a0415f565d8ae2b3fd69c5dcfce8a58107b1c3
MD5 b5aa512ba5e12f25db05514502a9d5a5
BLAKE2b-256 8deaee55398fee40273f0bff935174fe08775121cf0a49b5ae5f2717b9967512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dee1316133c9b463aa81aca676bc506d3f80d8f65aeb0bba2b78d0b30c51d7bd
MD5 fd3145942f6a19ad84a76fd1e723c8f8
BLAKE2b-256 70816229146335db0b8407a309640ce1ba9657850f06697b99130e4a32facd62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74752ecaa544657d88b1d1c94ae68031e364a4d47005a90288f3bab3da3c970f
MD5 89101586383288d97a770caecb67e09f
BLAKE2b-256 633295925b2eacbd1dde78749b8d94f8910a9f36f47a3891e904fc694766cc4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c3bc7bf8cb8806f8d1c9bf149c18708cb1c406520097d6b0a73977460ea03602
MD5 89220269831b21d23f8fb88528162e11
BLAKE2b-256 2cc4b02b3eab279dbaa749d30268b9db71aea03f55249cf91861db5213458729

See more details on using hashes here.

File details

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

File metadata

  • Download URL: xxhash-3.5.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7ccb800c9418e438b44b060a32adeb8393764da7441eb52aa2aa195448935306
MD5 a6dacabc365ebca2d6020c227066e610
BLAKE2b-256 95f9d8c243d2a5ca7d2e0888ca7039945fdf30e278a703212fa12e3caaf80dff

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0b48edbebea1b7421a9c687c304f7b44d0677c46498a046079d445454504737
MD5 f403114bf8ce9b8f24e6fb44beadee84
BLAKE2b-256 330e8e9e133cefd78b4576aa9de14cd271dc440bdb2e2cdcaa0105e7988f82cf

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp37-cp37m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a9d360a792cbcce2fe7b66b8d51274ec297c53cbc423401480e53b26161a290d
MD5 289070a85eb52c8bf56ddc3d5cbfe022
BLAKE2b-256 06fb336621ff328ed12ef2f9be223669e26a845ea373206fa7b8acad72a7ebd3

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp37-cp37m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5d2a01dcce81789cf4b12d478b5464632204f4c834dc2d064902ee27d2d1f0ee
MD5 bd924eb55d35a6c0ae28c00636574332
BLAKE2b-256 28a22e0897909cdcb8d97e01c738e54d67b45776a2d03fced173cd26e862da8e

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 683b94dbd1ca67557850b86423318a2e323511648f9f3f7b1840408a02b9a48c
MD5 a2f985fa17ad19d494fddf2141ceb054
BLAKE2b-256 5df534e7eaeebe66c9b390b5a39dc1e58c22cb8f942a45c195675d29f226e5cf

See more details on using hashes here.

File details

Details for the file xxhash-3.5.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63107013578c8a730419adc05608756c3fa640bdc6abe806c3123a49fb829f43
MD5 0bca26a2ceffc31d452de07e1425dff5
BLAKE2b-256 f4abc139884d9d9faeb019e33ebf529ecc9a1763b71d7e77141326e35954f953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd86b8e7f703ec6ff4f351cfdb9f428955859537125904aa8c963604f2e9d3e7
MD5 e72e25868ed005892929b89e1684c927
BLAKE2b-256 215775804858815f1f005dc8f6ca09266c14fbc8ba8ad836a6f8794f180394a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ec70a89be933ea49222fafc3999987d7899fc676f688dd12252509434636622
MD5 894bc80808c74a8cea8eec3448359c3c
BLAKE2b-256 f6f4628046ede5c19edace01ef124d07c90040f7c448d2fdf1e02a235c0ee4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33eac61d0796ca0591f94548dcfe37bb193671e0c9bcf065789b5792f2eda644
MD5 7e5ceb8d8c2505f7e37b4ba124f389df
BLAKE2b-256 6a9ce896ad8480bf195372d82acecbdca1d0adc4096ac9448015d769578a0203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e76e83efc7b443052dd1e585a76201e40b3411fe3da7af4fe434ec51b2f163b
MD5 a445220d31f9e71c0f31354d5867a605
BLAKE2b-256 4fcebc5c7148f954b6a31ebddefaf07d7527aa308b89c25e9900dbcbe2fdc2e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0adfbd36003d9f86c8c97110039f7539b379f28656a04097e7434d3eaf9aa131
MD5 871a1ad8b2b85ddd8cdc2de07e32ed3c
BLAKE2b-256 7564a938b9cf1190d4a9b55a9d00283eedcbc49cc39959f1b5f2a8c9fa3c4086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for xxhash-3.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e5f70f6dca1d3b09bccb7daf4e087075ff776e3da9ac870f86ca316736bb4aa
MD5 5d71faeb2b31d5cf0f9b100b67934f78
BLAKE2b-256 e70f60af4a45c9083a3b2a570db6f70f7478e0065231d713f0fac91b76d8df6b

See more details on using hashes here.

Supported by

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