Skip to main content

Python binding for xxHash

Project description

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
'3.8.0'
>>> xxhash.XXHASH_VERSION
'0.8.2'

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

Caveats

SEED OVERFLOW

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

ENDIANNESS

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

DONT USE XXHASH IN HMAC

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

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

CHANGELOG

v3.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

Project details


Download files

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

Source Distribution

xxhash-3.8.1.tar.gz (86.2 kB view details)

Uploaded Source

Built Distributions

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

xxhash-3.8.1-pp311-pypy311_pp73-win_amd64.whl (32.9 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.4 kB view details)

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

xxhash-3.8.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (38.2 kB view details)

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

xxhash-3.8.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (43.2 kB view details)

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

xxhash-3.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (29.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxhash-3.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (32.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxhash-3.8.1-cp314-cp314t-win_arm64.whl (30.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxhash-3.8.1-cp314-cp314t-win_amd64.whl (34.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxhash-3.8.1-cp314-cp314t-win32.whl (33.1 kB view details)

Uploaded CPython 3.14tWindows x86

xxhash-3.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl (223.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp314-cp314t-musllinux_1_2_s390x.whl (448.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxhash-3.8.1-cp314-cp314t-musllinux_1_2_riscv64.whl (310.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (250.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp314-cp314t-musllinux_1_2_i686.whl (231.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxhash-3.8.1-cp314-cp314t-musllinux_1_2_armv7l.whl (275.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl (246.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (319.8 kB view details)

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

xxhash-3.8.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (226.9 kB view details)

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

xxhash-3.8.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (482.2 kB view details)

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

xxhash-3.8.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (252.2 kB view details)

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

xxhash-3.8.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (274.9 kB view details)

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

xxhash-3.8.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.9 kB view details)

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

xxhash-3.8.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (226.0 kB view details)

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

xxhash-3.8.1-cp314-cp314t-macosx_11_0_arm64.whl (32.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxhash-3.8.1-cp314-cp314t-macosx_10_15_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxhash-3.8.1-cp314-cp314-win_arm64.whl (30.1 kB view details)

Uploaded CPython 3.14Windows ARM64

xxhash-3.8.1-cp314-cp314-win_amd64.whl (33.5 kB view details)

Uploaded CPython 3.14Windows x86-64

xxhash-3.8.1-cp314-cp314-win32.whl (32.7 kB view details)

Uploaded CPython 3.14Windows x86

xxhash-3.8.1-cp314-cp314-musllinux_1_2_x86_64.whl (217.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp314-cp314-musllinux_1_2_s390x.whl (443.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxhash-3.8.1-cp314-cp314-musllinux_1_2_riscv64.whl (300.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp314-cp314-musllinux_1_2_ppc64le.whl (241.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp314-cp314-musllinux_1_2_i686.whl (225.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxhash-3.8.1-cp314-cp314-musllinux_1_2_armv7l.whl (268.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp314-cp314-musllinux_1_2_aarch64.whl (238.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (310.5 kB view details)

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

xxhash-3.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.8 kB view details)

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

xxhash-3.8.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (473.9 kB view details)

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

xxhash-3.8.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (242.9 kB view details)

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

xxhash-3.8.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (264.5 kB view details)

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

xxhash-3.8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.5 kB view details)

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

xxhash-3.8.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (220.6 kB view details)

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

xxhash-3.8.1-cp314-cp314-macosx_11_0_arm64.whl (32.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxhash-3.8.1-cp314-cp314-macosx_10_15_x86_64.whl (34.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxhash-3.8.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (34.7 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxhash-3.8.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (32.2 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxhash-3.8.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl (31.2 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxhash-3.8.1-cp314-cp314-android_24_x86_64.whl (36.6 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxhash-3.8.1-cp314-cp314-android_24_arm64_v8a.whl (38.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxhash-3.8.1-cp313-cp313t-win_arm64.whl (29.4 kB view details)

Uploaded CPython 3.13tWindows ARM64

xxhash-3.8.1-cp313-cp313t-win_amd64.whl (33.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

xxhash-3.8.1-cp313-cp313t-win32.whl (32.4 kB view details)

Uploaded CPython 3.13tWindows x86

xxhash-3.8.1-cp313-cp313t-musllinux_1_2_x86_64.whl (223.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp313-cp313t-musllinux_1_2_s390x.whl (448.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxhash-3.8.1-cp313-cp313t-musllinux_1_2_riscv64.whl (309.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp313-cp313t-musllinux_1_2_ppc64le.whl (250.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp313-cp313t-musllinux_1_2_i686.whl (231.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxhash-3.8.1-cp313-cp313t-musllinux_1_2_armv7l.whl (275.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp313-cp313t-musllinux_1_2_aarch64.whl (246.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (319.7 kB view details)

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

xxhash-3.8.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (226.7 kB view details)

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

xxhash-3.8.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (482.1 kB view details)

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

xxhash-3.8.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (252.1 kB view details)

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

xxhash-3.8.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (274.8 kB view details)

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

xxhash-3.8.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.8 kB view details)

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

xxhash-3.8.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (226.0 kB view details)

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

xxhash-3.8.1-cp313-cp313t-macosx_11_0_arm64.whl (32.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xxhash-3.8.1-cp313-cp313t-macosx_10_13_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

xxhash-3.8.1-cp313-cp313-win_arm64.whl (29.2 kB view details)

Uploaded CPython 3.13Windows ARM64

xxhash-3.8.1-cp313-cp313-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.13Windows x86-64

xxhash-3.8.1-cp313-cp313-win32.whl (32.0 kB view details)

Uploaded CPython 3.13Windows x86

xxhash-3.8.1-cp313-cp313-musllinux_1_2_x86_64.whl (217.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp313-cp313-musllinux_1_2_s390x.whl (443.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxhash-3.8.1-cp313-cp313-musllinux_1_2_riscv64.whl (300.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp313-cp313-musllinux_1_2_ppc64le.whl (240.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp313-cp313-musllinux_1_2_i686.whl (225.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxhash-3.8.1-cp313-cp313-musllinux_1_2_armv7l.whl (269.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp313-cp313-musllinux_1_2_aarch64.whl (238.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (310.4 kB view details)

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

xxhash-3.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.6 kB view details)

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

xxhash-3.8.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (473.6 kB view details)

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

xxhash-3.8.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (242.7 kB view details)

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

xxhash-3.8.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (264.7 kB view details)

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

xxhash-3.8.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.3 kB view details)

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

xxhash-3.8.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (220.6 kB view details)

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

xxhash-3.8.1-cp313-cp313-macosx_11_0_arm64.whl (32.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxhash-3.8.1-cp313-cp313-macosx_10_13_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxhash-3.8.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (34.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxhash-3.8.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (32.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxhash-3.8.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (31.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxhash-3.8.1-cp313-cp313-android_21_x86_64.whl (36.7 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxhash-3.8.1-cp313-cp313-android_21_arm64_v8a.whl (38.6 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxhash-3.8.1-cp312-cp312-win_arm64.whl (29.2 kB view details)

Uploaded CPython 3.12Windows ARM64

xxhash-3.8.1-cp312-cp312-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.12Windows x86-64

xxhash-3.8.1-cp312-cp312-win32.whl (32.0 kB view details)

Uploaded CPython 3.12Windows x86

xxhash-3.8.1-cp312-cp312-musllinux_1_2_x86_64.whl (217.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp312-cp312-musllinux_1_2_s390x.whl (443.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxhash-3.8.1-cp312-cp312-musllinux_1_2_riscv64.whl (300.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp312-cp312-musllinux_1_2_ppc64le.whl (240.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp312-cp312-musllinux_1_2_i686.whl (225.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxhash-3.8.1-cp312-cp312-musllinux_1_2_armv7l.whl (269.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp312-cp312-musllinux_1_2_aarch64.whl (238.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (310.3 kB view details)

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

xxhash-3.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.5 kB view details)

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

xxhash-3.8.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (473.5 kB view details)

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

xxhash-3.8.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (242.7 kB view details)

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

xxhash-3.8.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (264.9 kB view details)

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

xxhash-3.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.2 kB view details)

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

xxhash-3.8.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (220.5 kB view details)

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

xxhash-3.8.1-cp312-cp312-macosx_11_0_arm64.whl (32.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxhash-3.8.1-cp312-cp312-macosx_10_13_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxhash-3.8.1-cp311-cp311-win_arm64.whl (29.2 kB view details)

Uploaded CPython 3.11Windows ARM64

xxhash-3.8.1-cp311-cp311-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.11Windows x86-64

xxhash-3.8.1-cp311-cp311-win32.whl (31.9 kB view details)

Uploaded CPython 3.11Windows x86

xxhash-3.8.1-cp311-cp311-musllinux_1_2_x86_64.whl (216.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp311-cp311-musllinux_1_2_s390x.whl (442.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxhash-3.8.1-cp311-cp311-musllinux_1_2_riscv64.whl (300.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp311-cp311-musllinux_1_2_ppc64le.whl (239.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp311-cp311-musllinux_1_2_i686.whl (225.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxhash-3.8.1-cp311-cp311-musllinux_1_2_armv7l.whl (268.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp311-cp311-musllinux_1_2_aarch64.whl (237.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (309.8 kB view details)

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

xxhash-3.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.1 kB view details)

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

xxhash-3.8.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (473.2 kB view details)

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

xxhash-3.8.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (241.4 kB view details)

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

xxhash-3.8.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (264.5 kB view details)

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

xxhash-3.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.0 kB view details)

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

xxhash-3.8.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (220.3 kB view details)

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

xxhash-3.8.1-cp311-cp311-macosx_11_0_arm64.whl (32.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxhash-3.8.1-cp311-cp311-macosx_10_9_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxhash-3.8.1-cp310-cp310-win_arm64.whl (29.2 kB view details)

Uploaded CPython 3.10Windows ARM64

xxhash-3.8.1-cp310-cp310-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.10Windows x86-64

xxhash-3.8.1-cp310-cp310-win32.whl (31.9 kB view details)

Uploaded CPython 3.10Windows x86

xxhash-3.8.1-cp310-cp310-musllinux_1_2_x86_64.whl (214.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp310-cp310-musllinux_1_2_s390x.whl (439.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxhash-3.8.1-cp310-cp310-musllinux_1_2_riscv64.whl (297.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp310-cp310-musllinux_1_2_ppc64le.whl (236.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp310-cp310-musllinux_1_2_i686.whl (222.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxhash-3.8.1-cp310-cp310-musllinux_1_2_armv7l.whl (265.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp310-cp310-musllinux_1_2_aarch64.whl (234.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (307.6 kB view details)

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

xxhash-3.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (217.2 kB view details)

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

xxhash-3.8.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (469.9 kB view details)

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

xxhash-3.8.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (238.5 kB view details)

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

xxhash-3.8.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (262.6 kB view details)

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

xxhash-3.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (237.8 kB view details)

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

xxhash-3.8.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (217.5 kB view details)

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

xxhash-3.8.1-cp310-cp310-macosx_11_0_arm64.whl (32.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-3.8.1-cp39-cp39-win_arm64.whl (29.2 kB view details)

Uploaded CPython 3.9Windows ARM64

xxhash-3.8.1-cp39-cp39-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.9Windows x86-64

xxhash-3.8.1-cp39-cp39-win32.whl (32.0 kB view details)

Uploaded CPython 3.9Windows x86

xxhash-3.8.1-cp39-cp39-musllinux_1_2_x86_64.whl (213.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp39-cp39-musllinux_1_2_s390x.whl (439.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxhash-3.8.1-cp39-cp39-musllinux_1_2_riscv64.whl (297.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp39-cp39-musllinux_1_2_ppc64le.whl (236.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp39-cp39-musllinux_1_2_i686.whl (221.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxhash-3.8.1-cp39-cp39-musllinux_1_2_armv7l.whl (265.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp39-cp39-musllinux_1_2_aarch64.whl (234.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (307.3 kB view details)

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

xxhash-3.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.9 kB view details)

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

xxhash-3.8.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (469.7 kB view details)

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

xxhash-3.8.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (238.2 kB view details)

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

xxhash-3.8.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (262.4 kB view details)

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

xxhash-3.8.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (237.5 kB view details)

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

xxhash-3.8.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (217.2 kB view details)

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

xxhash-3.8.1-cp39-cp39-macosx_11_0_arm64.whl (32.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xxhash-3.8.1-cp38-cp38-win_amd64.whl (32.9 kB view details)

Uploaded CPython 3.8Windows x86-64

xxhash-3.8.1-cp38-cp38-win32.whl (32.0 kB view details)

Uploaded CPython 3.8Windows x86

xxhash-3.8.1-cp38-cp38-musllinux_1_2_x86_64.whl (214.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

xxhash-3.8.1-cp38-cp38-musllinux_1_2_s390x.whl (440.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

xxhash-3.8.1-cp38-cp38-musllinux_1_2_riscv64.whl (299.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

xxhash-3.8.1-cp38-cp38-musllinux_1_2_ppc64le.whl (237.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

xxhash-3.8.1-cp38-cp38-musllinux_1_2_i686.whl (223.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

xxhash-3.8.1-cp38-cp38-musllinux_1_2_armv7l.whl (266.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

xxhash-3.8.1-cp38-cp38-musllinux_1_2_aarch64.whl (235.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

xxhash-3.8.1-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (309.7 kB view details)

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

xxhash-3.8.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (218.5 kB view details)

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

xxhash-3.8.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (471.9 kB view details)

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

xxhash-3.8.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (240.0 kB view details)

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

xxhash-3.8.1-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (263.3 kB view details)

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

xxhash-3.8.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (239.6 kB view details)

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

xxhash-3.8.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (219.1 kB view details)

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

xxhash-3.8.1-cp38-cp38-macosx_11_0_arm64.whl (32.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

xxhash-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxhash-3.8.1.tar.gz
  • Upload date:
  • Size: 86.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1.tar.gz
Algorithm Hash digest
SHA256 b0de4bf3aa66363552d52c6a89003c479911f12098cd48a53d44a0f7a25f7c46
MD5 bbf736c19500c21112dbb2d6e4807b6f
BLAKE2b-256 8e6371aa56b151a1b28770037a61bd4e461c2619cfc8866a4fcaf1548605e325

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1.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-3.8.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 345b07b78e2bf583d71682aa34ae5b5fab575f7a1cb31e10263ebbc6f89f8c42
MD5 2e9a8360ebb26b8a93c5824ebdcfa163
BLAKE2b-256 6b575c6e0908a47f61dca96d01c8ee6fce01ed1050611eb779083ba8758fed81

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49aa8692507835dcc1e8ad8021f20c74c2dc13d83b5112e87877faa2a0035b20
MD5 66608fd7cad2f3fe4a81f579d4589c3a
BLAKE2b-256 0da356864d895d1161a9f17502088e9c1fb7c06bde2c2efdde620d22bb7a9c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b512261801b1e5fde7b6ebf2fef7977339c620cbbca88a0040ad9ad134f4d02
MD5 fb3d30a587ede1cb21a7835f71f8ffdf
BLAKE2b-256 9c6d56ed2b6b200f26fb474f3fd387d95d0601efcd5bb33430c90c68924bdd77

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8304be0982130954b7fd3aad18e2c6f8ee40254bc3d2e635991c16d77c91e2bd
MD5 501858ce86b8221b1721b58ba61e0bbd
BLAKE2b-256 080b40a2a55ff52cf635bfdc5eae67a772bec85b4f44c6c737f73f6f528d51d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83b9130b80b216d56fdf9e87131946b353c9627930c061955a101ea82b09fed9
MD5 2f5cc9f39593bc623871fc6280bb1982
BLAKE2b-256 da6a975f1f2318c760e5bcec109ed379713ae645d8d856c2a3b9ec5d26857087

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 39c9d5b61508b0bb68f29e54546de0ed2a74943c6a18585535a7e37356f1dd12
MD5 989b70aba358e1e69541b75974408137
BLAKE2b-256 99e44d8040435aeac814fc69ba63621565fbeb19229a138e2568324a26b2a45c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8f454166c2ffed45636c8d501741e649851ba2f346c4eb73a64c07ac00428f20
MD5 d3faffacad08aef048fcc895efa83438
BLAKE2b-256 d6f96ed7251bb6a8af10ac73b1821c60583d2826e5b2064e45a979c935287c98

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7258ee276e8772599bc19e14b36f6260306e21b637190cd7cb489a2449d48684
MD5 537561b4da493dbb06ca137e84597197
BLAKE2b-256 541c09703eb341f8416e74e58d6c6732d4b5c46de59c942363203cb237cc95b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 33.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c240939e963653054fc7e4a17c382829cda4aa88a7daf0af841715dbded1b497
MD5 899cba42950ea43c95b998ef8c490fef
BLAKE2b-256 1211b99949f0ba2b07e9f9ffe83b9c86faa685f9080725dc21a916a607313be5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 358650d5bda9c635da699c53adf4e8134af492ecc79c960f917eebf088bb6799
MD5 7e50890a6aea3bd2067ca2acd3a4de2b
BLAKE2b-256 01e73071dfd3beb5c38204ce1cf56bf7749fce08de900fa92714b81d1d8ca1f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44c89d915a75c11d2547eaee9098fcd80398987c4bff2974a0497a925bf92c07
MD5 ba43ff91a0e319a2cb7e376211d03679
BLAKE2b-256 5647a0288d7329b1fe63e2734a32d19d444a96ae2b4810f545bc61e561224917

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cf399fac542a1c7a4734a435b93df2c55e858c7d31abf6c1bdf46f9ae67fbfd0
MD5 ee1e0af0f8bd66eb7834058cbced0a0f
BLAKE2b-256 23648acab4c5ec60dbe664b5b9858fd44c2413b07e535b09556a0a5022e78aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ea6a3e734b0fd41b82784a400be946821900daebe610c050a5e0760838a34f99
MD5 a0a98ac2b54cd75a25bfc600afc0c242
BLAKE2b-256 649d3acaf8f599c0e0b30e910a3a11ba32929da53c86dc73c7c55fe6a010b4e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e14800b9b10bb39d7a60ad4a310e403164d7b8988a27ae933d4e40618a44088e
MD5 ae54728c80225d0a2a141194cdcb9375
BLAKE2b-256 13f549fc9e4c6728a5a3bd8fe639199d2fa67609b3a84f938aff6e8568dd3e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 264710bd335016f303763ce1275c6486df30bb57c2245c91b224c983d7ac39b8
MD5 57ded71fc5858fe3e6eefcebd9679efb
BLAKE2b-256 08ea662ed6cb49f1d34078b6a3a3e0f3d29ff93fd7b5a03c0bc9ecfd9b2159c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 559e3cabe522231909f9de98ef06929edbd53782046bd21aae0c72db6f2a0775
MD5 3b11f703eaf31ac765922c3a41471f99
BLAKE2b-256 23699b1a2b89b1621bb740fbcb7beb512f60f99480c1bdc680c0c90e1f56ff75

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9043877a917be88ccf230aa5667c1bd059bce80f4c2727e4defa1b29b7f48b08
MD5 682a076e22f9512861418fc29e91e3ba
BLAKE2b-256 edb586bade5618a524d2c06c4041aa2fe8e5749ce16e88afba60d67c1684a21f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4df57c0b161ec1b3ed0526a67b0db0914b557e86ee8aae51887aec941b261542
MD5 16de81d932bda67b59128a6450f9ace9
BLAKE2b-256 7f0607a8aea1108d682de8791ce608cdf367d75ff4e7e57cd3c154bdc6f47b23

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f6114692261eff4266386cdec0f7d87eee24e317ab397c218b7ae6a76b4c6339
MD5 d22452fa488586a4996c3ad9fc369395
BLAKE2b-256 ad0478d88fa75a6763e5d09bf1b947a392a27988903381b219006f92f3c68fc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c73b6f652f0745425aa6378319c331293b5341756262e9408ed3d45f183375e6
MD5 4aea61e9574299f1649a2f521d80f9cb
BLAKE2b-256 6674a600aaf7cd39957fd1510adeedb1749c1e7eb82bd632a1153d9c664c3135

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3bc0fa90830df1e1277f33cc6e55de9990b83c0319fd8c7412866cfde38b025e
MD5 02ebcb49a1fcc536c3893d09bd8a14e8
BLAKE2b-256 c0c0eb7e059cb5e1dba11fd30d2fdf882f56e5a417a3eaa43669d43623767f45

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98d8ac1129b4dd39098cffed94d1284aceb61c3aa396757ccc736ac392e4cee5
MD5 12afc3e308a8789291457f6509ff19d4
BLAKE2b-256 3a7e5cdcf06bf6ec4b5d2ac073feb23432ec1d603fd438864cbd2c09c7cb45e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ec55d80e9b8a519d742669e0b49e8ce9e6747be42bf3c138158b6543a9c8e489
MD5 daf11a59a8693ae17df810616e8edfda
BLAKE2b-256 9cb8e041f555903c56db3d0a731b3d72a6575d75e0ed868b1bd2e5176111ca44

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 717b12fdc51819833704e85e6926d76981ffa3f780ef92e33ebb8b26d46bb230
MD5 1a50df2fc6371239f33879b71d3751f1
BLAKE2b-256 af1d72d8a70520e5dcddb472ea0486d299da3240745a10658290cd7b5690ede2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 01cab782f8a0a05ecad2c63d7ef10f7ab475f660e0d6419d069418c14d88de7c
MD5 67d9ff19b72a6f172c1209a6d293ab85
BLAKE2b-256 92cb18b64bff88c58a0ca209dc533e63cf02d7ae5aa6b1b9a9fd14e81b5dbd60

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 58346024d47e84f7d8b3e7f5d6faa1d58acbbe49a8771497872059f58c1d8ea5
MD5 6236b1a993d974d57a1ce1a1c508ab1f
BLAKE2b-256 452b64f36d86380b3657ad9031967ab814f3ef31307174650853f69c18932ebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6cee733fe4ccb1737e0997135283c82341e5cfa9cf214b165f9087fb663aaf4f
MD5 ed3ed3dd0076d71b14344c4e7941a4f1
BLAKE2b-256 d799e9e44588c0b62837bbec5ba7927816de0afa03406b1a0b6c7a7e1d1a30a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d58ce8b6cfa9c4d2f230557f69caf7c06369e318015d0b19485095bc2c5963ab
MD5 1ac30ef6afc5563efba22fc06015ca57
BLAKE2b-256 ad68c9e3ecef4a9a417d464cb5bd200aa12f73192dee677901b9e08e0ad0d1bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d247b34bf433c92b41689318fd25d246313cab2275a6a47e2efac178b80d6efe
MD5 60cca40d9c64c513f56d4fab61c9f6f3
BLAKE2b-256 26600e0d973be5fe280753ef02fbc89349492ad6e903bf1dcb870b668f94b662

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 53f3ed9118397074ff63a79b66b7fec1c84c782eecde35c5bc94e420a971c231
MD5 b3d70a71056611e9f533d8cc4a9122aa
BLAKE2b-256 bcfbb33e27689959fe7ed2ae0b830af41560d65213943983afa9db3a8d481bce

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a5eed9d41995a83f3332b4e3396abb7f433cac584222bd7e305b606d8353861e
MD5 a84484f9f28000742440ad4db55d78ab
BLAKE2b-256 dda627e19670c40f46b5e76e11f2f4713d21054804568425d870670e757172ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ef09bbc2519a93cd0f95f2ceb5f7b85919dffea643278e02362bf40e3c4bed1
MD5 98d086d49b77fb2b57df21482231967c
BLAKE2b-256 30933ca68265afe7b4e69435e08a7b6a1d9d0f2a071e889da1f8041ed00fe878

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 747476436f6891b9773374ce8d48edcc8b12cb5b61b67c6fb6289633747d088f
MD5 19804de085ae3bca52ef5a7b545d6416
BLAKE2b-256 0a505b5badbd87c82d9f9b5f58ac74a3f29ef08f6fc387b324b8fd482450b862

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1da930bbcac3e8fbe2191850e2abb57977a99348c12c4b385e1058ac1b0a9ecc
MD5 ec68d8fae26b371fbacf73fcd48506a3
BLAKE2b-256 20f353f963e320b9ce678337aa7273f39ce692ded8b99e3d22a866ec722159ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b5f97ecfede10d5b2870383620e2d25c8561e217c7bf9081073802b54248d2b
MD5 db8760d36b27c73f53845e89e2aeadbe
BLAKE2b-256 1ff912a82394eefb0f185d15a7f7b9f627c61c475a72dd83718436a5b84b42ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8f759eed402448c2bdbb492e4fba1f20668ffe29688605ea61f0f67f9e4e386d
MD5 f341fe36d92604482d987b1ad6c44a59
BLAKE2b-256 8f1000d12d8b8beabbf49a8bbc626fb9f40445145a8887eb41a6acfb69149ac4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c31a2649bcf1fe97cf11c79848d761df33ac46b3896942d31b640557b486ff6b
MD5 189fba92c69069764ab7777668985869
BLAKE2b-256 03f06db07590ed7e0a77f186ef0bcea8d52553bf1ba57833e09467a2411f0f2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d5006c65ec507a333479e76e00e2c368781f16c24ededa764763956b32a0e93e
MD5 b842ffe728a5e89788c2248dd274732c
BLAKE2b-256 f38a72d9874375c8d4cbc64a8cd1d659d5695a8765c3db82efa82dc5bd9f14d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 46b39976d008e2a845758650f0ff7136bca004f40da0c8798bd37ac37860154f
MD5 d9ec6bc353f7f77b9e379c0b9fc04d95
BLAKE2b-256 64f2700a4674e4308eb59d2fdb973977e82eae231bea5044753fee5c9eec0e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2f1c68394818e0595569c2ff3cbc1e6d5a36a434e796f5c526b987b80c8a8c62
MD5 8984b20a8c33a23ad884bc473b93c4ec
BLAKE2b-256 15a19c3a0ec6cb524396f551eddd102a76690a795494eb9784fc67542b0daa37

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 000435984a0469b0f822fe76f35bddea0f96a4d6521b3339a60a6428cdee1edc
MD5 b090f693d300efd88b03460264d9c184
BLAKE2b-256 fd6f62ae6f5c8606320a0e2a41c2dc8c6d91cc5d63d0f84dd9582e9543779dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 115772daeb71b2f3b9381177017f53e6cf3f3439c840737fdabd21aba6e54920
MD5 39d4dcad8b60a5377f6efdd1a72c2567
BLAKE2b-256 599c81ab40e7d33ada0b3df5d1bc884894d15dbf4f805cd645b685e4606bb8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af0c9fedc4a2c24e8664953882fe8185f3790b8338c9c700f76f5ad660817711
MD5 072043fea131732369596787dd07e213
BLAKE2b-256 ca29df598e738ff37558ac627264deb2e560902d9bf7f46d3bd5175c9eee593e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 78c794b643d214f1522e7a288bcf5a2de120d26cd170516749a4009dc92722c9
MD5 daa59ab2272426d6739dfbce130460ca
BLAKE2b-256 b44aea954aacc7d1c8711880ac2b55da94429a9b4296b151c4fc0966549ca1ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 594131ce1aad18db3689781f806db1b065cdaa04f4df36b4c038d2013aefd0bf
MD5 b78786b44f97dcd6fb98e3164195d17c
BLAKE2b-256 7c4ee000bbae3566bc8e0be771a8a0f294aa99075e3f0bc4ef43922ebffdebc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 38c887aedb696ef8bca19983206d270848558cfae4a91afa6a2fb05dde58ffc5
MD5 8bb3372ada232995559826d123b68e64
BLAKE2b-256 3f892da4dbf051bafa156c0e3f12012db2b0ac3b84ff37ca1f021f6bfffcdfbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 460261045936975193bfd20549a0de1cd52a33b405cbb972f0d80940c42266cd
MD5 348ea35059fbaeaedac3dde254d2b422
BLAKE2b-256 cb9540be178205acce092ae418feb20ac737b32a02c7b864926ed0717354c9f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-android_24_x86_64.whl.

File metadata

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

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 affb37f152e55b5e4494bb9d0107f7bb08515c6704fbed82d9f61214d74adc17
MD5 d3d3de5475141fd626d6c983243b6fb3
BLAKE2b-256 b24f6a059e8ad3ca8deedc91dfe335b211204900895152212c03ebbe721de68b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 9db455cb649dcfe4504d6d68a6d83a7315a99a3ca59871dc3ff840671f99adba
MD5 36a191fe73c3c394df050d43808685b9
BLAKE2b-256 c28bdf2ba04f22a6cd6b39f96a6577329a8471a55c90ef8d8e2f7c102363613f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 29.4 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 6696c8752aded28ff3b16f33ef28ce28fb5d209b80c206746f943199fcf5fd65
MD5 45cf7d98220848503f7813a8c8459f9d
BLAKE2b-256 5a5420d7163463ddb6438b73a427d1655a77a502cf9b9b0c3ada3599629d9c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 33.3 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 37d5a56c36dcc0b9a87b814cd992598d33863ff683749de6c86081f278d5e629
MD5 d845a031b3f820bd50c3148a7d10c4b5
BLAKE2b-256 e7ab2ca45fd7f671de5f81fc297ef1c95080b40c86ec6be0cc6034b8f7707ac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 5b96f0024e9840f449bd91b2d005c921a4b666055a0d1b6492463799f32aae22
MD5 c184c2e3dd7369f9415d09821d7e24b8
BLAKE2b-256 94328a9531f37b59e5a013003db7cb7414baf4ce7e0e1268e0d5947cd3d6a2df

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d59e71153fe9ff85648d00e18649b07e9b22c797291abb7e27274fa06df8b838
MD5 7d9b79af504f636273078ecc1a4786a0
BLAKE2b-256 04a422ec0e07db57d901c9298ae98aa3cf2be45bafded6f07c13131e85b89032

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 57189a69c0891e4818853feaa521c972d22c880a001453addea015f48e3c3398
MD5 4e59561d6adc4ee00e33ad8ad52b6f4a
BLAKE2b-256 8bf9adeead7d0eb28cdfc2832544ea639ffbc6749ccde47a8e228d667459182e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b3ba794c3d885803db6c3116686923f1ec13bc86e621e169a375282b63ea1cc6
MD5 3da49d247bcd8b08203835aed495f1b6
BLAKE2b-256 24a094dc7ae310838f250669c6ad7168e6d6fca17d49dac1053f06dc232c4a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 10e4393ec33633c2f05ad01869e546ad080b1a18f2650503731f153774608b31
MD5 7fbf142137bc4fe4e3888af25443e54f
BLAKE2b-256 0b60f52f08bcdc904c4514ea5c25caa19e9f3214144434a6ff96dc82dc1cbddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e0e1b0fb0259c1b75d1251ac0bb4d7ab675d36f7a6bf4ba6aa630dae94f9ffa
MD5 d1a7a93ece99dbcfe0a2483953503328
BLAKE2b-256 8486caee2db41fadcd5a25aa4323213f9afec5a8586d4e419241e3d659362bd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77f74e45a1e5574bbbf80181c8027b3a4c65c2248fffbd557bd596fff13102f9
MD5 ba6547415a190b9cf12d91b4512c4e59
BLAKE2b-256 244cd9014030147e1f0bb26e7da47aa240dd9ec61c763c573e558111d869f8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 714503083a1f2065c9ad15340dd49ac8a8e948a505a705ffa1750cb951519113
MD5 8f19c9fb67dd5dda6e71fc9e72a9a63a
BLAKE2b-256 4a51ebbd40da8a3f1bc53b4b7a9a87f8e28bd95c5f21bc14b8a57860cf367d1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e4a6443968c4e8dc69967e12776776a5952c119cc1bd94168ad1c5ad667c2be1
MD5 4d96d4755b44ec804848774686639cf2
BLAKE2b-256 a60aa37d6da6427d45a8d23e3ee3a0ca9c9d4a90364849c6637fe2963a755f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51f71a6e2ad071e70c937e41fcb6c19f82c3f9f49831eba850ed4a106ffbb647
MD5 5d917b39f6740dd9177863d74890ef82
BLAKE2b-256 e60d642d923336ea61a15f8ce64fc7e078729e6e06c3a026e517fa79b2c23b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fb9e256a357dfcede7818c6d34e70db2d6b664394803d1de4b6984d2de76c0f1
MD5 50671d977dad3bae04ffac2dab4d9dcf
BLAKE2b-256 c18fb78e4373b2cb6d1c42af60ea2d7e9146ad0710b239ac7f706d5d31d5bb98

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d0b48cdf690a64cedf7258c3dc9506cc41fc86edd7739c40e3098952265dc068
MD5 cc0b301d8a0fca3cca6f06c8d46ec3bf
BLAKE2b-256 a02ad3a762270cee2d7bcd0e25e28c623e5f3f5c0dc637b66e3e47dd5b0bb3f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 72eb5ae575cc7ae2b23f6f8064a8b10f638c7149819ae9cc6d20ebd4d37a1629
MD5 e979a6e9f2ee645cc3b5f0983ad94b31
BLAKE2b-256 70e05c551d8d592f944506f7c5185e210255c15e672a3c6008c156a1bd9b775e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6e088bd7870775624256a0d84c2a6714afd223b2eeb56b0ca58398e52a32fda
MD5 bcb3dd1dd493118b8ff18cd808a54cc5
BLAKE2b-256 3f2c53169270309b7cd8e05504e07fe123bac053b89d00ac63617faacf0a2ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2e32855b6f9e5b18f449e59d45e3d5778bdeb660632ef2693cca267a11246c75
MD5 f9ae46451479d0c6544a9f407a1bb6df
BLAKE2b-256 385a3d3994346e1f45493679cb5c1ffc2bf454e410e9d1e8a662d253becee91e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08ea2081f5e88615fec8622a9f87fbe21b8ea58d88cfc02163ca11026ee62a92
MD5 3a8b55c6b390cbe9a5fa25c0826b549e
BLAKE2b-256 056767ae2a3ccdeb8b8ef025d35aee9edd1d26c3abe5051d47da9286232afbf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bfcd82852c62a60e314670a9602de354c4460f8adad916e2e42a20860c7870bc
MD5 a9d422fff6608b175043a247589a5500
BLAKE2b-256 56d3827ca123c2ee5443a6aaed3c5dd199237dc2f010e2bebd7ec09ef36f3a5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313t-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-3.8.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a6617f30641ba0d8baa1635fbefb1dffc5165ec36d26921bd5cee13497cd937a
MD5 52186abb4cfc34ac152ea1f5c8a7ab77
BLAKE2b-256 d460bb51dbf7c363ff88a7cbd50b7959718219577ef44d7cf255929ffc4a2194

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 538f5f865df6cd8c32dd63158a0e5b4f5dd08d732a7da8b7228a5a0776c8ce55
MD5 de3df22f428b2b92dca34608bdac561b
BLAKE2b-256 962a2a0b84798448e766f7b89ceed073cb0cb5a43fc9ebbacbdea74a38de18e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b5196cc2574cfec572a5f3fb7cfa5ade27305ae3d06516a082132441aff4c83a
MD5 d49916c832fd2074f84fac82386426d1
BLAKE2b-256 684436ab58134badd9d3433fc7b53c4ca8d113d8e807782885628640f8297a4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00de40f3b42240db23a82a5c682b55d7263d84a26a953240c1aee463409660e3
MD5 122ebb88f7ac1a3b16d8cb411e293c9e
BLAKE2b-256 812e071a58c1a53a52d4f7a3aa0987be0c396dffd40da8204805fe1b130a81f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3557bec8fcb11738a8920eeb68974bc76b75262f6947998d3147954ce0a4b893
MD5 5d27a3c918be116f51eac2144e0638fb
BLAKE2b-256 96c02281a8ab5f2a62dbf57a23c58a01ccc1d98abf40f71193c8a81f59e759b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c4ed42965c2cd9081f011be22f69d0e65d3b6165fe7734072fd0c232840bbd4e
MD5 bff8c8238e90a86dc58c702336530483
BLAKE2b-256 3915ce3ab5a1cd27ead25a5196e55a7284220f6ad6e316da494ffd900b2b600f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5db43f249b4be9f99ef4b967863f37094fb40e67effafb78ba4f0356b6396104
MD5 525144e8c052f05e9d7cde6f1cff0797
BLAKE2b-256 aa809d181dbcde4b0fe48375f48833a5832d4b8cd2b349b15110c92ee472d874

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fe37f72a207223d22a4eddc3149d4298993385aa9daef25c039246ca5a309f3
MD5 a1778c21fe60524d574b99958893c21d
BLAKE2b-256 ded3e963a8a46f900a137d91b02144d8ea07a8f812971b138204a3b2f8b8e55c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a800912a2e5e975d4128969d645c4a2a80aa886ccd6c9b1c6f44529e327e8cf
MD5 ca7063a26b3b8d54dac98671258e39e6
BLAKE2b-256 636b4666579a87eebd1744663c404297355fa0658617b015cedfa58810ee7036

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0093cf7eeb91b84776e8742113afa4bdf47533d36cf719179aaaf1f56f6f8bf
MD5 cb44277586171adbd994928555e661ca
BLAKE2b-256 d820af388e8bf9f9a0f89eeef7d2a1935d176ee1c20bc6adeda05035879379cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2666f059a1588a99267e33605365ed89cea92f424b3522806a9f4bd8ad2e3d62
MD5 0f3e51b7cb82a739d2156d88a5e8b87f
BLAKE2b-256 0501006a4243c2c2a6831827f9999f6d1c23feeef100eb023c1f886022a00bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98ee81b4b7f3023c9cb04a78cc67610baffcb5812d92f2096cb5a5efc6f19437
MD5 10f1e62b3685643f718022e830b1545a
BLAKE2b-256 2983e361d3c1acd1b21e1d489616de6fa4aaf843365d8179f612e3743eac20a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e3b87cbd974512c0c5fc7b469c36b2cdc9ee6d76e4ec78bccb2c7184611c49b0
MD5 76f36dbb20a59475781896f13be08181
BLAKE2b-256 680892550e556c6fcfcb96c6a336945eb53a431ed43120ed749636debb16c5cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1f44275ddb0978b67a58a951501903f04d49335a91f7681c9ce122ecb8ccb329
MD5 cbb1f96ca033ef215842fdead7c24e2b
BLAKE2b-256 a972a14019d0c5f6c41ee407a503036ae32787c91325ca218a96a9b5627be651

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b30e01a0b97a4bc3f519a4d7a82da3dc53251fb0de5eeea8660dcd4ff094c0c2
MD5 8f82e97b2e3afd7a53dbcc0a2a9a0040
BLAKE2b-256 18cc14180b17d44892a631f8ae7323c30bfbb1328efc8209e528a480293528ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32ab1e5432690276e71192be7401b55f96db2d0eedea5d44eb1f164505669cc0
MD5 305b69eae811b257a09ccc620cd78810
BLAKE2b-256 99a8e10488efd31fcb13fcd6acbc6e788f10c6f8e3a0cc4ae3eb89dc19c55a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a2489d3a776fa380cb8e71f54c7fda268a9baf3de9b1395093fd280f95735907
MD5 1e20c736ba2e32d48379738d71854b55
BLAKE2b-256 49c7802ea2f9c2ed59219934d6d65c470d502b1788043eae277a52af8658bda6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcab50a389cc04d87f90092af78a6adba2ab3deca63175a3344ca83514045315
MD5 3f40acfa3175d1abf9d6d639d128d99d
BLAKE2b-256 073f5072f1f0f5714186f0ac2a0b5a4929ce30d4b845e94886b6c01b6ebda0be

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9e80238259655bf69d7bcd08226a970d7f42605f3157786bfa76dd13472d7fa0
MD5 3e1239e1b759c8ae7da287925ecb0d9c
BLAKE2b-256 d458edbfb141d4000767ac6a9694f8ac0763e2c2e983e65c9e31620ba56e2667

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7801b7223db017b9c0c9ccf37e44524edb35a1544a1c032add22c061c6af0276
MD5 40ecb55edf0935cceed8daadbf4fd988
BLAKE2b-256 560ffc4c92a5a528f839b34b6419b2e53c8597f2a629d5a1f5d721f65bfa1fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5177aa44eddaa97c6ef0cc00c6d540edb64d51781d2f8fb941612ec61a92c9ed
MD5 d1fb4ed58029b80424f4286401a3b802
BLAKE2b-256 40a4beb6bb26e1184e126dbe7a5682330214ef54dcfbf882078aa9f4b5428d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 d6a5c0bce213b23b0166fe0d35bcbbe23ce4b968f257cc7eb6fd57cb8e1e6297
MD5 3ffc0788a94ae23033c55658455e52e9
BLAKE2b-256 f6948324c04cc7597154caaeba6c094e01fbd2e7601d01e7a13eea9f5420e77b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp313-cp313-android_21_x86_64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: Android API level 21+ x86-64, CPython 3.13
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 036a024d8b9c01f70782e09ed98d532e76fd23f950ae7154bd950fe94e90ebec
MD5 e8cf7b4d704e814d809a42d2ff668b15
BLAKE2b-256 d7ecc0c45627eaa6be7a5d6117423adf8f7a15b17ee74b4b17072cca5959a225

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313-android_21_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-3.8.1-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 3c682fcd96eb4bf64be32a4d95f96107e1588005831bd8a741b324fdda01b913
MD5 5c257392cb18170fcfbcaf77b8714a03
BLAKE2b-256 6b8c446bb782cd0d27007a917b5569a08dd73219c3e8d6e459014db104b27bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp313-cp313-android_21_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-3.8.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9df56e6df96a60590935e22373041cccc91fd55858763dcffb55bf63b3a2b396
MD5 51684d82c355bc2f0a8a66301674e8ec
BLAKE2b-256 b80586feada74e239600e6875aa507afb40482a89b92700aa74a92da83bdcb77

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2256e80e4960ee282f63428adb349cb7f8bd8efe4db770d88eb815f4b9860724
MD5 66d04574ea7b53251cf3af371b27112e
BLAKE2b-256 ec313fa0b807d7e21515cd975e7fe5c039d52ac3e9401a96d6ad68dae6305215

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bf28f55e427e0483acb1f666bd0d869b6d5e5a716680c216ad7befe3d4cfba2e
MD5 f92e5c1a8cadca9e4c1a8d8d293ed55b
BLAKE2b-256 78ddb5295a9f97484e7a1c2b283a742ca45e3104991c55a1ef670dde161829ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 095e1323fa108be1292c54c86da3ef3c7a7dc015b105a52133973bc07a6ad11a
MD5 d48accb3732c156bb8abc02eb38c471d
BLAKE2b-256 a4b61da3baa5fa6ef705e3425fddd382be7dfc4dfba2686df90a20f16e9c7b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dfe0580fbfd5e4af87d0cc52d2044f155d55ebd8c8a93568758a2ea7d8e15975
MD5 7ef3e572217b9b38caee9e6e64effa4e
BLAKE2b-256 132275467acc887edc8cf71c97ab1708feb3df7a88bda589b9f399765c6387d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 445e0f5a31f2f3546ae0895d4811e159518cdc9d824c11419898d40cfadb677e
MD5 f20ced828953126c94ba079643b29a74
BLAKE2b-256 da14d39d565069b87e86d21a2af2a31d04db79249d25aa8d5b62959056a89857

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 36fc69160465ae75c6ec4ac9f781bb2aa16ae7ff869e73c26fee85fbb11b9887
MD5 122f1bf3b21530dc19746bc8c20e832b
BLAKE2b-256 48624c1f035a41c5752aa05e195b6c904c07b94fe9061a16de61e72a6e6b135f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83697b0ea1f10e7f5d8b26a4906fa851393c61546c63839643a2b7fe2d868061
MD5 f0a72e353c1a513c601be054c008826b
BLAKE2b-256 2f87d6c036ba25dfbd9c8633be5aa86fc9474bbb9e2c68212a841d090abe7344

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5eed32dad81d6ba8e62dc7b9ffa0500199385d7810a8dd9d4eafaceb8c6e20bb
MD5 55c9fe88d93738bfef5fef681a6f1f29
BLAKE2b-256 ec4d71c6005ada9dcb608a4e1902e8475ecadb5f3fbfa04e1e244d276a2d0c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bc7113e6f2b6b3922dd61796ca9f36af09da3773898e7003038dc992fc83b8d
MD5 8e319d80f61a63a308f349a230a2ea8a
BLAKE2b-256 a9dc9b9a9789011ee153723a5eb9e7dd7fcbae2ba9b3fe7a729249ca7c252056

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 daa86e4b68221d38e669bb236ba112d0335353829fb627c82e5909e4bbe8694c
MD5 79f29c5ea134ba3a3d289956d262d926
BLAKE2b-256 935f9a184f615fa5a4dce30c01534f62946ce5a11ce40f73785cbd356ccabaa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82c0cedd280eab2e8291270e6c04894dbc096f8159a39dcf1807429f026ca3cc
MD5 d1fc91527873f2d455636f4e84a2c43b
BLAKE2b-256 189634db781c8f0cf99c544ca1f2bc2e5bf55426e1eb4ca6de8ea5da56a9f352

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6536d8677d2fff7e64cd0b98b976df9de7aee0e69590044c2af5f51b76b7a170
MD5 5d9240261903f72c56d44be1edbfb2aa
BLAKE2b-256 910970af22c565a8473b3f2ae73f88e7721af281bc4a575236dbd1970c9f76f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 868a8dcaff1a84ba78038e1cef14fc88ccf84d9b4d12ea604696e0693296aa56
MD5 5ae3d89e75117a751616324365a77409
BLAKE2b-256 6cbd71ed14f4f0318bb7fd7b2ec51999413487fa8da8d41208e84d50d1ef0f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2f8c25a7061d952de589bd0ea0eaadee32378ff83dd6a677b267f9cd86f401f8
MD5 31d910450760649d40f31c2d10327a48
BLAKE2b-256 2332c4147def4d1e4538b906f82731e0ba23424377fc50a7cddd03cd284c8f63

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 852bfe059720632e2f16a6a4745e41d20937b2bf2a42a401e2412046bb6971cc
MD5 d653cd7a48f4771611b96cf12c3c4716
BLAKE2b-256 13445ba2bd0a14ddf4193fc7d8ec29625f659f22c06d60b28f04bf46305d8330

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4d365ee1892c1fa803536f8c6ce21d24b29c9718ec75eb856095c07830f8c478
MD5 b0743b0e87d990a50fedbb91ca663acd
BLAKE2b-256 3a7545ab795b5945b6388583bd75202106af505537935566c15a1577797a0e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 220d68130f83f7cc86d6edfdeab176adc73d7200bf3a8ec10c629e8cf605c215
MD5 7527a2a626c7aa55b428dbd777b4907f
BLAKE2b-256 5704b10a245a4c09a9cfa88f8e9ae755029413ad1ac17047f9a61906e5ae0799

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e6e49370822c1f4d8d90e678b06dbcb08b51a026a7c4b55479e7d467f2e813bc
MD5 072459da0b3486338453f712292b6674
BLAKE2b-256 4291f65c34a7aa7b4e7cf4854f8e6ef3f7ee32ceac41d4f008da0780db0612f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 836f11d4474d3228e9909d97216faa4f7505df41cfaf3927eb29809de785a78d
MD5 6f8b9194a32fdf5dc0c46bf752ae8e51
BLAKE2b-256 2c25f008db952cec6b2a26445b456eeed2ebebd65e08e848ebe09ed6ac0634e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f377012b86c0a23a1df0cf5a1b05aa7187649e472f71c7892e5f2c2815bbe74f
MD5 d988e18d06b0c3520237642881f7b04a
BLAKE2b-256 595cef70c418d878d187b8da56d4cdc06aea6cf5e456b301e96e51e1d2cc8625

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5013be3bea7612852c62a7437f3302c1cfb91ca7e703b194459db0b2b2e0d792
MD5 66d8835655d624d8204e23269fd3a795
BLAKE2b-256 a6a360157acecc307b238d3651c2483168e224b48b23a36ae6d6903588341d80

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e710ad822c493fb80a4fbc1e3d0a807b1422cb90adbe64378f98291b7fa48fef
MD5 a2c912c7845cf8693de7e5dbdab04341
BLAKE2b-256 23bff80090622141cc734b039ce1d15ce3ff6dced375e9680249bf5b9b8c6bf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 09a204dd4bb0823daf938cdd0dc8057d5f1e14fe3cbde929424255f23f9de872
MD5 58058896c3fcc8c735c02f0c35713709
BLAKE2b-256 98313e1cb020237b68117fc212dc5f9753b87f865b4dfee7c1ce62d0836955b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 89b11a5cdd441aa463f6d34ca0241602bc09b001a76994b6059828494108c673
MD5 0db8db44b91c9403534c4532db82c592
BLAKE2b-256 ce87a735d05f7f859354acadabe470ff40e2c46672275f96dcf096a761904def

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 32a94ad2763e0263d9102037d349002c3d3c401e42770542c3eeb4801f311661
MD5 82638888370d77fa974dfc451b6839ed
BLAKE2b-256 ec34b8540839e958d5ef5c6101af6f16032109e7099698ae8edbc8dcefe4d8f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0418ec8b2331b9d4d575fc9284427e8e69449d7172e99e1a86fcdd1f51a0a937
MD5 e30dd3a11bdf12d48ff2b5c4eb3b6ca4
BLAKE2b-256 57797e7de46dbe5d1f49afc96a0bc42e6b8df24eae3d6bad6007b99e42f48430

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 950ac754d16daea42038f38e7465eb84cda4d08d7343c1c915771b29470f065a
MD5 15aefccfebb6a02086b6e36bbe12f99a
BLAKE2b-256 388f83e9e31d4ed57fe963b99cb5b13a23e3e0f0dad1885aa0ebd2a7819dd423

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4482380b462ca9e59994d072a877ecadd1cf51102daeeab2db696f96ab763723
MD5 b078608f1d8b48b30809f9bd896e1c11
BLAKE2b-256 890f7fe4d4ef4e69f0033e012396ee2a115886bca7b10b7e45ce398626436bfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5d3dfb1f0ff146da7952867a9414f0c7a29762f8825a84879592612fd6139342
MD5 43fbbcfe5857a31d2e7137dd1771059f
BLAKE2b-256 4728a8675e78a9ced96dab853416162268e10e05b452e95db7888cf69f58ac5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad52a0e4bcc0ba956a953a169d1feec2734a64981d689e4fc8f490f7bf91af60
MD5 2cfd89522481c70c27b57224876b1c71
BLAKE2b-256 4b3f6aa808a96bdc43dba9a740dec56c744526ee3c0019e32c75e810fa90ae4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 027dee4355f3fcc41481650d846cf6cfc895c85a1ab7acd063063821a0df5b4c
MD5 c8844b48e6842d2548e7c44e29d6aba4
BLAKE2b-256 ff40136e0cbaf5db51e191423b1c98643593189f02b6cd90837bf64b19113d70

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c959f88160b13b4e730b0d75b459b7929fc0d2225c284c9683ac95d6feeeac6a
MD5 6b868dba6a787a2c5151f39025c877d5
BLAKE2b-256 5cd0f10651cec2c7981b20d693deae6bdfc438427d92be2db4ccabb6181f0021

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a5cd96f6dcdf4fa657b2d95668d71d58455248f98712ecffaa9c528edf40ccae
MD5 ad594292505600826efa14cd4d050919
BLAKE2b-256 e902f28ba7d17f2c1410ee397982c817ab1bd5b2701070c2d2c373539aad000a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c332dd48b8cb050da2bb2a3c96d72b1664168650a250ef9718e423df7989e05
MD5 53d90555f55efee8ab618cdeda5ee974
BLAKE2b-256 709345dc0ad7913b69e5b08bd039236cf628380e4c9cc76a8a4c6625a328e058

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 db77278a6eddadbf44ce5aae2fee5ebb4d061f026b1ce2130d058cd4d7a7b670
MD5 a8b9240aa791553da8d5406d08b2a496
BLAKE2b-256 3ebf1cfda5b5e6bf26617812b4a31662ef2220d2ad04e0a55b8ff9eb36e56a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 131324f719957b988861714de7d6ddf57b47abec3b0cc691302ffeaba0e05e10
MD5 50d871f16d136c1a19e6429c9ca4a6cc
BLAKE2b-256 80590df1133958b2228929355e022aab1e958c7b2c43e27bf7f59bc9edfa8a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 602efcad4a42c184e81d43a2b7e6e4f524d619878f2b6ee2ba469011f47c8147
MD5 50975acb31affb863905a626ce919717
BLAKE2b-256 8a5a05eaa129555f85476a3e16ff869e95f81a78bbe4647eef9d0229f515a317

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c85949d02c85adf6d786eb94858e124989a632a4e65739835b2fc5761827fac3
MD5 b8fafe44c3bd90d024b179209aa76031
BLAKE2b-256 8cc2800648d99039927b5a86d8ae02cd86a556a5ee1678d388216f6b44c8966c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 27cfc2f1ed76f956f36dfe0c56e5f5a3e94cd91eb78b893f63e2ef2ae404fcdf
MD5 ddc36df0b80f897255335ca2cbc7173f
BLAKE2b-256 c91de06fca9844919ca91c6587d530cfa1e745830ec73ad38f44f04b25d1bfb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 656256c9f9303e47f07d5cb8ae4468285370adfafd7ba48aea33a458e7697626
MD5 ab73a4a0a68b582bd31a19bc3b1f962b
BLAKE2b-256 592d69d02d096ee50bdf3ef0d208d874f52c71b1aa6906066bce3c52fedb8bc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2a845687219ba3214126f14a8a5861f97c9e065a7d0b8252adb6df13eea86fb
MD5 76ffaac99aa8a91b83a572063a850b06
BLAKE2b-256 c6507e35275f39256bedace0c3cd5be3c72d4ac9d5aecf5e5fdc3530337cd263

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 12eaeaa9ab8b9e6033a1fa5f6b338aaf55ff4df4bee11b59fd6ee03b19186ee4
MD5 99e033a8d0707e177944c77fb0023c2a
BLAKE2b-256 a7976bee358660eb8b4f73c00b00b00bc616ebde00e1ab4b67c63486ce360648

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7345007c12780985de4fd740148776d1eee18c0d41407c6fa1e48c5450304fe5
MD5 d3894a328698446e4bfeb1b24d0e3b11
BLAKE2b-256 daccbbaee4987f3aab1d7b33bb430bb49e940646160af448b9167431c931126d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cb3fe820c27593f170770d6c8d791936cf6275d9269405fbb7b30a55363c10c8
MD5 98c6a1d6964d3dd9fd3c501318df9d82
BLAKE2b-256 2b0b7e6f3eaa05df5e0b6c94aa452b0672801f7031e602081f07fd441aaaaed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81f4ed9ca9644bc95cd976bfe10f7a4cafab8ffdc3aed52877d4600e445be7ef
MD5 7db25391839ac8b19fcf98be824b9a50
BLAKE2b-256 33f39006669c04b01206e21b2177425c649461ba188930a052c2f1728d6ec6a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b86ae798a976ccbc1d02af6ccb98f5b4d24756b1f65e995f11d10fe071f486f
MD5 3af61da1248d7eff7aeceac8c4e764a6
BLAKE2b-256 5bcbf4cfd456624c1f017858168b7ba9443dad810da8aac779a612658450e827

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a98b2f95cab589e0f5e92c48431afb4d56238b8bf6668edcc66166180e9b509b
MD5 db5243af003eaf309e0f557baa0b85a8
BLAKE2b-256 ecc6c0607d373c8affea92101a3926c4fc8b026bcf8983e05fd58f3a0380ebf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8ea8a141eeced4f6262ab6dd71c681ac546a558c30bb586abe087d814b5f85ea
MD5 8a91fc499e9ac37fa57ea6803a6c158f
BLAKE2b-256 0b6a8cb439dc9920e1468e1c2d69ef77cbeb4be3b1ae9f4b5344c07a2b59af18

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64af54dd1c3a45a27c04942f9a1a4683322bdd127f4745cca4e02549c1d2d2bb
MD5 e452bc048a61d9b11d550e9ca6d17c3f
BLAKE2b-256 4590237eded9dd6ae638083294e5a9f77b317aaebd480a330806b39c192a0de1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9f23083e1bd9d901f844af7a126727c486e7eada9a1a6791c8f7e73f94fac656
MD5 18b5e49fe6a16342e86fcb68ac7240c9
BLAKE2b-256 097933001037c1cba90f4ced38b257161c13452024c0db44208f883e2e47f3fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5c566b123dce7e4867ca518434cdfb9f84e5023771235b2e3107a26c9a41cbd8
MD5 f37cb56c3a18b14527d88c9877963c2d
BLAKE2b-256 c477ba0316a7c3e661b86830a47ae4987798616ce1b15af8d2a6358e2d89ef60

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7dc4bdf008f77c88d544849c48c1a40faf25a5eff6cc466de2e8edc37c191fce
MD5 876a36ec6b47c3d76e62f90c82ca9720
BLAKE2b-256 b390783c6b3f9336bd07449fe672be32cef6833633936bbfda8d3b23ee18d202

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0204701e6d01f64254e0e5ff4255812b1febe027ddd7dda63372e27f98b5e91f
MD5 0911c40b31f9b1434f6489dc6cce90f9
BLAKE2b-256 a0ad0ffd8094ea29579bb2dc42fa74d08570e9ea3d95db561e6b1105e69b9ca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 942bc86e9be6fdd6e1175048f5fe8f8fdaaf2309dd1323ef1e155a69cd346780
MD5 ac975aec799ce9bfbc8884b3205ba018
BLAKE2b-256 65a48512a901b1d6ad4a9838d1b40385907a879d7e005a5afbec5d39526b69f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b2ce44bf8f4a1d01f418b3110ff8dff32fd3f3e836c0e06333c3725f243fa6c
MD5 8d2f01489b93400d8de71fcf4f939010
BLAKE2b-256 2fcf745b9bc0dd9c341bc074b5fc700db7bbef0f3b69ab21446492296ab37e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27a9e475157f7315826118e3f3127909a0fe25f1b43d3d3be9c584f9d265f937
MD5 ebfb9e5713ea268d82bf8127e575d668
BLAKE2b-256 55971a8cebf0a6650417f08a18231590e2515aacd5ce39c3ad8b9e013ebd437d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 402db908ea70eaf9800d9182a66596fc86f36655df8f63fdecf7c11da741d86f
MD5 10bd55126acead1af1cf6c6ca015b8d8
BLAKE2b-256 2e0beee3fcc7e9c3c9ef81afe4e2f082d065d977a2417326862e275940e19141

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bb70573d2995d23932e2871120f78d798ebc3572e54c09e694a18ced95c5f8d9
MD5 78e50f468821b131cce68dac773f9982
BLAKE2b-256 1ea1716541526d891fd86cbb9f722411434612a2afebd2d9c1f38992a2d8e7d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 57f80a898544db78ec6b0be6183bd1bc008933193d4199f5cde36b0e6bd5e062
MD5 351cb67e18f4ab3960b071062d671348
BLAKE2b-256 e4cf8b9120ce9d3e2e8d87e8a6599c3c9c7bdd6aa76e24c8ef5d55f953189676

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bec8b2c909bcfae9a0dc702346007e02a8c9ba5bbde83ffb224aa194f4f9efc
MD5 030cd4ad91596039cce7992d86fea3e0
BLAKE2b-256 014ce99bd009c6f63fe93ed076632e156cdbe861f134c4980895717946145ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f8044cf4c77f37968b8c4cbcbf7a0f355d8a437877ae18eba23e3aad953a6cc7
MD5 7d914120fe50dd160a623074d21e99c2
BLAKE2b-256 a27f1bedff35ff785728909d39afc93a7ab7954ded67202ea1d52fdea3fad1ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5da703225374e3a4c8d4fd90e26fe7213a52004ec77f88b42b42e9e86d8c6d57
MD5 c699ff21085fd5dd38ffae301a6d8bfd
BLAKE2b-256 76ef568ee42c0d4d9d86c0bbbb9b96ad2e51828943cd5dfd7c851221f24177bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 23e710118a5778a45db740b431943a3f2a82a571a052c2768cce6544d9c8c62e
MD5 9f06df939281a292ac57530b427641d3
BLAKE2b-256 ebb463d7a3f769b87c8dbaacda87ff01a79fe9872d4e9f6af49944cd38d7f212

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 221.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 454d78e786602278a2a4383d08048482052f4f0c61fa677ca590af08914d9bca
MD5 39fc53bea46fe8f8e0a0e795370379bf
BLAKE2b-256 b2c5006b414cb8a61f0090464c9834b494505e319412948ac45f454fddb84cd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6fa3116e40e14e7782fb1a9f872f94b5997de21127c95545ce40196ac1351c5
MD5 b62e283957b6d4500b3cb1c89853c29d
BLAKE2b-256 7aa50d33ead51e2468453c4a770f62e63955e66a0cef00d94921e9d987a55262

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cf633fe83b1d4e6519d7259b33afe40fbba5d3f438730156971dd0cf7730610
MD5 043547fb31dd887684a2ec36eed2a7f1
BLAKE2b-256 118df035318670099ebca6e415f291ad705de37a35781dfec215740f9ac6864e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 632a34590c090d1285ed5efa5a02be919f3f9a56a64bd25f693fe1e2d27a27fb
MD5 910a8b35ecce120546a834f1ff3b2178
BLAKE2b-256 7a2ca880d20cef5ddc75a3092856cea379db4675f1cf9106c711b36e59a66d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d45eee3a95a8b61e5b568580caac91f1502ddb731aaf8f4aa448a98660b2fb4
MD5 6fb6814e850eeaf24732c98617354d94
BLAKE2b-256 6a6e8435b2ecce35d600618c5ef796a1a954837de67583db8f4cefd350d243e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1153265daa10750a9bf8e9b01753d7618024a300925591efaf16b1b7fa536699
MD5 27dd09a8b1cdc5bb181d33ace79382db
BLAKE2b-256 7718a1fe8d847979d64693d3aa97b3667fbca9fe8e08e8d797739e546d42743b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 614bca2c7cfa87ec95b703e691c3c5eb6c448b6dabbe9776ac53883152951729
MD5 3ea3f254e50a07b072c87348556a98be
BLAKE2b-256 7cb5d707e4dd4fd6ab5eb99477a730dd12498355cc7bdccad1e297af69a069a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d48acabb1e5cb0071009f80d71d7f01b6ba2c1d4b869b1352bb5df3f11bf7dfd
MD5 d4a2cab3b5c890be370bc1c8be39dc77
BLAKE2b-256 e71af463a0fa4cf3068908aa9f0d88c12109c25bf9c0547b80cf5c7a9e525974

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c7574528bc922f8757f34dd78ed60ab52b1c7973b630f5eae7ba33ec133ce71
MD5 af2c4c9cc1d605886d19c654cf2dc44a
BLAKE2b-256 399b2761df0ffe371306331838e236c6d60ab97d3906d00eecc746337aa795a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f8ed8940435834141061da26d27c4dd0d18fb69777bf431f5c6cc46b43349113
MD5 9c387e6609e07168868f4198476640de
BLAKE2b-256 01a7516de7064ffc9bb459bcc1f6900dc1a7a033ec9cc2db34ed9528e047c8de

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e605e0b8abca9457abd5bee737e086ab145a20c25083ef1113013612268872ff
MD5 bb8d67e4582bfdb26742a1a5681d631c
BLAKE2b-256 56887b603b917b55ab2a9fc4fcd226dae4f5868ff9f485aacd6a93d1f51265f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 314d05fbc55719ae2438eaaba77bf2508ca4f030b26fa4c9c8c380e81c48fa33
MD5 a408ebbeaf849db6a0cb6c7fcadd08f6
BLAKE2b-256 d5b6c19b201ee1ab91688b4b8cc6926172cb7c8e98f31b4cb52f03199ecebdf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-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.

File details

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

File metadata

  • Download URL: xxhash-3.8.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bbcdf9c92d21c65bc75426eecea724c8fa0d35a6e201fdf1630011d4cc3aa685
MD5 d93a06db8bafec1a9a2c77bb1b1aeec9
BLAKE2b-256 4ab124fcf10c2a39c3e98e1d5fc080d8456c2924ebbb4dbf364747a620867317

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4d6e88ddb3c741fbf29e1e7faf429880f8cd1d7aff4303247435a549726b4fb1
MD5 c5f9085f93ade6fd9d43b0328a635800
BLAKE2b-256 289d9a7ba8ac61f8a191cc77cb19d213e81f76e778c50c1e332eeb044420b217

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c0d84c5f2e086b120bae4e7f551cbda804c1deb10d958478bed4f89ba286dfe
MD5 3b07eac7865ed3df1a70f8ee3f41e228
BLAKE2b-256 ccfa64c4d47dc563bf5a55445fbb08c0c7a90d201aec58e3039c75807e117897

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 89df64c10adfe340fb00330042537cdd6bf0d8d78bad73f29cfe5427eed7b084
MD5 81a371e158f35a077c9299990431e1c2
BLAKE2b-256 568e2497b98eaf711559f6df691712eabbf15efac5f3cf20b252e01551ec5f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1731407102b9332cd3c9dadee07db498bc3d437b95d752b5b1a5f7eb730a3738
MD5 39aa4642809cb59dd15fed60e8029bb7
BLAKE2b-256 442618165c3417ec3d4f72d5d9a87b91189add39f9663da6261fa882e3599adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 12a3cf79dadbab9631230ebc4c51c7c60f1e9cdfb890c15fb733eaafe2e7713c
MD5 514e26f5ad76978bc04492ab925bc99b
BLAKE2b-256 f6fc7c9bf014d887b86d316498e2812babd4d759df0a7cec0ca604c88779468f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: xxhash-3.8.1-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 223.2 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c919f38cd3f0b5e8d30b81fd6cac688cf9221560340f0c35cbbb8b2bd77ad6ac
MD5 7fd373be746f8d5d1f0ad9306cd53f96
BLAKE2b-256 cf4f83b11c5787d5777db132f54fde69c6f23ae58b6a86a8e39ada312a107ced

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15790b686f8723b845fec6f612a343beb815a25c83117a7fa408d7c8ee5aa8fd
MD5 864b6c9e8fd3c2c8d0d2eebc3cff64ca
BLAKE2b-256 33772e186bed3804bf904b1f4e6cbccedd5e1ada05eb3441ffbeb8e1282ffc06

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afe6380a0e9653a87aa1e6e88fb47718113e5563c7a1cb2bcc23c1d8e17e3961
MD5 fdb4e617a50bd2be8ef2d12233310920
BLAKE2b-256 37905ed26f8b7894532394c4c2ffd35213df8c5ca3132a8f17f5cfdea7e2ec6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 83d879362ddd0fedd3f2ab8ce7cce3da2049a6d51d16da8af73011c6edf4752f
MD5 86b010d56531f535e7a7f36b50b704da
BLAKE2b-256 79702aa79c43548af8b711530c3107ab6a51995b740591f811f97732e4c030e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed8bcdab6692fd4ad0dd6241807a24a640a376764460023b8d462d745e6b7b27
MD5 e2bcb72f09b6d9732b583e4985bc9f34
BLAKE2b-256 70ba7ef321c22fb1ae765a68580ceb4d8f2923f29f072d2526fe3c35c85c5746

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1ffcc98d8878e449e86dec008cea6f44cfd3a954d2ef24ae7d1cc9f725beec7d
MD5 dab373cc03eb5a85a947d3e7336c21ff
BLAKE2b-256 2dbae9749032fb903c9c144e9773e8028f6355eab6a44ad6e1594021f8412168

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b3e1107fe5ca030f946dfa59fdbb66b5df121c8432f14b0bdd282d17b297f4eb
MD5 96c72c2613c0ca9ed31fb9e37016baff
BLAKE2b-256 1da04b805409142ca98362af282eb740d004c8b09ed242ad62f0565c3574c4cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 498017fbf2d13a768b3110d084bde39f2bd8664c1de0b8084f8ccc84425b7c88
MD5 1ca93312f2b48416f5459eae620e23a5
BLAKE2b-256 a61e178e60d561e11ca1f41b80b8399b8ae9571257c99312493e436d4677889f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 848182a391fffdc25605443e832f5b443f25498edeccf9a64343fd84421ca04b
MD5 aabd73993e4f6020c431c0140fe9c06a
BLAKE2b-256 9d2fab37929490cc68b4dca2fa67e85f0be09cf81a99c4f8cdc41e8f7d52aaf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 947a585bcaa235702b7c59433b485489397f9a163b3f56058b9463a46fd9b74c
MD5 7906f06bc6a90dbfefc74fb508d63cd3
BLAKE2b-256 209f4a0d755b49a5b475a1dd1cd4a9207b6c61d8f77bcd654265fec83a2c72eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dfdf19b0d5433a75d61f19dc85737af0f0b95e445c1ad69c855115d05efed45
MD5 7c8b6264afadbe82be501ad128399a49
BLAKE2b-256 fa485c877daece32d0b935b00f65ffd0fa5226b10d32fce1fa82bb22aaaf5a43

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f93e408255ddce525189bf11feaa1be7ee35e55f486c299c97d9caa68d724a5b
MD5 4072cffe1b78e49cc2213188ded36118
BLAKE2b-256 b8de8d637630ac077a88aa4b056df62ed427fde1d4a7c1f79cfb50112226d911

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.1-cp38-cp38-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 Pingdom Monitoring Sentry Error logging StatusPage Status page