Skip to main content
Github Actions Status Latest Version Supported Python versions License CodSpeed

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
'4.0.0'
>>> xxhash.XXHASH_VERSION
'0.8.3'

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(b'xxhash').hexdigest()
'32dd38952c4bc720'
>>> xxhash.xxh64(b'xxhash', seed=20141025).hexdigest()
'b559b98d844e0635'
>>> x = xxhash.xxh64(seed=20141025)
>>> x.update(b'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(b'I want an unsigned 32-bit seed!', seed=0).hexdigest()
'f7a35af8'
>>> xxhash.xxh32(b'I want an unsigned 32-bit seed!', seed=2**32).hexdigest()
'f7a35af8'
>>> xxhash.xxh32(b'I want an unsigned 32-bit seed!', seed=1).hexdigest()
'd8d4b4ba'
>>> xxhash.xxh32(b'I want an unsigned 32-bit seed!', seed=2**32+1).hexdigest()
'd8d4b4ba'
>>>
>>> xxhash.xxh64(b'I want an unsigned 64-bit seed!', seed=0).hexdigest()
'd4cb0a70a2b8c7c1'
>>> xxhash.xxh64(b'I want an unsigned 64-bit seed!', seed=2**64).hexdigest()
'd4cb0a70a2b8c7c1'
>>> xxhash.xxh64(b'I want an unsigned 64-bit seed!', seed=1).hexdigest()
'ce5087f12470d961'
>>> xxhash.xxh64(b'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(b'a').digest() == xxhash.xxh64_digest(b'a')
True
>>> xxhash.xxh64(b'a').intdigest() == xxhash.xxh64_intdigest(b'a')
True
>>> xxhash.xxh64(b'a').hexdigest() == xxhash.xxh64_hexdigest(b'a')
True
>>> xxhash.xxh64_hexdigest(b'xxhash', seed=20141025)
'b559b98d844e0635'
>>> xxhash.xxh64_intdigest(b'xxhash', seed=20141025)
13067679811253438005
>>> xxhash.xxh64_digest(b'xxhash', seed=20141025)
b'\xb5Y\xb9\x8d\x84N\x065'
In [1]: import xxhash

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

In [3]: %timeit xxhash.xxh64(b'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

Thread safety

Streaming hash objects (xxh32, xxh64, xxh3_64, xxh3_128 / xxh128) are thread-safe: each object carries a per-object lock that serializes access to its internal xxHash state, so concurrent update(), digest(), copy(), and reset() calls on the same object never corrupt state or crash.

One-shot functions (xxh32_digest, xxh64_hexdigest, xxh3_128_digest, etc.) are stateless and always safe to call concurrently.

On Python 3.13+ the lock is always active. On Python 3.9-3.12 the lock is created on the first update() of more than 64KB; operations of 64KB or less never release the GIL, so they are serialized by the GIL itself.

Sharing a streaming hash object across threads is still discouraged: even with locking, the order in which concurrent updates are applied (and hence the final digest) is nondeterministic. Prefer one-shot functions or one hash object per thread.

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

v4.0.0 2026-08-12

  • Breaking change: Drop support for Python 3.8, require Python >= 3.9

  • Breaking change: Remove deprecated xxhash.VERSION_TUPLE

  • Breaking change: The input keyword argument is renamed to data across constructors, update(), and one-shot functions

  • Upgrade xxHash from v0.8.2 to v0.8.3. Note: on GCC/Clang source builds that target AVX2 (e.g. -march=x86-64-v3), upstream v0.8.3 autovectorizes XXH64_update() and makes the xxh64 streaming path about 2x slower. The shipped wheels are built for baseline x86-64 and are unaffected. Source builds can work around it by adding -fno-tree-vectorize to the compiler flags.

  • Add per-object locking for thread safety, with sub-interpreter and free-threaded (no-GIL) Python support

  • Speed up hash constructors by switching them to tp_vectorcall.

  • Build pyodide wasm32 wheels

  • Add s390x big-endian test job

  • Add Python 3.15 classifier

  • CI: shard the PyPI upload into parallel groups and create the GitHub Release automatically

v3.8.1 2026-07-06

  • Register the “benchmark” pytest mark to avoid PytestUnknownMarkWarning

  • Update C extension docstrings and remove stale comments

v3.8.0 2026-06-27

  • Speed up module-level one-shot digest(), intdigest(), and hexdigest() functions by switching them to METH_FASTCALL.

  • Keep one-shot argument handling consistent with hash constructors, including positional and keyword input/seed arguments, duplicate argument errors, and oversized seed wrapping.

  • Fix error handling in the xxh3_128 integer digest path so allocation failures are reported cleanly.

  • Fix Python 3.8 builds by adding a PyModule_AddType compatibility fallback with correct reference counting.

  • Correct type stubs for xxh64_digest(), xxh64_hexdigest(), and xxh64_intdigest(), they were incorrectly aliased to xxh3_64 functions.

v3.7.2 2026-07-06

  • Register the “benchmark” pytest mark to avoid PytestUnknownMarkWarning

  • Update C extension docstrings and remove stale comments

v3.7.1 2026-06-24

  • Fix memory leak in copy() and new() when memory allocation fails (rare edge case)

  • Fix seed/reset state initialization in xxh32 and xxh64 (unlikely to affect normal usage)

  • Replace Py_BuildValue with PyLong_FromUnsignedLong/LongLong for performance

  • Update README examples to use bytes literals

  • Add CodSpeed performance benchmarks and CI workflow

  • Build aarch64/armv7l on native Arm runners; test against Python 3.15.0-beta.2

v3.7.0 2025-04-25

  • Drop support for Python 3.7

  • Build armv7l manylinux/musllinux wheels

  • Build riscv64 manylinux/musllinux wheels

  • Build android and ios wheels

v3.6.0 2025-10-02

  • Build wheels for Python 3.14

  • Python free-threading support

  • Typing: Use Buffer type stubs

  • Deprecate xxhash.VERSION_TUPLE, it will be removed in the next major release

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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xxhash-4.0.0.tar.gz (101.0 kB view details)

Uploaded Source

Built Distributions

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

xxhash-4.0.0-pp311-pypy311_pp73-win_amd64.whl (36.9 kB view details)

Uploaded PyPyWindows x86-64

xxhash-4.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (39.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (47.6 kB view details)

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

xxhash-4.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (33.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxhash-4.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (36.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxhash-4.0.0-pp310-pypy310_pp73-win_amd64.whl (36.9 kB view details)

Uploaded PyPyWindows x86-64

xxhash-4.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (39.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (47.7 kB view details)

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

xxhash-4.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (33.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxhash-4.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (36.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxhash-4.0.0-pp39-pypy39_pp73-win_amd64.whl (36.9 kB view details)

Uploaded PyPyWindows x86-64

xxhash-4.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (39.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (47.7 kB view details)

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

xxhash-4.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (33.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxhash-4.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (36.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxhash-4.0.0-graalpy312-graalpy250_312_native-win_amd64.whl (36.8 kB view details)

Uploaded Windows x86-64graalpy312

xxhash-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (37.9 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (38.2 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (34.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxhash-4.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (31.5 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxhash-4.0.0-cp315-cp315t-win_arm64.whl (34.2 kB view details)

Uploaded CPython 3.15tWindows ARM64

xxhash-4.0.0-cp315-cp315t-win_amd64.whl (37.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

xxhash-4.0.0-cp315-cp315t-win32.whl (35.1 kB view details)

Uploaded CPython 3.15tWindows x86

xxhash-4.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl (274.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp315-cp315t-musllinux_1_2_s390x.whl (496.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

xxhash-4.0.0-cp315-cp315t-musllinux_1_2_riscv64.whl (346.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp315-cp315t-musllinux_1_2_ppc64le.whl (294.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp315-cp315t-musllinux_1_2_i686.whl (277.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

xxhash-4.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl (318.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl (293.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (359.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (278.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (531.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (298.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (314.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (298.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (273.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxhash-4.0.0-cp315-cp315t-macosx_11_0_arm64.whl (36.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

xxhash-4.0.0-cp315-cp315t-macosx_10_15_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

xxhash-4.0.0-cp315-cp315-win_arm64.whl (34.0 kB view details)

Uploaded CPython 3.15Windows ARM64

xxhash-4.0.0-cp315-cp315-win_amd64.whl (36.8 kB view details)

Uploaded CPython 3.15Windows x86-64

xxhash-4.0.0-cp315-cp315-win32.whl (34.8 kB view details)

Uploaded CPython 3.15Windows x86

xxhash-4.0.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl (20.2 kB view details)

Uploaded CPython 3.15PyEmscripten 2026.5 wasm32

xxhash-4.0.0-cp315-cp315-musllinux_1_2_x86_64.whl (263.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp315-cp315-musllinux_1_2_s390x.whl (487.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

xxhash-4.0.0-cp315-cp315-musllinux_1_2_riscv64.whl (337.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp315-cp315-musllinux_1_2_ppc64le.whl (284.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp315-cp315-musllinux_1_2_i686.whl (267.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

xxhash-4.0.0-cp315-cp315-musllinux_1_2_armv7l.whl (307.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp315-cp315-musllinux_1_2_aarch64.whl (281.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (349.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (267.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (519.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (287.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (306.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (285.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (264.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxhash-4.0.0-cp315-cp315-macosx_11_0_arm64.whl (35.7 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

xxhash-4.0.0-cp315-cp315-macosx_10_15_x86_64.whl (37.9 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

xxhash-4.0.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl (37.7 kB view details)

Uploaded CPython 3.15iOS 13.0+ x86-64 Simulator

xxhash-4.0.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl (35.4 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Simulator

xxhash-4.0.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl (34.4 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Device

xxhash-4.0.0-cp315-cp315-android_24_x86_64.whl (40.4 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

xxhash-4.0.0-cp315-cp315-android_24_arm64_v8a.whl (43.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

xxhash-4.0.0-cp314-cp314t-win_arm64.whl (34.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxhash-4.0.0-cp314-cp314t-win_amd64.whl (37.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxhash-4.0.0-cp314-cp314t-win32.whl (35.1 kB view details)

Uploaded CPython 3.14tWindows x86

xxhash-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (274.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp314-cp314t-musllinux_1_2_s390x.whl (499.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxhash-4.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl (348.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (297.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl (279.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxhash-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (319.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (295.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (358.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (279.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (534.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (301.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (312.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (300.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (273.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxhash-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl (36.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxhash-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxhash-4.0.0-cp314-cp314-win_arm64.whl (34.0 kB view details)

Uploaded CPython 3.14Windows ARM64

xxhash-4.0.0-cp314-cp314-win_amd64.whl (36.8 kB view details)

Uploaded CPython 3.14Windows x86-64

xxhash-4.0.0-cp314-cp314-win32.whl (34.8 kB view details)

Uploaded CPython 3.14Windows x86

xxhash-4.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (20.2 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxhash-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (263.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp314-cp314-musllinux_1_2_s390x.whl (486.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxhash-4.0.0-cp314-cp314-musllinux_1_2_riscv64.whl (335.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl (284.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp314-cp314-musllinux_1_2_i686.whl (265.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxhash-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (306.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (280.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (345.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (267.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (518.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (287.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (303.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (283.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (259.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxhash-4.0.0-cp314-cp314-macosx_11_0_arm64.whl (35.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxhash-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl (37.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxhash-4.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (37.7 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxhash-4.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (35.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxhash-4.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (34.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxhash-4.0.0-cp314-cp314-android_24_x86_64.whl (40.4 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxhash-4.0.0-cp314-cp314-android_24_arm64_v8a.whl (43.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxhash-4.0.0-cp313-cp313-win_arm64.whl (33.1 kB view details)

Uploaded CPython 3.13Windows ARM64

xxhash-4.0.0-cp313-cp313-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.13Windows x86-64

xxhash-4.0.0-cp313-cp313-win32.whl (34.1 kB view details)

Uploaded CPython 3.13Windows x86

xxhash-4.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (20.2 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxhash-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (264.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp313-cp313-musllinux_1_2_s390x.whl (486.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxhash-4.0.0-cp313-cp313-musllinux_1_2_riscv64.whl (335.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl (284.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp313-cp313-musllinux_1_2_i686.whl (265.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxhash-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (307.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (279.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (344.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (268.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (519.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (286.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (303.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (283.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (259.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxhash-4.0.0-cp313-cp313-macosx_11_0_arm64.whl (35.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxhash-4.0.0-cp313-cp313-macosx_10_13_x86_64.whl (37.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxhash-4.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (37.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxhash-4.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (35.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxhash-4.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (34.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxhash-4.0.0-cp313-cp313-android_24_x86_64.whl (40.3 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxhash-4.0.0-cp313-cp313-android_24_arm64_v8a.whl (43.2 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxhash-4.0.0-cp312-cp312-win_arm64.whl (33.0 kB view details)

Uploaded CPython 3.12Windows ARM64

xxhash-4.0.0-cp312-cp312-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.12Windows x86-64

xxhash-4.0.0-cp312-cp312-win32.whl (34.3 kB view details)

Uploaded CPython 3.12Windows x86

xxhash-4.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl (20.4 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxhash-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp312-cp312-musllinux_1_2_s390x.whl (478.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxhash-4.0.0-cp312-cp312-musllinux_1_2_riscv64.whl (330.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl (277.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp312-cp312-musllinux_1_2_i686.whl (259.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxhash-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (301.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (272.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (339.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (261.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (510.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (279.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (297.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (276.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (252.8 kB view details)

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

xxhash-4.0.0-cp312-cp312-macosx_11_0_arm64.whl (35.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxhash-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl (38.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxhash-4.0.0-cp311-cp311-win_arm64.whl (33.0 kB view details)

Uploaded CPython 3.11Windows ARM64

xxhash-4.0.0-cp311-cp311-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.11Windows x86-64

xxhash-4.0.0-cp311-cp311-win32.whl (34.3 kB view details)

Uploaded CPython 3.11Windows x86

xxhash-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (257.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp311-cp311-musllinux_1_2_s390x.whl (477.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxhash-4.0.0-cp311-cp311-musllinux_1_2_riscv64.whl (329.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl (277.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp311-cp311-musllinux_1_2_i686.whl (258.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxhash-4.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (300.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (272.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (339.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (260.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (509.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (279.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (295.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (276.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (252.9 kB view details)

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

xxhash-4.0.0-cp311-cp311-macosx_11_0_arm64.whl (35.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxhash-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl (38.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxhash-4.0.0-cp310-cp310-win_arm64.whl (33.0 kB view details)

Uploaded CPython 3.10Windows ARM64

xxhash-4.0.0-cp310-cp310-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.10Windows x86-64

xxhash-4.0.0-cp310-cp310-win32.whl (34.3 kB view details)

Uploaded CPython 3.10Windows x86

xxhash-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (245.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp310-cp310-musllinux_1_2_s390x.whl (466.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxhash-4.0.0-cp310-cp310-musllinux_1_2_riscv64.whl (322.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl (267.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp310-cp310-musllinux_1_2_i686.whl (247.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxhash-4.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (289.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (262.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (333.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (249.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (497.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (270.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (287.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (265.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (242.8 kB view details)

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

xxhash-4.0.0-cp310-cp310-macosx_11_0_arm64.whl (35.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl (38.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-4.0.0-cp39-cp39-win_arm64.whl (33.0 kB view details)

Uploaded CPython 3.9Windows ARM64

xxhash-4.0.0-cp39-cp39-win_amd64.whl (36.8 kB view details)

Uploaded CPython 3.9Windows x86-64

xxhash-4.0.0-cp39-cp39-win32.whl (34.3 kB view details)

Uploaded CPython 3.9Windows x86

xxhash-4.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (245.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxhash-4.0.0-cp39-cp39-musllinux_1_2_s390x.whl (465.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxhash-4.0.0-cp39-cp39-musllinux_1_2_riscv64.whl (321.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxhash-4.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl (267.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxhash-4.0.0-cp39-cp39-musllinux_1_2_i686.whl (247.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxhash-4.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (288.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxhash-4.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (261.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxhash-4.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (332.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxhash-4.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (248.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxhash-4.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (497.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxhash-4.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (270.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxhash-4.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (286.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxhash-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (265.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxhash-4.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (242.6 kB view details)

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

xxhash-4.0.0-cp39-cp39-macosx_11_0_arm64.whl (35.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl (38.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxhash-4.0.0.tar.gz
  • Upload date:
  • Size: 101.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0.tar.gz
Algorithm Hash digest
SHA256 6b4040b26c73c75e6c12273b0ae237f9235f39cce5fabb683a64e9f20d09df8b
MD5 ceafbc5e9fee28641fcb0ebd1b88f153
BLAKE2b-256 586f4d42b20b0dc688552f568e356e7d55b8ea18092eb79c78e40a96f59e7e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0.tar.gz:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 36f59fa0d52d984a19c3026a951a183ebabfb2a847f9c5addc43e0191d44c3ab
MD5 7b0ab58f818fa6ac93cb74104c6f32f2
BLAKE2b-256 8f43efbc17c2a467da34f207dcef369cc9364aa2a8172b4e056a0e875e934688

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65a6af70b5f5ed88f88791c5de70905c655cff0fee062604f67acfc843c2841e
MD5 9a1d41513fb2098312013c6dfd3bfd6c
BLAKE2b-256 3f9cec4801ca684181b0f8bcea447721bc007b740a9ae5c15128e3aed481e51b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 627149915a90215c694e4ac0c75bad8ae00eee1937f39f45b4ff46c01130fdee
MD5 99f559d5785e26d6c2ac7fbe8f117110
BLAKE2b-256 94d00f527d9b2b5b62ae3fed9c28c870d06e3f68926fed465f0b53f2322e6985

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8f3808b745a46aebdc844c603c6b9ab550451cbb499f706decd76f7d1a65ca4b
MD5 a0dd60b10788c8fbb103cbc8378c29d0
BLAKE2b-256 75fd9b6cafb5bcaf99442b5ac0ed2898c830cea9d2f9d962f7f732a17677771e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a1969258533437c96c8a46028820e9c99741ad7d03476abcb76566e2e324d89
MD5 ba1089700518071c7525deb2fe883d98
BLAKE2b-256 bb1ad2855a8bb2f5a7ae10ffd55621a17bef3021646e8b1095494c678f6ace80

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a1c8a2ea77ad2b22ab4ad34cc673aedd291143169ce10fac5728f5d3c017b378
MD5 10dc790c41c92a4191b4b554d001d38a
BLAKE2b-256 83b149cb67d760607af93db044208df1ae51d667e74e9352bdf0a79559445ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ade38cd596f12a250b747a2bb54a7e23b45dcc112c537d34e08e16b06d09bf31
MD5 f95f6ec5f5900d613738888e8d88cbd2
BLAKE2b-256 983e89d28986f30a11f029d07164916634062ff77fe4f5a84dbefa6ac29256ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebf1b7d63171a3ffd8a7361142a51fb7463defa43068d787bb3aa05e0ac822e1
MD5 bb8b961ddcff9a1fb9d0610684f13938
BLAKE2b-256 5c07e46c7ba805c3f7584d59575a185cec04cbd351f694bb7542400129230dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a870ba5809434c0e33bc1c996fbadf59f5bee2346e3ae212e74a1a8a5389a38
MD5 3deb25a0a493a8e96bae521926f0ee6a
BLAKE2b-256 534023edf739346d4b7c38c684d7b7a8089549118f423dba8fcff0649f67a11a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 131e68f730eade01b60b37df1017d07a804ebc62dd06cc9fd6e241c6c09628da
MD5 71d0c09b5a5f31e7e55d626814ca2aa1
BLAKE2b-256 487d6560dc2540d83e885657ce9a44afed7173f71204a8877480853790444f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec6f32520a939345f057fe4fd4cba9e988caf9aa738ae0648ebc9a0e26f9afba
MD5 16ef1d948688dd6f9544dcb7821d344e
BLAKE2b-256 49e1f8d8f3ade77145e937baf7c62b038c964f248a33a439406413ca7d82d5fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6e0690932bd17f1e2e0895d44844fc3bc33304c64970dbdc8e10e86a2808fe40
MD5 77716352d8dfd2e5016b8567a5eb1577
BLAKE2b-256 69b927ce26769194c38e93f9b6a5cc8e6cc24b976e3221566efe89c3db055064

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4f28c13881f025b2a1b8c9f63977aff8e88bddb92844e4eef6373d80884b25d7
MD5 4cf3c6935e5cb03ca072f2f68fd51998
BLAKE2b-256 d3ea043dbf53ebc340331154a34538a0c50dfde0856bea58af96722b6e6651ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af2fc1d2873935fc31eef671596e8c3fda49c95176dd027eadcda948daad4ac4
MD5 ab72fb3253ecaf14d619d9b27738fceb
BLAKE2b-256 4d8dbe8ccd9c66680820393bcdee147ed8a337393cec413793e34c03a28bc2b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af3352a7956604b0716adb2c961102df4a0fbdfaae52ef36d3bf5f82920f4dcb
MD5 698187e160a23592caf28aa32d2d27ab
BLAKE2b-256 d919240b3f5253edaa8f918739cfecdb1e7f6e198a7b56aaabc766d2e0f8ef41

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0054c469c3a0ef8afb6c835d7544b8b0877ba97e7fff4e19d0d3726554708d6e
MD5 d0dec2bf1ef7dd569aafff37bc32de73
BLAKE2b-256 4faa245ed9ebcd8a9b9b4729955d18e8aaa14aaa4d39abd42c85be2a190b085d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a54ccd1cdf51437ba62945b9f72e0e9d97fe4489beadcbbb3924e20a5135b5a
MD5 8f09176e8a58e7fda70515372327da06
BLAKE2b-256 c6e0d3edc6b3732c8bc27710adeaa2f6474fca52bddf730b960260b1442ad6e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b2ff3c48cc82aca34b7eedf68483a7567faffa6c444314556d0f11babb73dc75
MD5 05b199fd0faf8da8711eb0c9a67ff53f
BLAKE2b-256 ab44f57eb3030a795e7558b9d31345ece9b7a220c5bdddc37fcaf00ead5111ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 56ab134b8a5ef7a4d95c8cc0436ccab03ab20cab799e0886f4f1e728e205893e
MD5 f5bd70655222082efa9d7253995b6e4d
BLAKE2b-256 b6f0cd7d58dc604a395d33f5b73773caba6fdfca7e20ab54087094655c1a474b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-graalpy312-graalpy250_312_native-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 affef90b19eb63d054a1c16df70daee553dd735e9109e3ded5f390dda7e1eab4
MD5 48549beba8a522b7024d94b1356904e6
BLAKE2b-256 9d8851ff39be48d02e223942127189359397f87301c6c5f12efb9fda2d7ac8d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07b899cf57f2573019a064b66c25b20d3e6934273fb8b921f96d74f417032d87
MD5 d2dfe9a85e280d6295afdb9d35e49feb
BLAKE2b-256 b56d7ffeb80640ecafdc51a0de3096f450891d1c3baaf77543f49a1451a844a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a9d55a4dd7e6693cc1e15119b0719d446495513b06ed020bec8ff77a84288f0
MD5 9d8730f8c9df20a7bf2a388153a20059
BLAKE2b-256 dc1b1718da1d831ce7b00b6ea69fa7f19b52a1a700ac32f8b913a799ee0bdde7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc563b697d5eefc6a0a699203076687ec87db4ef8fd03330786343e309a6c009
MD5 edda314f7f728176ed06391695f6d5b8
BLAKE2b-256 dc50525619de9e4ec98f5738ee4a0aa6177bc297bea5e53288080e5c15f377d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 2cabef18c8353c1e28d4c3f8ba030e1892799d53bd83fa31f0ddb3e590e6aa7f
MD5 0695148944b5a3b03e9842361317ec1f
BLAKE2b-256 523b76ff969e59ce6491a9aba99b5b06a52b82684de637d0c22cdda9aba36292

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 5fe3e37e5c00a265deb33e233b94e468f38d9325f1c62e05de3ff768c4237702
MD5 1080fd869111a232050b7e1484289e2e
BLAKE2b-256 d462b4383d7481380a8428abeb969b91324cc2b6fa8c48f747c2d4d1f8cf5cf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 c16d66337724cf23e753e72d967646a1236127701cf6ec5b5ccf82af3d2932c9
MD5 1781b9ec16e42aa5bd8ef3f07e5d80ae
BLAKE2b-256 497d6c6e9d182b23d6301d1543b897eca975e796cb23536bf1d70bcc82656871

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c442f105adf731ae096cbf8830079739d3f6dec2b76809e3c7c0a6a42fe78fa3
MD5 d82465d2d81c8f300a486187e26f6a6f
BLAKE2b-256 27e904030c5f759344c63f1e796f3f756a90f02f56b73fe0008ef56dba058e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4a93db301eb87c1df0ff353f4c5a66571cb7473480cc9e32a4cdebc39f2c8b59
MD5 60589e255961ff7e212ec0690d563935
BLAKE2b-256 d9d76547d8efb8bf04063c9bd60dfd17e8afbadad56e7cb4e9663f862343abef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f48f64db93c91259d8c32839ba3be1b3fa11b4cc451791e0144fcebd7aaaaf2a
MD5 ecc275e109ce828d26300042eb44a30c
BLAKE2b-256 7673cb83c3393cdd4d9025bfe3b3ae06979a4c0d571c6720b57a40233d8ff1cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9af2b9b10d6623e472cd671b7fc060fbb8d336c9c3504ad7b2bf690ccbb429f1
MD5 7654218c970a3afa4f291847d211ce7e
BLAKE2b-256 e41ab7d75c8e2b35a3a57de1468204e8e313e896039bcc98e01a2f778731a2d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e221d1ea5ec85a96c0946c22c31866a83c53dbd1a9222775e2e04254bb836aa
MD5 49bd21933f28ae4b5036af4ac174b93f
BLAKE2b-256 b2a76bf95568247564cc08995277b1d993cb3920168044d61cbb9e3d681d34ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 953bffb74816c878d3df107e7bffb3b2de61069bec2bf7983712c5427739d340
MD5 30741eb60377ae2d9a5a71b3e5f0eacc
BLAKE2b-256 2e521b7c25d08b22e5d28e59119c455693152bb61a636ee8f6e9679e05eeae54

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4341e6acffd0f7d407e82fa76081ce4c886282934906f7bea64f646536e0d463
MD5 34d2f735585a6753152342694bae066d
BLAKE2b-256 5d8033d6a144e17464d244209dc8e04962420bc942ecc6e2db0e41f517c0d20a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bcad0042c4b7b4384af9758bc1b843e574cc28002fef5808b907b8a6681cfa65
MD5 e63c25bb5ae98ae1ae479886bff19669
BLAKE2b-256 2d2f53647ce0acde9f3aa053579e8ecfcd78c2db8c67cef6cff50363e1e30e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86ba859f8c9fb5eea9f3452beb692e88eaa19fcd72dcb1a4ab4bf61d1ef7a349
MD5 725b634b54c1331e347780417b9dcce5
BLAKE2b-256 a9184ca9c34ea79a5f8f32858c0ee44771e4c9cc640104eba69e1582ad888d1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1354501ba9cfde53fc2f64a685713fc0b457d940b911f7053eb5062733423eb6
MD5 ce9965ff21be1d074764aa005edfd73b
BLAKE2b-256 d17d3f11597cd9b28a02e5085fc68eb0c6363d3f52caa588643123c31d0c2112

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 495342265b1495c754c497a1bae03a4d081877443883a04c3163d5f34e5fdfa9
MD5 ffacd626dbb02e29c8c5e93917fb75d2
BLAKE2b-256 a9f0d1cb1537789715f399f529202eff4ed61a64af842943964d71f9661162fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6f7b3839b8a407c666fb37f8e4235f3274abaf3c561038613b9300ddd3152667
MD5 7e4171a2fdaa8a6991b7c380eaaa1fbf
BLAKE2b-256 6d4eaf6d84158955780b7c3874293ca5be3e105686e68db1f63a121291715c6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b262c895ed923b75ff2cb4f3137d7f4eeae3d8295ea6d86a66f6190e88a792c3
MD5 8d5c795f9615f148dd9d43c8f5c52bf1
BLAKE2b-256 8152bd810d07e8cd02457fc92c204a11363f295b313b4838bdbeb76aecf500fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9c099fb5a46aa9781a4f6115cfbf799da1e1309ba880237911a9ce4626c113a9
MD5 92a7f27423d7601b8cb89c7402e0b4ae
BLAKE2b-256 4ef2854a196948bde98e03919a711eeb34722fffcb1f5495f39ad03fff43fe04

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b5fa8181a65d3060ebf94712b34c6e68266c1119d245f959c3b1c2dc78800b6
MD5 ca18fa242a208d2a70f589720c6b3d1e
BLAKE2b-256 fb888a10e2c0f741404a8787cbcb3a95f02591d5237fa97ff6b3d8407716fd6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c38e2792b322a52444be509e81492ef839d1134227a0771366012a11256a026f
MD5 81bc072216d1b19f5fbdabe69ee7ef3c
BLAKE2b-256 c97e1274750be96bbddb5dfa1985de47dff8d5a5974207ca8e101b459bc9ea12

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 5cee6e02c4f9295da82b783fdbb70b78c6417e2c9c7f33073426bf3b3f9bb046
MD5 1002fd7d7c61e3b25b6d282c03d74a07
BLAKE2b-256 517ccc8b681c59996b4893fdecbc28f378afeb877d1404e11327fac627e771e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e0e4e03bf2f53eb00e357ba351c909cb5f70f6bc92aa741a079c9663082b1f8e
MD5 8fb6b7df6a91607315b5f226a33531f9
BLAKE2b-256 e2b09d639d32a688e25acf27853d9e87a17a3bfb93f70a6970dc269f0b360eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 b15607539c9697b60052672badbd08699b691f47273c4a88f2b2c698ef28ba48
MD5 eeeed5c9252d6d12daac2ccfb7e8694c
BLAKE2b-256 8a1e12e94b5941559d16070a119ceacdd33e97202f048f8d1d750e1ee8db7fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Algorithm Hash digest
SHA256 2b204025a20bc1d2a3e55a741ec83efbcef59d5666784a4a16568217818afa08
MD5 a35c30fa664e74551368a3b1f4e23497
BLAKE2b-256 9221d60db12cae912f10063ed24c3ce32012efd3f1e0ef747218cc4e1efed45a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa6ae5421223693063c04b32456bd64c9b5ef115f7c4c9e19fd8c4a145b1df54
MD5 8ad31c4faa172d7c7069cbb7becfa9ca
BLAKE2b-256 0fe40424e7da6cdbedd1cbc82b3b8adbec379d5c4c0a5a48bd65bffa384e83f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 475bf58602738085a515c1279263964ddb7c3d833dad4eda07e79f56f885b970
MD5 f11f0c78ac9f975461208ad99d80237c
BLAKE2b-256 8b2a062cd6954140e695ed3e04e856dbfe4e85047d52bede53adb0c9a908c757

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ac951a9627034fd56864614036e9866d21d94a3ce203dafb0997ebf8e8895987
MD5 df05d81c4dd4b41d762943754cf2add1
BLAKE2b-256 d2beb01ff7e9e05bd17380369b4f5ffa562ac12831b856416ce6233196d7b045

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 54610f8a2e506fa9c6ea5fc2b1082638ef9fd747b7aed70fe5b1cbc281e93f31
MD5 f406914fc3fd0b5b1f5ee6808dd9385a
BLAKE2b-256 a95df0cdf4312c4689075015d0e6e6d9fcc21a805c6d036e8d07166ed33d188e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7114d66fa58deb1c7bd1de3ee41b046bbf2db0ab972f87d9e627e3cbf0c1308
MD5 c4be3bdf742a2c89d08d4abd422c947a
BLAKE2b-256 bda835a79ff77f9d216064b8c959db7ecb5abdb411b4427cb7ca1eb9d8eead0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22bc76799e668c24a73f113a6621104fc1a41d85c007f755f57f5b3a43a8bb62
MD5 a905daef37edfdf784b28bc374a911cc
BLAKE2b-256 c237599c6c59395a64e8068b3c00586e882017b5f732a7d6c02104cad3c735cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 407d0e39e477c414a86050c4cc2831a628d1b8948c9e2bd73c49585d6e99cddc
MD5 1ac4c0109b02caeb26c30c5fac2c481b
BLAKE2b-256 ed464090deeca4004de6dfe08cbd87f55f4bf086762aa03ccf487c66b484441b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f1d54c84bfb67e063636fd653cb9a2ffb7e647de8da1004a351a27dff9de9669
MD5 622943b057d4ed82a5a3962fb452e414
BLAKE2b-256 1cf93f38a93627e6430583e3976be4344b48dc8242a50b917fd480b394e06008

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ac51bc651472066723721eb59508aa4f3b2611ecc0b4773ab60d2681a639cb2
MD5 727fb5fc50505d4320e81255e85bf73d
BLAKE2b-256 54ffd38c42cf1d34486cd85147c3178e04ddd01d4318b8e07316709f2d70800b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a3acc4dba6fc4b1f4f70ef5464bba460eda3058fd3a109c424ae44291dc50fe0
MD5 a79e6629a341e600cf046e1edb3d357f
BLAKE2b-256 a5d211ddb15c27d3511de94baba2855d66a7cc40e918db2c582dc8b36e0fd8bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 efdad32c578f66ca0845034d4f271b437eb171e97bed7bd273354f37ef4da8ae
MD5 f69c30e9e86209a35d3d367d912c9e52
BLAKE2b-256 3eab4fcce21d7be3c6cf18d2ea31bd2b602ed43469fbcdba0186548f05576daf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b5e8b65a881aaecbd25509df36629f1ab492f362424f2dad0c57e4127d1a1083
MD5 114677fd8746afa235586e92c6739fe4
BLAKE2b-256 84c2e147637f8f35572571a371c6e7631e9a3d0efcbed42ee61aba40e451613f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5398ba89021d4066890c3333e2e167a038fab8570580177b9cd0c3386eb47661
MD5 f07c92c046c10521dd595475e1067de0
BLAKE2b-256 c10e6496112e775198b79dc2a8e2cf3fc095844275af2ad4b2d76ec549ada5db

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6d2f619722866cc583f40a756f54528749a5bce6a7a80fda7a5dff868b992967
MD5 bd18309223356eda59f03610360fe294
BLAKE2b-256 31bf9f1c3bdc4645855f44c63e87a46909ceb209ec8ff9ef9863c94846cd58bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ee15fb91280eed4f63386350e06be33589a366004cc6467a1599c36f746d078
MD5 fc63fa87422a11b0259719af5b957b8a
BLAKE2b-256 e1646acc8a32f0ca5cbc581a1cf62352cd0e46f27ee090d10906fa51ba8b934f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f71e14e5bca3ffa97c728463ccad14ee939bbf9c4224ccd4b3c422ef8aa2791
MD5 b46ed4425a46ec311ea19a41c941fe07
BLAKE2b-256 793b5fdaf0d29f9ac2bb0945d4c88aaa64f1abac40e788f3f2c64f8c374db80d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 f43682b8f65b7571f90ac125feb87a1382a4d37f9dc41b2b759fc4b2a8ee20f2
MD5 f19872a341b255d7b73ee7ea8ffdff04
BLAKE2b-256 564f7a89b14701f53f9832b01012c3c5ff580118c89ae6a48ac68aa0444b41d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 c97fc349108401ca73a0b7e625fd06ed8d5ae94aa9e7285eb8c60497d448eb1a
MD5 08f7ba3ca4c09fcb27a5cf4de63c0555
BLAKE2b-256 535e41a0d46d01488d362bfc5ce94b57a3422e5a74543306cc06aad968f58285

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 fb8787ce65e0358af457353fdb261cb89382670ec87cf2c0dbddcded165388f6
MD5 514e5245244334e957f5b8a59d225e31
BLAKE2b-256 526fe80ae3fd446c9f3ad9933afc24e9a49fcfacdb1097ef4eecc5bf0b7786aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-android_24_x86_64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp315-cp315-android_24_x86_64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: Android API level 24+ x86-64, CPython 3.15
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 c9515e4babe412b06e0f9e46b806b7b2b9ce946da90e9ab0130758dcdaba74a5
MD5 1944b0e6503ae98ac7434aa1fc680601
BLAKE2b-256 d95ca6ef6ce5c3a8a3132931d0eec3cb2a711a75355611be786009867ba113f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-android_24_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp315-cp315-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 63593a631535b205f0e5fdad0121cd57366c00b7b00846dbe9de513051c03796
MD5 4032d8f3f82e78b13f303c2649fef6bc
BLAKE2b-256 98054e30f443ae181d91a112d22dad9e34e60028a52cd8afd9d41c1c237b419d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp315-cp315-android_24_arm64_v8a.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 55c026944fd593b4199fa299f7667aa79622d625e30f638f41f92f0c192c90d8
MD5 534e2e8bf68934f96c2661ae1114d943
BLAKE2b-256 9b95860bed3a0c7dede4a6a1734ab6f88998bef3e20a3d5ccf2c169073aaff9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8920c21c73dadf9e5bee1e13e250a1acf63f3dd6d609ab2ba5d4abbd86394be2
MD5 54bedcb9a3e89cbbcddf3d00680ddda5
BLAKE2b-256 81f6ce91b1e06c24bcb9ae24cdf0481bc0cb39e41c98d61631b09659501b6cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 60fdebd3eb6da7ef6b5e2b36105dc0711d1419f7c45caa0cd14244119315be65
MD5 a767a4bba607e91f277a68e8e2f8d074
BLAKE2b-256 516c80f952b5badf300b11469af73bcff7928017f27d6143ba4fa999708b96fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78b4fc6bb9bac999eb1ff141dc597aed3b0ddadf52f572211f0f17acfc2b844e
MD5 3224a85f0be2c4e91563a81986155833
BLAKE2b-256 5a2a707b28087bf5b196753897680c20a3ae7ab8f60226cc8a1ca2b63efbf9f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 471a2122c59d05accf9001f1d8dabca473faf1caf01081b5226506d823468e3b
MD5 e4311e5e7347f61b2fcc0faed275bf45
BLAKE2b-256 eb54aeac468983c72d71c4299b0eabbec9264685bc82d5f78c56b5336097c1f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a43ff13f62a6c0afa04464ed1932a8fb2dcf1cd24ac01c3b90e82d3cf22d4c3d
MD5 ca86c4bfd30dddf9fbad20b686af0746
BLAKE2b-256 302cdcd5f06fed249a41a785d83d8882759e0792258a40717808a7a38fe864bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d96feacc843a42644ba5644f8119c2f0696fc3e0164b8d85dc22a3b702fdc2f1
MD5 720eac83a40389ca05c51e2f80ad2533
BLAKE2b-256 60e088c48e6de56b33182fae9817d67a7f3276cc6a41afc6abfd884adb1fc803

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 310c51cbf02be5ee7fc70a40c3d8fb609ab9efc83d0371eebdb9158b9324c0a9
MD5 bc78728efa691fc24ab11be8c4723eee
BLAKE2b-256 b7605f9792b182848e7fe24acc81ff3d48f4729416361e79c1e4c30202183580

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbc07b879e9e8290a42556914234b5ae149c00c2e2c95ae1fbeedf96785c0f89
MD5 22472c22ce664a3f83f2960e4dbdb09a
BLAKE2b-256 8feb91bb0d5be29e60284d78d5769a80247e55480015fd8be67e4c9e7c0a2496

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 124d503e5ac068a0977dbfd3cbf906043bb377e223f6fda76695fe070a5e2acf
MD5 2778c6b7266054d9f91b6ecc985989f0
BLAKE2b-256 08c3ce6853d35227f16d7cee4c231e6dd79fc50725808dbdd18f74e5f5f239d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 513304b55d0f857066548492005c2edd332ca88bdfa36a53619fe09f4f582dc5
MD5 5b6cc7eea7c95c034c11eb7e6b4c9ae5
BLAKE2b-256 4705f544e0db4fffe64dd25de640152a64f341c4a9a915108d507bbc873c6c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4445a802761e2d6f0ca4741464fbbb08e21e3a7885845e930bca4c8faf48fde2
MD5 96bcf82c08509ce2701e90db2acc0aa4
BLAKE2b-256 ec6c4089a593bbf5c51b4d4750a0e2bdade5e3b1771f8e209d0e390f6892de79

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 73774102f1cd53989d33ae340601139d6015a4ef4f9e38fd8fe47f24ab59472a
MD5 c1fa75816cc3712d0f0264f3a0d6cb7f
BLAKE2b-256 cba24269e599e9a7ab4b8f91529aee41c62a5c0cbc2624014cbc8a313ad082f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 39046bb0cc10d7eb86805d4d2b0ea9a5d3b4fb03b9061a679e48b2c8651cd31a
MD5 fc728c874975d748af9cfc7d0a9a30e0
BLAKE2b-256 a478619630629a7e998c4a31b3111136420f15e715b72fda4fff71afa35da653

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3290769c98ea77b99d24017bccd72851079b15434478e6537034a8869f9b6fc4
MD5 87e76793ddda43b43429bda12758bc00
BLAKE2b-256 f332b7afbba0750a4792e59f81bcc0e9c105dd388c7977b6d3fbaab24641380a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67284df807563ca3f79cf3ee0acc76ffa873aad85a9e587441d18d0cdb1fc143
MD5 1b520a5ebee99ee99e3eb67649a4d466
BLAKE2b-256 0fadb881718ae097adedc2d03db5c7c30dce7da7f054f4e7bb7b7c3d1bf7e631

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 06eb2bdab339f0a59a1a6ad97c2be21d4dc4c2fa095182540bef56ccf1d149b1
MD5 07a542464a0ecb2705e666c7e8fa129b
BLAKE2b-256 d2904bc82997ff15aeaedbb2c8a5e1b3908f8eba7599bf49c37ba5af71627a78

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a00751c4b92c1f4b5785ef1729ae4ccebcffdba1ff4095a6c7285ab122e223e
MD5 3efc9494ca4cbaba274d24893f7f44ee
BLAKE2b-256 321870afb6fc2c2e1bb4cea8387d3e4a8467678e6acb0786c88ebe704839f86c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e9dccaddc24daee3c0aa0cfbaed95cdee594edf5638d941675628dc7bfbb22fc
MD5 ba7dc0a44056a0faaf896fc93cefcd8b
BLAKE2b-256 a369c1cc56e1fcbadcec54ce005e77e689a306299087320c4ddbc848af5d867b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e104176ad369e3d52cba2dd85832d19f9ad04393ccf738b260553e7a54a6fed6
MD5 67fb7c920557d19de4df5df6df535796
BLAKE2b-256 29d7d96b991a5fb945d6a6e54ae0bdda7502717a6d34640e4b00964682329f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 77dbca7da50340f2bddb1ab16ced523ae275f319d209362a7bdb7f306dd9cfdb
MD5 59a107ef7be03f80e3d721f8db108c90
BLAKE2b-256 b90a4cebdfd9970a7859e0287621954270ca3ac63807b95e9d4dec316de13c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ca16817ba162e53c56e19c428f7629fbf86e0c36d6c95c1ae9f2206767a81f47
MD5 6fc89f2f7f25a7e19f6d19e4ce1f19cd
BLAKE2b-256 dfdab4de0e377f0f9bb732c9b7814492a249e668c3910b9a51df86a11ff5c4a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 82160fc93048d66bf7872b3e3d482f833d6c586e56357c53d9a4c147871a677e
MD5 fd0d94f35649bd34a820b45e3e85a4da
BLAKE2b-256 1c9aa5a0c97212574ff5bd9a297e11536e6caad705f0e9a554bf6e78ce2cafef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb96c1c045996975892d55118f5fe323b1c7fb56ce1a5505f065e4c66e7f341c
MD5 e69e8d4e0c6405a12abb4630a29e6e3f
BLAKE2b-256 6a95777a75e55e540da1c0fa83ab4ae6d517e047ba72a299d89f850d5d57bc76

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ef341c82fc06696c1feb6923c900e6e00a9f049f86d6bbc275cd6c02f7091c2a
MD5 b64dfdd47e1379e17467e1a137def275
BLAKE2b-256 31eac710d5d1279c7c7e7ad4cf9d1d2f9106223e484a9b761a353cfcc5900a24

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 91aa1d5418de8aaca5a418f22657a3e4c1bc37f993aba8b010a46b39f6d37501
MD5 ba3ac083e1eb339999b6d861cc64e5ed
BLAKE2b-256 c4ca1ec30ab71826decd231f1231e276f6cf0f54cae709e11427be8102b1843f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 41c810a5ad4aaf862812575f477361e8a76a368764d3c265f53511fbbf8fa5ef
MD5 21685f12ec3fb9d70998f36bfeba6a84
BLAKE2b-256 5262cfceb242c029a3198d4fb8b804c41b08d51e661aa43891a05a5839fc8562

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02b998b2a3150780d596f9cf8ae90fc19e38c64971bddbe6e492de0c0c0d07e9
MD5 00044271fa45af5dc362931c9760fc32
BLAKE2b-256 f35769ed901908fd34d264a5941fcccc83fb0886a6a6fefee8d40a25a3b1d59b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3cd39edf34945dd02f256a778eda5c9ea52e865a45f218460a5d6d12b266607f
MD5 f0a87ef39e008d1f1a1daf7cc182529a
BLAKE2b-256 a7103855a7275d6bc04cb4ad31e5b44d91fc0f0ad2fcb6676ae56b313d4abbf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 495820b8908edd87bb69924f04106dad7cb349763aacf741f820d7d0e04bb4da
MD5 49103592816076a8e042b4b2397749ae
BLAKE2b-256 98b0e6a00e115cb9c0c7a32375e23d4dc4b94e733e756766978a9c6fc7aa9cbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 adc511931fda0114b05611b14474471b0a472ca9153fc347d30ed96fd628bbf7
MD5 6d93bdb9551d358d1a93993803eb11e9
BLAKE2b-256 1abbdfa99ca585e2e7275f0fec3c93a2907a2e1f0a0498af1d320c425701dc15

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a2fcead5cdff26b002e8336cdec6f6eea588d350b1ec1010801878c9381779f
MD5 a04a6c8a5cfa360d28b0fc00a5034a2b
BLAKE2b-256 55d9ad3a313fbaea9116cd33b1f1c454eb363012ce46933e1760ac072b1ee9f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c1ad023a357ae1210f6d5fff4cca7273c08cf4adbf60cc6df243c262d3ce6a1b
MD5 2cf647f88e51c67dcc25d4b9b00c5c52
BLAKE2b-256 31b9155d29cd9fae4fe3814cc072bfd4c2b45d1814f4c48c7b85e3850c9e7bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 69b66cc631ad37f07e44ca04ec44eadcc86d0ecb9533c151e01df44c0741f2fe
MD5 3486a7c8b4236edfed12825fd8e8575c
BLAKE2b-256 c3af834b2d3da35052307a7892b111e60d825b28ce7a5ebb400664a25f5795a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f0debc5d798cc976edec29e6b2b3b995144cabbcd1434a2b3a3132a3b7f72cd0
MD5 a1d1c5da80d76dcb7b196cae5f8cfd57
BLAKE2b-256 27cafa6b3dfba13123a4ba48e9c024275d46e6ab84f79836d25ea59cf4b264f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 945ec1b96f381c3646baf7a3a02dd9c5c2f1471f6433f3fe76f54dacdf865b4f
MD5 13ab02e2c7f9c831e6e860a137a28375
BLAKE2b-256 862ede7da52bbb6efe85b609bc45fe31973f4cdc5abb3e66a20aca0d158dafb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5f4ef8e1187013597c2ce1dd0f1eb03111d53b524ac4e31edbcbd44ca99c20ab
MD5 7438d60d5d79b49641f1e3bb88ce0ba2
BLAKE2b-256 82d45586b3bb8564d48bcad8db26ded6fa441adf352348f794a20d35b163782e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63572670b457b18404aa2bf1e4eccf15b11897cb84c1d8d37f245ac3c0398564
MD5 89e313f924b5b399e4715984131a1f3f
BLAKE2b-256 4a1c03d2ef7526bea146d10247fbb546ac5c204374825e00f333e050034da9a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 06c1d6011c7126da93a6ec1fdb587a9e672622721747287c49f0d9f8c74d8a2c
MD5 9a0307365bf6088a79d062ceda6bc50d
BLAKE2b-256 3677a8a518eff9772f074a73fbe21b5bed8d6c2a2be9190a9e1ffd33f4565ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 281bee1d220ef2bcd98da244645b64b63ab4529639adfae08493149b683dca7c
MD5 03ed11eee97fdb70bc02f95fec919ca0
BLAKE2b-256 3136004f2c793ea27b380ca288237438bc39efe3e009158de7dcd2ebaea193a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 8846f6f7fc91b31da17e65fa1388dc7564ab2a49705bafc7385685cb138d8c97
MD5 2c0c8657a2df0f2d89c68dbb04191055
BLAKE2b-256 6f98d595fd2d231b6ad000c23f2d5b2d8927378b783cdc727b94906fd36fe7ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 76e518792bab77567bbec2ffa79a832b4d6d6f3e381eebe5438f4edaedfe60e8
MD5 3e67550261b6ee0c67f8e8cc699b6da4
BLAKE2b-256 a130ac4bc97e28ba17c4bdc6ca7205a165aaa85d78d5b31370038217515e7364

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-android_24_x86_64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: Android API level 24+ x86-64, CPython 3.14
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 1cd2a1f525f6de2f12f2f082f3cb3cef42c1e312391a5c775aef29e250fbe025
MD5 6826d5a5121c78eb6fb6448a2e29419b
BLAKE2b-256 bd9fa7842537ae06bb81e4ef56c86c761f1679d2db23bbbdae58de26bc794ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-android_24_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 db84ea3b737a6739a85e83369d1580735429ce77aeaa170098cae68c53808823
MD5 761fd3fc62196e43941a5f74b12d34f3
BLAKE2b-256 ab41588e92b0ebee8068499619795948a010d8f95eccb5a09f9f2f9917b8aae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 33.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 efde4e9568509643cf149e4d9ff8dd33aaf0e933d4e75f50549072807bd2d2c6
MD5 09fd1322d684989bd1c423fd568003e6
BLAKE2b-256 008e2b85ae94a5b112512552e6bac3c81dca62bd09344bed7eed39918152bb3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c5f7268147219bad4ffa56a06a0416d30b9a4c16dd1f2fc847bcee0a82babdb7
MD5 9eaa418ea67649bb365b61b0e61059ff
BLAKE2b-256 2c3934472a4ee5bba5abba4f5cbe6b4e6e9636a408b9e1d1dfbb856e057b193a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 34.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 54c09a575b8b7c9c77ece653c6267dbef7829144358403ec2aa06cfc16d2a737
MD5 467518652327f5852d2deb85340e8ae4
BLAKE2b-256 390f6ff9aa9f7ec323a690fa94737be54bdcf3b28ad445d9419394a5bfc60aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 340d30e1030d0cfd239a96b45ce3368dac061517a4c56283e3d0ac4b5da43a10
MD5 f7b0520b2c92b080e5e3852d0e87934a
BLAKE2b-256 8d23f30b4d31469b1ee79316b7970e1e2b87185af16924d62ff2a77f085c0246

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e54e35ff1095737599338b264d092e60c770b9c319badc47d3c61f4e037ec9b9
MD5 b1958002ab7445dcef0b8a520c75ee0f
BLAKE2b-256 47c8cc99d61a81d0b3d38fdbb7c7c702a3a0577f48527b768885c0a26af06722

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 07958037004350048b62ac5d088c08f83f4291c36ebe7e302f6497773903dcee
MD5 087533128c96f27ee8e55c16d324a5d2
BLAKE2b-256 3a27a0b66e349a0f8a855ff62b16ef0244c231a50f7d001fb91f0fb1616b851c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1f9c48c63f707de4c9e76da46418838a8ab07ebd3608188389008fba264e433d
MD5 8f367a86a39d462629a11e94497c52ae
BLAKE2b-256 242fe4f1384a85479805f2dab9501b461ad6011e58aee9f74ec6a1919c228fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e9e68e32f9d7d6dacf3b7a9b7f777cbe2e2db975606e6e2af098c73ad89f09c3
MD5 63873492429f38c036fd270f45084d9a
BLAKE2b-256 b3720e3d8e0a6153d22abcca15cc13e1a9a488b855e255839713347e69deca83

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 edb635eb0904a04b27585a02e9030692dd0a642cdcf3f46834f598281fad246d
MD5 0a05d40f24f0f026450a698a991b17e2
BLAKE2b-256 eb34771af917dbb390619083afa56c975b6e25b3256c3f8f8b93e688ceb6a42a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ccbfe39040e2b4643e7e2cdef623fd45d187e430f0e6631d41101d2454cfb3e4
MD5 a8ed7f8176a1aaf77745184bbc6f6e94
BLAKE2b-256 86451f37db24c05e316767f4cb5eb00c4ad6c5d06718a71faf5d34aac0afad01

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57ebd48125d8a469bdb167a53199213a068088a28a4e5c05bf57c15cc6eb8c7b
MD5 4fb9b1d090e630eb2f4dec7b3c12d491
BLAKE2b-256 f87087e0c9d65bc47a285e97024de83e237fa2309cb556a28972738dbbc9fc2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b72e2a2f65dbda433f09e1de5a116366b3305d5f4a968f44e4ac1023dd053744
MD5 06aebbfd39a789345722735a5a762e58
BLAKE2b-256 48caf8350df6ff74963e6f7dd88edf200b17ee33dc6eba1a892f70e7f1378e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ae29aa4ca0d8be4c13154bea4a82f77ed62062d400ead38b599b2d7bbf5b727
MD5 a5f3ee23685a5cb42c99d7abb2d3b94e
BLAKE2b-256 4e332e50c9a828240d76a956d2b4426f8f1e5264a60a06b84c9150b718ec8633

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 45b905eb4116ae7ad280ba9f5b702fe77569403d53b90762b3d0509ddec3b9cd
MD5 8856924245170bf9db7fcbcf93280e59
BLAKE2b-256 b0e6d0ff14bfda7b5e660aad7e6e342dbc3af6cc1e9e645ce26a46fe6f2f1efd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f0170f95d0c15c7d60cbac9b0d10dfefc01f0ecd61ce3609936495bf988189fb
MD5 86ad65f40fbf6833c7c06a82e6cad201
BLAKE2b-256 76c7ad5c80fa54796328f2517899b4cfa3a94784abcd6057fb9cbedb829910fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 73274fe4597094bb5c19f9812b044d97d6ded8fefb04599bd2710dc5963fbb2f
MD5 8a221091e58cf23d4f898934effcf66f
BLAKE2b-256 63baf0d8766eec1928a03ad9ff9c6a1447c73628f0b998968f92ea947ed6af92

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ed50ea632e80951cedd89714505a8f85d199f2014faba4bbbc81baccc1c2081
MD5 6e902213ba73003c95f5f969b19fe42a
BLAKE2b-256 24d8b2391845e679b0bcfa915643d89492dc80b814d526a35de03d4685fd6f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 070fde1355b8ba1da1ab78fe78297abb919a61aea5adbf2b8ee2a2a592ce007b
MD5 7b94625bfb3a4bdca9a11f91f7e4831d
BLAKE2b-256 0f336a0d39f99177f34a85f215293fbc064a7de3c2f65eb29c3300119fd7291e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6838e142ac44cb0838c395db285d040784404dd33f6b7d92b2338f2d849f8b97
MD5 bd92c8153ab3e6a6605a416a761375ed
BLAKE2b-256 c4a3c65f35ea36754998e4359cd4be71b3685c8847e1ff3c7217ef5d624e237c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0ed59c8f1eabb250cb293590dd59af835e4b6c5a2c749923ae1292c3743ec82a
MD5 60793d329f0418506e2981ea837c327c
BLAKE2b-256 57d20585560cd638f267c8a6e219b1acb428e8a7e1d9170d47df2e8b8af4ecbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 51288138c05f55fd1cb9c98c33e01eb573744e768ac342e3e938d03b0e0b9683
MD5 a154d74eef2d9182391772ce3e6d0ef4
BLAKE2b-256 f3f2871dfea505b2ed142c536046fd06b42478b50ac45bb793d3ad151dfdc9cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 af6ba29275dde4eba5fc223a7635edb88fbaf658289e1f89007e05c74204bc06
MD5 d6650da952b47c396b68a16b9675a1ab
BLAKE2b-256 a8069cc19701019915c83767f78be0a16aa3ce0be01372f964c6545941bcf298

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 cdf3a9494a0418d37cb1d7b490620b331b09167e5923fcde9d0bc759a87e33dc
MD5 c58fa590a676b8ae44a6f53815e56987
BLAKE2b-256 3efe3456e5d85a89d6421d009ca97fb77a9f5cefc5c8d465232be51aa39ac591

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-android_24_x86_64.whl.

File metadata

  • Download URL: xxhash-4.0.0-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 40.3 kB
  • Tags: Android API level 24+ x86-64, CPython 3.13
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 abeae2d9e797f7bdd627df6785d4839517d1f67a0f91deb4da27ab3417e5c56c
MD5 fe26365cc8b63aa57c345210ef8ddafb
BLAKE2b-256 aafae71472c0af1c6cd710f50fdda7cd0fe2931977c40845dcf3d45ef93fd633

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-android_24_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 3ad3124acd9ae0c8d069cd1879e453ded1d5b72024b1f7a90cf8fb1d30f9681a
MD5 e91f03f051648dc6cbec7fdd33a1dc1c
BLAKE2b-256 af341a6f7f86d94084ded050f6f7b3dadb6103d8cce0bc2022f7f45f003d4b97

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp313-cp313-android_24_arm64_v8a.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 33.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 63f3cac239fcdcdcbc56cbaf5b5164f056e8a2b1e06d61436c134628743eabfa
MD5 e2486f1225faf455c639fa228358d90b
BLAKE2b-256 f1c842de8febea42413de52b2d1ac5bf0081aba71c37705a3565c0c021f46bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f8515f2e70a98382adf2c1b1e413f3bfa46a3cb1b35752928265577f958f1da
MD5 5743a1697414fbd4387f80e93cfdc0be
BLAKE2b-256 ffbbedec8f095a24a331293fbdacbed9addc4f5a6f2e2f88c3ed539d7cbdb438

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 453c9bff5e2c6a2b938704e41965c65d1339a2e07817e1cacaf239c330af4d5e
MD5 d00f4db5005420258b06f7fe25d4449c
BLAKE2b-256 ddcb8e261dc126968573b999908fdc091705e850337af24a3492f44b3d48de58

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 89bc01208487b7f4b0b636b4e8b809ec3c41644fc38487394d9faf9570d4795b
MD5 741498de533e04b270ed7ce350ca2461
BLAKE2b-256 f78065141cc3d3e6b0cd52b4c7d9af32a6fbc3ea223995cfabf406b2f589e0c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc49915f326b888773979381140eb1a5e804fbc872670f6a2d36d8d421225a2a
MD5 f8dd4a0e9a5f3580a0edbe677c601cd3
BLAKE2b-256 b01356da2f5d5f2eb28b64aca54240e555221a8e2292644b60a73f46dfaaacb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 963e5b1f0152193703997eabcdb7320c0d2e3f934a00be03a25dac4fb4af66dd
MD5 9b4c424822f95bbc551f4021164cc759
BLAKE2b-256 3c8429f5bbbcc14a56ccfa4fe0e025ce2fa55ee4b40485a268c828c47ce52405

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7e07cba198b78fef4ea81b219058ee3e9ed8d612b055e0388b205a3f20e1b70e
MD5 fce62b8e7669fd2358faef69a98ae767
BLAKE2b-256 849578d8a7228a9caa65e7adcfe0a72c160b2e739930f90ae0b4267386d8510e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14b91efc9fc7072ee22b4ce0c778d41e53dd2d45ca5b16fdfe8cf33ebad3c386
MD5 883378cdb54344df4e96c3609e105ed9
BLAKE2b-256 1e01b35974b9890d5d1d83c325220f9e98482c54109a4e98e3596b9464de4813

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a9656d42c8e87013655a8a668a870222235ae26cbaae69c922b12c66b672f38
MD5 6278ca219065517b6fe67cabf55feccd
BLAKE2b-256 a0c0b081f9ae955d452be3b8f3c17ef8d5d4484606ea871c45f73046d9eaf438

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d6fe512a9c84e5031d1b97c7b931c7694ba7f10f44bf4466c219f468f0ed749
MD5 3b31e1f2946455c8747d3e7488e9376f
BLAKE2b-256 f01f82830fa11afb369ae8ab0692d316e68be6128d12756e22d23d0f7a5b34aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b939f78096460a1e3905cd92815d01fde6fb2c54a544daf8ea03a1fded41d74b
MD5 ff87d84103f5d415fb545482cc04f419
BLAKE2b-256 c88bb31e1be5d3f892eb8fa306d1bfbe7c1c5c4d6011e045351434278c2526d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9335b632cdec5498068372b75ab18a6c1905eb51ba76c727db46080b66ef7d4f
MD5 3c7cd8f24fcd6821e84fc1a658cd5e63
BLAKE2b-256 72dc170ee0593a11c472e32b745b6a300f2eaf531347d1053bbc411f24d3071e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3c72ee49f74745e554226018e56dd93d4ff924dfa870d119a59828d29080853
MD5 33a15db9a92d84412944adb9fe4d177d
BLAKE2b-256 22bb4148016c68211d8cc348eabe06e40686c71c4f7b336261f4b4e72d2d46ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 76989952a47452f66ac213779b62961b8e489c98f45c4ea7d7dea9115a00d06f
MD5 17579f77419ec952d5d798719ac26f2f
BLAKE2b-256 d10ca777dbcd2f10517a0f49cd276b9c6a2d1f30cc0bde0f67da65b56849a646

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f9a33820c448e9fa3a720396d90ae3eff7dfa942d86af855965a095f954d0ac7
MD5 489f6d0d98d7286799590f838ed513f3
BLAKE2b-256 5b90c4067783a921aa055372bf2f66fccec0bb4fd06edd6ab3b752b973492d05

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7f9a849a801557a3a2dc9226dfd11b6911c766cb3f16d36822488204788de65b
MD5 3e6373abc0ac1f67464889d8d4f2f27e
BLAKE2b-256 07a35ffcecc8fb1480f147a5396ae52b27a9b519092d0ba31a4c614a5a0ecc57

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7264a1a8bc4cda273347b6fead2a15c1fc070736160fe927867279a9d991604a
MD5 e4b5ea2b7ffa384e8acf1289f67b2da0
BLAKE2b-256 f4aa7c1cbcf64d8c5e9ea23808356af91a158e891e08d8f206884ceaf0425d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e4c6eca223bcd94a9a5d291512114364facc5c4738c0d468ced386e88fa9071b
MD5 04fdc0225709d53a542b83c42e9af821
BLAKE2b-256 e9b48e935dc765a3018ada3da2455eed2e878c6cb686a9c01b3db1619a7c79b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3a42fa24a47961e38ace7e4675680eb3cbd024588eb0dbc9dfbd009f4dce6bd
MD5 c0f0be6dc37e731e32e90144dab5662a
BLAKE2b-256 877ba03aca88de3fae90f619ef6acd72b90e4b06e840a66ed4574558c29a080b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8d58ab471ab4442ac29ce225edf496f40d136dba552b0a718c796d14b71550b0
MD5 092dfba863c4a8e47ccdb960e730f28a
BLAKE2b-256 19d9493e761ee66047de5d15b7b5137972bf26d889eb58e49b1f18e2f35cea6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 33.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 460146a030d3dfcd6cd08a0bb45c2fe10f04026f80ac16ae42a846e8d850f0ce
MD5 d4b367b80137070535a0b5f861aa9b7f
BLAKE2b-256 6c5ed0ccb316354dbf7d5868896e5d87bceb6f50710d6b386159294a4da4679e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 50cf753d4d93797c2d32a72c305ab7017af4bae9bb6c999222fb29d9ea9961f7
MD5 15e03591056c5a0a4b11b0895e374e4d
BLAKE2b-256 02cc3702bf613a42923627bbad08b434237cef9b525b00341207496548cb10af

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6ec7a1b252ba32719605ecc2f9bd4230fdb3b5f0bb424c671961d21dd0acf7db
MD5 5b298bf7509a515cdf7d19cf32194683
BLAKE2b-256 eeae6f0f310ea658e83df21f171fed313f6be01fe918a2eec76c4ea549b79233

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84e0b626285289e40be24eefd51ab9fef9bc6373f4025c3271b3b0e3a2ac78f3
MD5 773651ef265aa2b6eaf9b856409fbaf9
BLAKE2b-256 81c9f9041891290b403d07de8cdc66da95289e6b407bc83d16be62a6acaad5f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0a9d3fc725df9b0029094dbbe700a5d4633881f2afb87392ce5860388c22bebd
MD5 2d8a07f448f259b239c229896b953770
BLAKE2b-256 30c7329ba182d0fdc65fce8057fa9bc0d8979e7bd31cd4cfbc4fd991d1db2db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3de54ba80c88096fbcca29e3b255989b3bca02e47a976bf9303de2f36261c57f
MD5 332bff6ff583c76e59e5e2d54ba22d4f
BLAKE2b-256 131c62dd9957ed770b2ef5f8fc0527442975afd4055921ba009fef54d54f0b79

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2987f0908d5e3908bc1949a0ca4f465583ba55befad5899581edfb6b59441f56
MD5 ff27d8372f5bf89085bd851d571d9f36
BLAKE2b-256 d7a08d7a0addb64e32762af3f5e7838e1808a6997a516a2493648d651ba795c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4395c0a03a1336915c677fc71e1693afb1317751ea80c130b23d6292d14f75fe
MD5 560600b4a6a667891e3dd5a9d333beb7
BLAKE2b-256 7ac55215550ec7690a9dbc406a6e29cb77a130bdb1942fb639d6fbf2005f11e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 681892a96f5727e4a082af13fb75c1cbf1ef66f2d56cadeddf31db6bbaa09945
MD5 f3ba3ead922e11229aa5279f3b150803
BLAKE2b-256 a718ded75ea5a74b8538d75e825558dbc0304726509890980edf0dd9884f3a02

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1d56a5c9fb9c6c6a6eaf0adbe398c57ab6e89348a83cb99d230a52668cea557
MD5 6643a591323c31693495ce6424a2b004
BLAKE2b-256 3e177628c83969d68287fb174aa3b993c5147c578ae60856f72ffad488cd1684

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 23ec6388d554e523bc06bf40dbf2dd09b74af246a6f2a6a17223a16fc575f676
MD5 9f6fdfcdbcbc6f0a9127b19d32b86ad3
BLAKE2b-256 240705186cfaa8410f5f6d14a691db021d930a84bc2205e45d6bed61078b8af5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 baa9828055ebaa00b95523aabef7504c3d1685bfab48b7c2ed15d0ba56269708
MD5 24d82ec1a25439ea51f038b3582daa29
BLAKE2b-256 61d71a3e8044c94053e8230ae746218741dcad2e67ceb4ce3d55bc85f923f406

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 97730a254c3d11e43dffa815a9837a622d7f2a30a9d897bd29184d5589b7dc25
MD5 b61f771e9813821641d4f74721cc3450
BLAKE2b-256 782ac5e4987c4fa758bcaaa6fe320ecde667380e93ae206f36daa37c4545cc8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f2bc28050a61684f1c825ca72be56eefe1421112d1ccceb4eb99d86b52aa4c56
MD5 426c873817bfd685c078a69c1ced1b7f
BLAKE2b-256 171d417266187a86a340f4b8ec55d16844cbc53c20fd0503e7fb5b7a07aabd55

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 492f267d1dedeef7c44310e60a08f38f34db75ed373062fafe68aa09801e4281
MD5 ec46a76206c8231150b3b2b4ad05b764
BLAKE2b-256 747c4ff4ad2f16169070461460bdb99568eebd167932d8145f793d1cdba8077c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7e38e909ed1d5a86511bf2fc57891d0fea5ef64063cf7995bf954cef2365b2b
MD5 531c4b37f9bd85a42469284c91668aa4
BLAKE2b-256 a2ecf472a6bc86208de130b2317af1aefe08d5139bd06696e7e920cf47d8b6bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 601b3c3b09b44ed2ada35674bcb19c435ba9203862a4832731384269391bfed9
MD5 1f230cb89e3299a9bb4d65467b0443a3
BLAKE2b-256 d887f0703078a7cae7caf210d77ad6a2d91509434c1c1496233bb304e1202933

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b783b3b8a7c6cb79be6be6c32cc0f9c2dc3bbf4beb013bece39b4f8fcb2b4de
MD5 3fd7d9cea7ff4ccdeb751f89777c5867
BLAKE2b-256 2327a1370dc53ae4c10efe0eef02dfc57a613b4e104073a335fa88c3983e8b12

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b7ce6de9166b8a8c1c29d5eab91b508f4c31ae3ff8626a3ed65bd2cbbe64a40
MD5 2404e0c17faa8e7289d5c455fa2d05a7
BLAKE2b-256 409f3736468bf0680ede8d93a488eba7dac58ca2ff25d6bff168810f7528c300

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 33.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c32bfed9e5f139df55fa5e8c1e568712ac13628d6373cd1cfd9657dbd0fc1fd3
MD5 31bb9382038ee598fb7c083625654be6
BLAKE2b-256 2a85e915df396b2f17ce2dd9708e053773970dcdc4a31f29ec95a6a7908c867d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5ac7166fcc0b76989bc313658339ea54a6cc9c96f01b04b3f96373f63709fa39
MD5 592c628273bce2c78dca225438d49d08
BLAKE2b-256 3d20be9a63dde10cc1d9c053a3c02da81da99828cdf2a73a1cb7cdd9f3cf561e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 083551d29935553b203454995a1e07e9bd6d2ebaccb6eaa25f69c6fd112ce779
MD5 90ab925ea3e0c04e3d8593fcb4f750c9
BLAKE2b-256 293ccbc896acc48429b4941d9b4ba2db62b2b49ddeacacd89c0baccc0155f52d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 980bedbeb1ed99f1febca84900aa201c7978fd43894bfa2feff9def46f3e8b10
MD5 ee1d0a82774995086289444b90f3b27d
BLAKE2b-256 6ea0403613a07590bfe733a18f3c352e52982b6b7811b6e771df2b5bfbf80c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6a9dd076149afe335505b880d8c9ebf578cc770d296379d9f58688f70c73a620
MD5 881d731fa5a12370d69ede55e85338a2
BLAKE2b-256 2ef8cc5c757db7ecfed7415614d5f44f15a0a2d2bb0e1fdfb18e23519d724c33

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 422feffe2bdaebc2f173dcc94ea3a6ba7710163c3c00b9bc9bd47d77a9c61d83
MD5 53bb8f829f493d855bd338ab5fa3da5a
BLAKE2b-256 d385484493315182da4c26a645e749f84d42474c0082cefb08d97c89debf7706

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5036cdbc161cf5a2751f7caa54f94c1d9f405436a08c4221dec12491a17a3235
MD5 12bd812c70f6a8e5b80333a6cec0081f
BLAKE2b-256 729daa944d7fe4eb3ee6bf697c32e092744deccd5f4721f928fb0f703c9edaf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cffda52b73a9369ef9d521416f5b995a21b09f222701f6c9ce700ba84931d9c
MD5 cbce4bd20a114fd1cf1fc21ed00be850
BLAKE2b-256 3e2e2360a635a249aff94514b8a8cacf021085d3da9820032f806c75414716e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec072557f5f4c5eeb6ae724820867e20759b979e7e11a714508dd70cd3641166
MD5 23ed8ec3967810e41c9577f2af996644
BLAKE2b-256 da7a11d1a989982d265ce3b4b288f2a1269c0508f2ab705f83a16e5f2df940fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86d8c11b5fcbd97e2d6a8705ad8772e3e2e4c6eae592ee167928d2feaa930040
MD5 1a5c64a0257414fc178d6eee08cc132d
BLAKE2b-256 13d01a7207a5c8ad2bf5a328bc547de80782e340c4264da78095133f11ef4ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 013feb67c7b83cf6fd55d013d4217edb68d7d3b86ef9d53f80d9aac7f440e4a9
MD5 ceab09ebcb822a06723ae0d3d22bd13a
BLAKE2b-256 98e96a0d9cdd601e0b99f866b4356d427ca2a130070ec3464cf6ed711baee9bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e6e3ef0a8df99291019000b594d7cd21d1b638e4fc4234c9b7f43eb7838c8c3
MD5 7217dc6098d759c396dbae88fc294a82
BLAKE2b-256 172aa6fd74537c72d3fac51f4581b3113a4e881670bf101ecacd32d549a0f308

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0000c53562673f5b7b2e9ac744efde362781b5914975c0828327f42a2c1269a8
MD5 e94048bda8a9439e978a0956ed7dbda4
BLAKE2b-256 415f2d7358865c1fd06903aceeb9612e03413ed32682ba6a96efa2b3216bea4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8ab3090bdf3a2cfc58041a491012e8eb63f9e41ac02e8dff6f0094853f93dfa2
MD5 7478550dfb1736f3b653b2e93d032fa4
BLAKE2b-256 cda937f1bad31a1b0a2d22795c9fffbcfa7560234ce390e3ff58d4309c446411

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2ea6a85f49c2959121440372967042b9808f8ffa43c90f47b38dc2ba3aee7a95
MD5 7392e3abd5e183b43604a0ec6f39a0fa
BLAKE2b-256 3dad02e596eccdf4facbdb380256ca522ab081e2b49aaa718d71a4ef66a6709e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f80c50793ee34b72292ee695a935182bcb097846316957bd26daccdf1164d423
MD5 5a28ba53ac19fe7180c8690f50979df6
BLAKE2b-256 5ec4065890de07233ec559481cc1cb28dc2dc0645748bc8d5a7fe98668987ba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f3a9c5bebf0c40ec933992b6a578530b44e2cdcdd1fbb9c4004be752b496db49
MD5 4d559fc70197e9a715600e593a0e3870
BLAKE2b-256 0f1dfbb54a21c59aa281c674a84ec8ecc3dbbf8381f3eb884c087217b3f28db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b403b36648e4593689ba4401796c7834d6a908dd9cd3567c8d85e486346c9446
MD5 35839f9394fe266132f49fd6629d3f08
BLAKE2b-256 a3e3e19896b868bf3f0047ed66de387a102f9dcfdd5429d2a61c4f67cd9eed20

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 753cebce949f8e8c54e5fcfaee8d0c3b16c7015b63fd2c7e583143d9a268c78a
MD5 82e781b1d81db930228f0684438be200
BLAKE2b-256 63a735ba744acf16381b269d2b367dbdc59ef48fa2521e52f05bd436b7466711

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 33.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e9ab9f42d9acd3eea599d3d536dba0d960dfac9e593eb14cd1a3441c418b4e65
MD5 47150c5cf788b93d4107a9b4b8307f30
BLAKE2b-256 1bbfe94451c20de6b2996dad5ce93c8e20a2617061f6aaead03e345b60ae2916

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 418c882d5dc29f21057e37bfa8daf6eb5f113d47d87f163a914f61e926fa0670
MD5 c21d07e443e33e80dc74008aed0a471d
BLAKE2b-256 21fabce9b9ff1e0fce97a40e14d861862ec351607ddbd8e55f093658dd57a252

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 85920eb70ef89df9543060bdbfb613ee2f3abe1d75e0987656e15e394e5566e5
MD5 ebfbf88d675ea3b312a22476da11510a
BLAKE2b-256 5a824f15996976cd8435dc118890db2fd3bae66c3332770660c04e9ae89a5127

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8f18a70f35059e73d153d43b0959521242de6103a69bf4f5c2c3e6cadd31717
MD5 f6a8de00a8c53e882b4c57633ee41115
BLAKE2b-256 9375e5e70641e2f566186d3c5315740a208b8fb553637298b9f467c20ba121d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 465.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dac8091c9085cbce22f799f79842592ab2f8ecd96be3175acf97d5026658a8c5
MD5 170cf58b5c5b064038b6abe5f83092d7
BLAKE2b-256 e910bffd88655a49a215e1c3a81d720b50d98c43e39b68ecc8b65975b8376ace

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f966009d410e84f31a6b28b295afddd6b3a448da17ae487146d249b9cec50b4e
MD5 87fd9edd984608ecde41d8be0952544e
BLAKE2b-256 8751b738518b93b81544eface2bfa34caec7ae936a620cfcaa9eab327bcc4a2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f62d15551aa820ce816d1c5abd0d82f066a9010d986e39b8e0b529cd96f401e0
MD5 1415d624bd4fdc5e152e15142ce41153
BLAKE2b-256 3461a9908966ce43ba6ba468f5be3ae81b4ed6319b4df224f07b2b9699b44b4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxhash-4.0.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 247.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d73ca975fd7208f441d804c9e9e15c8f181c9409a1ce335741adf97b6e22c660
MD5 f65fbc5d234f330c5d61a3d93998fb54
BLAKE2b-256 58c278cc6ac32a9785fc62c65c7c01b614bc078bd7c52aa187cb306786d7dca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8dc03bc5a89bc5de0e5805bd2f6607343fe814a33815022ae9ba66986a96de6
MD5 aa3fb4590d85bb89e3d9c1a0ccc6da08
BLAKE2b-256 5206f4e02f7f1ef78cf41e5d87342a2f9852b292cc16cd98f8ed7678be3da1df

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f334902e62e27349ec579c0a903a48925fef81c2bee912193cb6d0ac2516273d
MD5 5ad5bfab5ea4626ff68582431e56da5b
BLAKE2b-256 d7581f1dce505a772deb6dc0f758af418e90982fa73b5a3839bb39e117706cfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 824acc3c1591c6b539a188f34c82faaed3e151fbc99e873ca2ef6a402ffaf60b
MD5 4af3dc21355a3ed312cf60d1346a60fc
BLAKE2b-256 81985f0abc5fcbcd2abd31de7c7dcb88f886f3d2654b9e9adfa95d06d00e027e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b310ef673d691f7d0abc00ce30a7b5eacbc827a753199ce250880d377a5659d
MD5 d69384b2f426a1ff366040392b13c35c
BLAKE2b-256 3041bc6054bbcbd712c1081b9b4dd9ffc9e63388a37c3b67fd955a0dc8dc8be8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 db7847a4977772964f64c68b05f9b1bc6eccfca9f7e3c8030f0a10cb225cab64
MD5 7040a0bf42b623cd27e4439c6408c563
BLAKE2b-256 8b9bb377bfe1e5d0537e00afda17c2245776ce56d48919b5d04656495fda8885

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a67eea4f3a2878542b86f7073439273dab95751be1897516cb5eb4cb82ef045d
MD5 961e164ba314de74c60db7063ac4422c
BLAKE2b-256 8e6abacc6d68c6224ef95a721b46c5d4c15380b716091a9428a251116c996aa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 61036f1283778c9969607d7556d2b00b499ae89181cb29a3b6af6e072cf84a4e
MD5 b5d5b9d0110a7f3b5c0caad47475785e
BLAKE2b-256 bafc24b2eea4357f8d9f13e1bf30401f5445c291e57f0b62c854f279e45065bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e489162a730bac0eafddd310dac5ea10c94ea902dac3e6240e3d9c008ca15815
MD5 d8de6b970ccdf603842a1b9f54455abc
BLAKE2b-256 cbd5752ea23e7023b32e3daff0bd13dc24d731187a66f201014999f6ba45aca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxhash-4.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8c06e5e5731a653f54b3f892096aa26901aae38569925805774204fd977ecffb
MD5 a973aac212436a60d6c71a0d06a60b24
BLAKE2b-256 bc13f634219cd30ef1809f169a8998332bb69879165069f5ee6a7f33269fa90a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26457f769be3b027607e2ab4aa7fe267e6d769fea869bf2f1fdf21239af920bb
MD5 d1525210e1f73e31b87ea1e5d3595e53
BLAKE2b-256 7ba34ed5d1f6eab3778dbdad8aa75c33e309628fade12788752cb5aa4877bd37

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxhash-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 575326c9e278a9d68debb44a0cc6fb619729d4c8c57b18080b1550260c253969
MD5 1425d95fd783d56a09150aa5fd458983
BLAKE2b-256 0ed2efa61acde0ed4944583c185de72ddad8767d2ff3206ebece89104575338e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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