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.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.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.0.tar.gz (86.1 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.0-pp311-pypy311_pp73-win_amd64.whl (32.8 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.8.0-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.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (38.1 kB view details)

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

xxhash-3.8.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (29.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxhash-3.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (32.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxhash-3.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl (223.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxhash-3.8.0-cp314-cp314t-musllinux_1_2_s390x.whl (448.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxhash-3.8.0-cp314-cp314t-musllinux_1_2_riscv64.whl (309.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxhash-3.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (250.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp314-cp314t-musllinux_1_2_i686.whl (231.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxhash-3.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl (246.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxhash-3.8.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (319.7 kB view details)

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

xxhash-3.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (226.8 kB view details)

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

xxhash-3.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (482.1 kB view details)

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

xxhash-3.8.0-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.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (274.8 kB view details)

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

xxhash-3.8.0-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.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (32.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxhash-3.8.0-cp314-cp314-win_arm64.whl (30.0 kB view details)

Uploaded CPython 3.14Windows ARM64

xxhash-3.8.0-cp314-cp314-win_amd64.whl (33.4 kB view details)

Uploaded CPython 3.14Windows x86-64

xxhash-3.8.0-cp314-cp314-win32.whl (32.6 kB view details)

Uploaded CPython 3.14Windows x86

xxhash-3.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (217.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxhash-3.8.0-cp314-cp314-musllinux_1_2_s390x.whl (443.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxhash-3.8.0-cp314-cp314-musllinux_1_2_riscv64.whl (300.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxhash-3.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl (240.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp314-cp314-musllinux_1_2_i686.whl (224.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxhash-3.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (238.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxhash-3.8.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (310.4 kB view details)

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

xxhash-3.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.7 kB view details)

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

xxhash-3.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (473.8 kB view details)

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

xxhash-3.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (242.8 kB view details)

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

xxhash-3.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (264.4 kB view details)

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

xxhash-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.4 kB view details)

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

xxhash-3.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (220.5 kB view details)

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

xxhash-3.8.0-cp314-cp314-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxhash-3.8.0-cp314-cp314-macosx_10_15_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxhash-3.8.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (34.6 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxhash-3.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (32.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxhash-3.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (31.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxhash-3.8.0-cp314-cp314-android_24_x86_64.whl (36.5 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxhash-3.8.0-cp313-cp313t-win_arm64.whl (29.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

xxhash-3.8.0-cp313-cp313t-win_amd64.whl (33.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

xxhash-3.8.0-cp313-cp313t-win32.whl (32.3 kB view details)

Uploaded CPython 3.13tWindows x86

xxhash-3.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl (223.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxhash-3.8.0-cp313-cp313t-musllinux_1_2_s390x.whl (448.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxhash-3.8.0-cp313-cp313t-musllinux_1_2_riscv64.whl (309.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxhash-3.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (250.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp313-cp313t-musllinux_1_2_i686.whl (231.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxhash-3.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl (246.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxhash-3.8.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (319.6 kB view details)

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

xxhash-3.8.0-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.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (482.0 kB view details)

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

xxhash-3.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (252.0 kB view details)

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

xxhash-3.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (274.7 kB view details)

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

xxhash-3.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.7 kB view details)

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

xxhash-3.8.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (225.9 kB view details)

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

xxhash-3.8.0-cp313-cp313t-macosx_11_0_arm64.whl (32.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xxhash-3.8.0-cp313-cp313t-macosx_10_13_x86_64.whl (34.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

xxhash-3.8.0-cp313-cp313-win32.whl (31.9 kB view details)

Uploaded CPython 3.13Windows x86

xxhash-3.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (217.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxhash-3.8.0-cp313-cp313-musllinux_1_2_s390x.whl (443.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxhash-3.8.0-cp313-cp313-musllinux_1_2_riscv64.whl (300.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxhash-3.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl (240.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp313-cp313-musllinux_1_2_i686.whl (225.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxhash-3.8.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (310.3 kB view details)

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

xxhash-3.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.5 kB view details)

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

xxhash-3.8.0-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.0-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.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (264.6 kB view details)

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

xxhash-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.2 kB view details)

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

xxhash-3.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (220.5 kB view details)

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

xxhash-3.8.0-cp313-cp313-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxhash-3.8.0-cp313-cp313-macosx_10_13_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxhash-3.8.0-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.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (32.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxhash-3.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (31.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxhash-3.8.0-cp313-cp313-android_21_x86_64.whl (36.5 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxhash-3.8.0-cp313-cp313-android_21_arm64_v8a.whl (38.5 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

xxhash-3.8.0-cp312-cp312-win32.whl (31.9 kB view details)

Uploaded CPython 3.12Windows x86

xxhash-3.8.0-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.0-cp312-cp312-musllinux_1_2_s390x.whl (443.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxhash-3.8.0-cp312-cp312-musllinux_1_2_riscv64.whl (300.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxhash-3.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl (240.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp312-cp312-musllinux_1_2_i686.whl (224.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxhash-3.8.0-cp312-cp312-musllinux_1_2_armv7l.whl (268.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxhash-3.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (238.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxhash-3.8.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (310.2 kB view details)

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

xxhash-3.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.4 kB view details)

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

xxhash-3.8.0-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.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (242.6 kB view details)

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

xxhash-3.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (264.8 kB view details)

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

xxhash-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.1 kB view details)

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

xxhash-3.8.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxhash-3.8.0-cp312-cp312-macosx_10_13_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxhash-3.8.0-cp311-cp311-win_arm64.whl (29.1 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxhash-3.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (216.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxhash-3.8.0-cp311-cp311-musllinux_1_2_s390x.whl (442.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxhash-3.8.0-cp311-cp311-musllinux_1_2_riscv64.whl (300.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxhash-3.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl (239.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp311-cp311-musllinux_1_2_i686.whl (224.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxhash-3.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (237.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxhash-3.8.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (220.0 kB view details)

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

xxhash-3.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (473.1 kB view details)

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

xxhash-3.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (241.3 kB view details)

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

xxhash-3.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (264.4 kB view details)

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

xxhash-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (240.9 kB view details)

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

xxhash-3.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (220.2 kB view details)

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

xxhash-3.8.0-cp311-cp311-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxhash-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxhash-3.8.0-cp310-cp310-win_arm64.whl (29.1 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxhash-3.8.0-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.0-cp310-cp310-musllinux_1_2_s390x.whl (439.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxhash-3.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl (236.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp310-cp310-musllinux_1_2_i686.whl (221.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxhash-3.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (234.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxhash-3.8.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (307.5 kB view details)

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

xxhash-3.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (217.1 kB view details)

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

xxhash-3.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (469.8 kB view details)

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

xxhash-3.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (238.4 kB view details)

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

xxhash-3.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (262.5 kB view details)

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

xxhash-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (237.7 kB view details)

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

xxhash-3.8.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (217.4 kB view details)

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

xxhash-3.8.0-cp310-cp310-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-3.8.0-cp39-cp39-win_arm64.whl (29.1 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

xxhash-3.8.0-cp39-cp39-win32.whl (31.9 kB view details)

Uploaded CPython 3.9Windows x86

xxhash-3.8.0-cp39-cp39-musllinux_1_2_x86_64.whl (213.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxhash-3.8.0-cp39-cp39-musllinux_1_2_riscv64.whl (297.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp39-cp39-musllinux_1_2_i686.whl (221.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxhash-3.8.0-cp39-cp39-musllinux_1_2_armv7l.whl (265.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxhash-3.8.0-cp39-cp39-musllinux_1_2_aarch64.whl (234.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxhash-3.8.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (307.2 kB view details)

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

xxhash-3.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.8 kB view details)

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

xxhash-3.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (469.6 kB view details)

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

xxhash-3.8.0-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.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (262.3 kB view details)

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

xxhash-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (237.4 kB view details)

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

xxhash-3.8.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (217.1 kB view details)

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

xxhash-3.8.0-cp39-cp39-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xxhash-3.8.0-cp38-cp38-win_amd64.whl (32.8 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

xxhash-3.8.0-cp38-cp38-musllinux_1_2_x86_64.whl (214.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

xxhash-3.8.0-cp38-cp38-musllinux_1_2_riscv64.whl (299.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

xxhash-3.8.0-cp38-cp38-musllinux_1_2_ppc64le.whl (237.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

xxhash-3.8.0-cp38-cp38-musllinux_1_2_i686.whl (223.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

xxhash-3.8.0-cp38-cp38-musllinux_1_2_armv7l.whl (266.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

xxhash-3.8.0-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (309.6 kB view details)

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

xxhash-3.8.0-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.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (471.8 kB view details)

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

xxhash-3.8.0-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.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (263.2 kB view details)

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

xxhash-3.8.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (239.5 kB view details)

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

xxhash-3.8.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (219.0 kB view details)

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

xxhash-3.8.0-cp38-cp38-macosx_11_0_arm64.whl (32.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

xxhash-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxhash-3.8.0.tar.gz
  • Upload date:
  • Size: 86.1 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.0.tar.gz
Algorithm Hash digest
SHA256 d72b2204f37840b0f16f34192c09b994b97bd25823d723d47a1eddfacf06eb43
MD5 9cecc612501974143fac11f985098c43
BLAKE2b-256 78ed07e560876a4458987511461187b285071f53cde49dd5b25cd8c51091522b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7f4eecf800275e62b6bcb41e65f361f2277cc886c2bff4e299959d701e5fcf93
MD5 ded09626e1137b98e19e4f64b13bb510
BLAKE2b-256 daaa95d36393bf732df516a2dcf4fd7e9e851bc033a5970e30774b972137f4da

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 591d5eb256abf59438800ace2730ac33f77bc6ab8c3623fab1ea24d9d8b28f3a
MD5 2f915f205e60a5d2444d73b60d87f8a9
BLAKE2b-256 7da57b6e961a03ee713cbdbaa3d2cf3ddd33453a4d4112bbde58f2f607ab64d2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68594a54be2eb5992d9b0d0a0ec7c32a7a8e930f06d6cb951d69708055680994
MD5 ea487651f3916c7414c3fd7f7fb32ffd
BLAKE2b-256 3f5d652c47481053fabc33ea229540bd330a45f68d7a5277f45e6cf879c29965

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1ec9afdd53ac5f4fd1d8918807ba6c35ba62269086af794884b9f168a73331ea
MD5 3390ea5538498bd1fb162bcb9ab48ecb
BLAKE2b-256 db51e7844a65c62d6d78747e4d149508d65a3df6fb65d72322c2526789e9f600

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec6666a5311beae3f6cb5f2fd28c2b77e2df32702c8206f45c786a6ef81b3751
MD5 6d9bc5365126438e870d9d5067eef90f
BLAKE2b-256 426de98f9dd62c89e8895e4f3b525b6dbc3efcf27e2b99800e51388c59eb96dd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ba14843f20df2dce6ff6684411a56ae53da44336546c55f8947e70aebb8cdd21
MD5 beec168333f01635e9cb2b1d54ba2a3c
BLAKE2b-256 96849bb3cc67475ac7678476b30eed2f1140431f06386d637534194037c0624f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 73cecd431b4f572d38fcf1a7fe85b30eb987778ef9e7a70bc9ffcf2d64810e6f
MD5 06cc59002c46b7934ff450b9bc4aece9
BLAKE2b-256 f6eb21a96e218375bd8b6ecd6d07cf60c8ff1a046e93cdedc3cf7bc3309edf7b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 61069b260fff84116235bb93845f319284dc6b42527c215af59264f4c2ee3468
MD5 5a9e23576a9f9933692530cd69b62a79
BLAKE2b-256 317ce413bc75121d9628bf023b2ed251411ca3a447cf00cd9aa3438ab17f6c67

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d9a61f23b999baeb84102aba767b1b3e94958eab94e6c11b08927e7dc4200795
MD5 995f8dd59c4f408a9a4197f92fac5d54
BLAKE2b-256 a93892916e008a84c1f1a9aef82e4363cdc478a722ff69e59c6afbf93d3d1fda

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57ec0ba5299a9a7df376063c139f5826ff0c89b438703939af3d252c31ca96a4
MD5 9dff807c6aaeb5e3d9d6144322704ed5
BLAKE2b-256 129fc9627daa052be39a932d0e17c6bf6a9041d2cde3afacbded9196acf70261

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3b6dfa83096cb1e54d082acebaf67f0c42667c56dc48ba536a76cac08d46391e
MD5 8e2f3d91cf9b8d0189bace58e15a5d50
BLAKE2b-256 69c460e6d18a0e131c7af622374af9deede15d3c47d8e5e7221933481b57b319

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4788a470f946df34383abc6cd345088c13f897a5ee580c4cdd12b1d32ad218ef
MD5 64c0ca0a8716a0d40b5908356840f847
BLAKE2b-256 c147b0b62caa3caee58ab9de8969f66aef1c3729886f3ff60e173fda3f2762be

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1db4f27835a450c7e729bc9330c6e702113711cea1f873d646e3a31fe96a9732
MD5 5b01258795fac7ce81dce8759e108673
BLAKE2b-256 4d51835706a36cdc00e5b638fba9b22218b3d40d23a7677c923feca8a3f55b98

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c61b5a0f21ace5e886f177cce43826d85a7c84e35a9e17cb6d1b4ac0b7a7d833
MD5 95aad32f90df3d42a8b33332ca3a55ca
BLAKE2b-256 d658f3ce1bc3bb3971191f6521273ddae98d3c610bcefbbed5327c3b3627c12f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1da5db0863400eade7c5a31969754d1392189f26b4105f6631da2c6c7ea3bccc
MD5 a0541dc423dc730b13aa7ea34a23424f
BLAKE2b-256 fe732663dbf4c09386a9dcc8a94d7a14b4609ed4bad8180ced5b848e60a9b660

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b1109ae238e932d8482f9cb568b56a405cc73bc7a36b837844087f1298dd218
MD5 16a6db264a0293d997f8ec812d3cd17e
BLAKE2b-256 4f6f36e0a27dd27ffa3f7b521650cbcd52a00fb86b71343ffadb642374e8263c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 96c6bca2486cdc58b125966817a92a6abe6ef1fab86b2f8798a7e93488782540
MD5 240e169b35bda078e4e6496ab5d015e1
BLAKE2b-256 2937ba051d8f0380d3cf845b23ba058a17d32025846463eb6bf885887fc8effe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14973fbdee136588e57447401b521f466a42faca41eecdf35123c73103512ca8
MD5 5ee0117481ac16bb8e57bee6ff2332a1
BLAKE2b-256 e563b8147633e32f98ef2b4bb0dfca82f0f63e2b02ff179f20664af64c4216a7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 680d70896a61fc920cc717a0a8fe8a9fb5858c563184666e31874caa54a16d9e
MD5 39d60bf0727b85fe0a365bdd9387db32
BLAKE2b-256 b224de756d55547953494eb6775aea92e258035647b3ecb8547618cd549001e1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 40f061aa5379eba249e9367b179515571e632be6d1b6f55ac139e6fe3d08463c
MD5 4f19e93f0d391579bea887f764894218
BLAKE2b-256 77f209b1231cad17c314e51664c4a004c919108ec59aba10f9a28fa061e7b8be

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3b3bf59ea94b2a23b0f992769804ab9401d5cdcd9df0062fe2cd78a491ae8851
MD5 3e054478de0ab66e6ed0dab99fb6b04e
BLAKE2b-256 d00a755eeb1882634983b24e6375a95ed233228dc48f0ef12655388bf3c7eeaf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3748d71202bf3f279e77cb8b273b6d0f29d1bcaefb6ce6cb03b95f358863ba37
MD5 2c52798036e3fbe67b8cc234bac18f46
BLAKE2b-256 7c782b6d12da9cf572c84d93b88ecbf9bf6539a7c5219bde128b214396b97c8b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b471744912d1ce5dd6d3975b7525e77518359ebf3aa1bd7d501e199f5ae488ea
MD5 4dd0c3d71c118c83d3956ffa9b4be9cd
BLAKE2b-256 9608f83efabd350a50c31c851b88891e318a6f07bdbf40a43d0f7bb6cedade7f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eec30461a7b457611098ba7ab09363e36c8b2645b4687fb6f3d405bb646e3410
MD5 fd03bc92582d05aa4365b64add2d9159
BLAKE2b-256 1b14175c573ae4fac48bf21a82e5b9ceec75d64c520c51ca08de3105de539438

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 02ed856a765cb6e006168595d9455ac8c3c4d60cc04cd47a158a1ac677d68f0f
MD5 ae25a38ef177705b3e60c3319442a6ec
BLAKE2b-256 118d51ad2f9f784121c8057ef1ba36362f58d4595cbcad16322941f5b73eb53d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 30.0 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ecef1e65b4715c7326002073763fe94cc44c756a0698508abb915ab3d6be6e3d
MD5 bae4342b89e26f5c81e3427175414386
BLAKE2b-256 898f1b14471f617bc96edbb9566099a162d918a981381c398114726cc600b76c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 33.4 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4fbfcb7dd307e23189a71050f6e27746926590330f37d5fd2ffcb8ea78de1f42
MD5 23bcf65b897213b3bde202b1e94d992a
BLAKE2b-256 d77ad455cb83d5e3c94046234294fb5dbbe5da600d1bbdf76b9527756920cce9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 32.6 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 52f8c7c9833d947e60df830671f6eca810d7c667051243985a561c79f1a3d545
MD5 bf88af2d09eac085caab120c7337d159
BLAKE2b-256 44da1c1e078ac290afff304a541a2a60965beb369ad65b4f30ec93ea1e0b7210

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 076d8a4fb290af952826922aa42a46bfc64caa31662ce4e2925a445d0e6ce57f
MD5 d2fb01df0c692faf3c763c6db582c801
BLAKE2b-256 452ea3e3a779c5e4789daf975e05cc1c7f11bae724a03855120029d4592c8e63

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 87626acdd6e2d762c588a4ffe94258c5ef34fb6049a4a3b25019bdb7f9267a9b
MD5 8478bae54d99e73b966420427ad03b45
BLAKE2b-256 5f1bf43ec36e8c6a20c77be0bcca23f0b133ed8a0312681500d1676eebd71924

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c571b03d59e339b010dc84f15a6f1cff80212f3a3116c2a71e2303c95065b1f6
MD5 256f171b0483f0b5bd04dadc0042bb0c
BLAKE2b-256 76f709679b00e192b741b65c230440c4f7e6df3251a9ad427a518ddf262ec71a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4bc74eedb0dd5827b3be748bacf9fdb50004037a3e16c7ddb5defae2682cef71
MD5 b1d8334c933c926334c8d9be1af9d4bc
BLAKE2b-256 d9d5cbc4e5b2bee10c94cba05b5bb2b8033e7ef44ae742583fdafcd9188e33ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de2836e0329c01555957a603dcd113c337c577081153d691c12a51c5be3282b0
MD5 549c717e76c535cba153967b5baf6e84
BLAKE2b-256 bdc0080c1a92972667e183c04b03f33c877f8ec61cfa3570e61731077286648d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d5a888a5ef997cb35f1aad346eb861cd87ecfe24f5e25d5aa4c9fd1bd3950c2
MD5 e139f18fc5b6e4c37036d3b7282380d0
BLAKE2b-256 b8d892daf66c1966c84da5c97a06ced1480208d3a3bd465cb0630565ec00d1b9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b88a3fe28277811e599efa6e1c96abce8a77d60dd79c94da7a9b5c377c172b7b
MD5 f7c942117d28cba5aaea5edf521f0038
BLAKE2b-256 83f51147e03c0553ed22bbae9ce47503c37ee0c5f95592aae10f339c25f61de9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d209373fcb66138c652cf843385ee60866e50158a7869bbbf8b322d9a822b765
MD5 cdd46bf88e3e7503aeab72a0033a7ff1
BLAKE2b-256 bb499fe4ed5aac6f38629cc83b34f84748b83ad8295a578ec6a49d8bf896cafb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4d12a04d7ffc0359f0eadc4535a53cab113044c8d2f262c7e9a56950a5ed50e
MD5 b0743a24e190e1113e35cc38f735942f
BLAKE2b-256 ddda50f764ec6a93d3961fce294567e41bfca0e66d168deed354a3dc90ebeba6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1a6cf81bc699d3a5ebfcf2fdb2a7bd2e096708d7de193f6f322944a02ba00953
MD5 2c8bd3c6314d532b117952c980a4bf5f
BLAKE2b-256 aaa6edda651cfa0ba8e921791e93468fae655b63894d89730fcbfe46704f0d0a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7f5ccdd2deb5dce31201cc0eec94388cce97e681429073db50903fab0a0a8a0d
MD5 efddf6efd55e3eed605edff670889743
BLAKE2b-256 9577400a281683fd39c54e2ac497fa67bdf886baaadb8c0ba58f7e1ea1d7692e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 415a8d06ac9bea36b1e06b603a347e0f62401042a97d7bfccec8ae2da12ad784
MD5 88261a4d5ad81fe757ecd0d1938934fc
BLAKE2b-256 92d18ce471f8d6752384f972fd5f6363f2e8d8b867a89fbd724c6dbd91d2bb98

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4f3c96e06bdb122e8cc84f5c7088579f3102b828efd62e9dc964a9d17c7b89e
MD5 2b973127fe6d3d9d5ce5b635d7d541a3
BLAKE2b-256 2c1c4a1639efec16416695d6c7bc6b224d3f607e0b8cbe2409fa81081a849d1c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ceb702bc8e56b7f1f1413d42aa294045b9a0e4c9888e07edc5cd153e8c4c948f
MD5 982491fdebe27eb88a1abb4ec414465b
BLAKE2b-256 eda2fba440739fa5f86d2c28738c202e88d3dd063290c8bbb20e183c5334456a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b49d7e09b211a1ad658dbe2dbf6561eb92f2e6926bd1101e2d023178371f2d6f
MD5 eb6a8a2a6f7f4d4605e6c81239e66d2f
BLAKE2b-256 64b6e88521f5736c181b89bfb7ab756f0ca658a8a1ecece7277b75e167717614

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7f75fd1c6a5028f345cd4a8c52f4774d2e5b7809fa58111c60a5502b528914a4
MD5 62b6d06299f8a420e3f6bc289bf26017
BLAKE2b-256 b35b2bf3c9e61c7cf8f53bce937af45e22b72bb1f224d5afb20352beba0d628d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 e232c82466babc13e956d53aa84d0149660ed6886bc195248bb4d03bf2eca301
MD5 0fe093c032a48a6c406af7afed4757fe
BLAKE2b-256 2e2fb332c7bede6a676343f2c9c8dea233c8c82753eaeda6f7a2c321d8c58ca3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 aa699e0253ceffecf41cae858d0a11f2439d6874a0890b556387bffe11dc1c08
MD5 f11bba40f8dd5d86ba0c0918c40eb2d9
BLAKE2b-256 55d5d0f4dbe7b4d9ce0125f16e45ec0be5e04f6a172edb4e2fa551c4f2eb5d7a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 953f29b22c04b123cf3cd2e08bccde3a73184aeda5a1038e0054cb3355644120
MD5 9bff919898e081e2622f2257a1594613
BLAKE2b-256 cc0e553eab001f1e274da73da074968cdc8be8cacfb318937ab9871b8e1909cb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 36.5 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.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 dad744d1613cbfddb844dad93adbffbd51c3e9f53ceea9568f7c3b94bedc19a4
MD5 0ef2a182162e0db428df3afea008db6e
BLAKE2b-256 d24dd991ff77bc489c2231025e64e570502156d573c7bff69c917589cc307089

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 557e2a7cc0b6a634cf9c8e5c975d96b7da796fdeb1824569d760cf0f25b6f33f
MD5 85f0b8f5bab3997465e6aca31a490973
BLAKE2b-256 e5efa09907aa28bdcdf6810d5c26656b154c60c0f06bb8db8442a1192d9c227a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: xxhash-3.8.0-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 29.3 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.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 4bbacf2e938526969f8ab3334d4ac3da14ea059e1dfd1339a92f9091467e750f
MD5 922a69a04b0b7d8ba90cc76727e8fed3
BLAKE2b-256 e0d852038e4fa5baf4f00654a225516168d02908edfec7ca104fbefc58af394f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.8.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 33.2 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.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0643b7d9f598f6da6f1f6b899f4358250d0fb853242e2d712cbde27bf5a99d29
MD5 03b85550fbb6ad369363d378aac28694
BLAKE2b-256 6cdb2240b0638161637b2f310231748a7a6a06c79fb43a3adb34c96f359762bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.8.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 32.3 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.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 b21db84df7b9d54d9e4195a964243c1b32d745c6fbc0cfcfffee1d4bd297196a
MD5 b18c35637df57c3354ba19312ddce959
BLAKE2b-256 6fc7143410d026a6e0d86dc69037ec2a3b8db810a54e7f443b340ac17612be2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7ece11a132325353890a144c30119073617a1299c593ca29b96c315b07e1edd
MD5 b81c52f5f3040e11b4cc3f02badb5d52
BLAKE2b-256 599a3d244b2acf6bbd86a363817ee09084b4684e8e11840663e19869e9e0d952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2b77c301b644cd9b4d0749a3291081ec2048a6bef7fe0487c993bbba3efb9ce0
MD5 1831817a4224b85924b3eed3bb0fae4e
BLAKE2b-256 180b13646b348c07679c818791ab2d35415db5cb20f3bc77daaa255909a401b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ec5eb3d28fbb9802c6d2526f772133a06c91d6f03756fcc67c834b642ffdd51d
MD5 bcd245c009f2ebb1498a2391f71fdb37
BLAKE2b-256 7a6a168ca46a4679c32aae9246caa1fddf35981d6304487e45e992b3d4530324

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 43fc9aaba10ab4267c90793601f60d35c3c9caa1544eceb483618a71ad9ce7da
MD5 f98d61230b94c59cdd472ced0d814f16
BLAKE2b-256 209260a868cd34851746d0b0d95dced0f42867c7c00606f6e5dba85b70b232ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0dbaa73df10414ea1e41b98691a9d8241d4c47ad8d02c726587a3cda05278e53
MD5 57df042b945f47ccf7890dfd3ab9b9f8
BLAKE2b-256 c6b4a9db84c9458fc8f53eaf0051377d1e9eecd9f330fb1225640027417a309d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8414a66a7524596d841cad5dc1adab6ce76848db5ab2b83db911fbdab1417af
MD5 66a4b8513d4648af9c9f2984b732d728
BLAKE2b-256 ee15741b947ae3c768e82018c46846f8616f6aa9b5042649f318a1a6897defe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82f0102a2a3760287b7cd7f9e0a30edd4c3b18762ed1a242208d43c8e2bcf30b
MD5 6a98e64dcf7080a10f23711d0a396d08
BLAKE2b-256 384642e349e2d3017b2688f4cb301742c37c438e77963e3fef711edce2fc5c65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c2853dea1e30ed00ca87dd87d76da5da063d302b823b3fb80ccd18421de0f251
MD5 8e8c9288f089ec6b764bae8bf0782152
BLAKE2b-256 760c90aba4708a37fe752b324a7cbf10058eaa33e892cdd62751ff17a5137b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-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.0-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.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d49465646b1a5e3b1729c5f636e05676a2fb52e203e3b22a5411c416c4c5302
MD5 059fea7a1c2635b2678ad218b201d307
BLAKE2b-256 a35bba34099b5278097ec9c68c0b740719813553bfd11ca17e7353de6d2a41e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 22c0b17da2f9fea0f8836538512249871b359141616bad44c58d238b5f011f40
MD5 6ecf1641e7c2c6a71c0842c2489375c6
BLAKE2b-256 f773fab69a2e5b6353dde643209fe9b6adf4fbd64c888e531deffc476bfb2635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6a0127688d116ec0c225e7e1f744e3f206de2b8822ffeb31a9ab5cc6384f92c5
MD5 7f1d9c4edb030a9b11e95650fbeec575
BLAKE2b-256 c1f3a8bb98d3307c67e88be9642dff52854c3de3f488f95989b60ff69c8dcc42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5e521368ed79ae6c4d31e1e417726643c49d7d6e286f4fdabf9a8330ed8a8ff7
MD5 e43ab2bb76bea815b27d73e8ff0d0d81
BLAKE2b-256 c06c3c0c917331ca3c71f826cedce2127f230624e2b49b992472dd5e9e72101c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aafc3eab99c50508852e34307e9565933bf128cad084cac7d2471b7ab1743de0
MD5 9e8c58854e637fc7ce1a77845d90f724
BLAKE2b-256 acc2434579ef9235123b6c9bfa89c5614e0001e988613b91557b24aa326d9faa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ff19d016a41c90d1f519005887191896b6da1274e1d5d48b347e17eb798ffc5a
MD5 2694860e73b8551b08642e82e3f93ae7
BLAKE2b-256 a6abf424359c91c55f564fbbe4e454a126eb522471109f67376f20ad19c5e663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e0dbc510cff94c5efbcc2b82c28b41519fad09b5b1f9f3d99c63e3940e49a0
MD5 031bfee31c25f1e1bfee4bf9cb9899f7
BLAKE2b-256 bb3bf5a368e3273440b3ea58fbd3f0b08c19f552b25ca59f43f5732ca96d2126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 efcacb644a915f010dc477447b045e5dcde1afaa40d16b2f0f8e7cd99c9e1635
MD5 611788e26d35c79d1050fe157ad11e41
BLAKE2b-256 b9b881d17a993b9a4750ba426ce966421681bb4b8e82a460cd346756491b8cc2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9fc8453642c1c6d38b4fbac8901c2452ce1fa88b27f003bfee6703cbfae9bd63
MD5 fac978febbb4d0c2a651e09c7675c700
BLAKE2b-256 d5c82fe61edb6144183cf094035a8c5354c65a073127acf6379655ed1e705b70

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7c92427a56a12f4d5c7bb26dbb9e9a4658c313ecb6c2f1dca349902e3822df07
MD5 3bb083d41cb12261e30da98e412d869c
BLAKE2b-256 a1422bd70e4eec25dc5990652979d708d4d7c999793d7d5af5d0e48ab4374dc1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 31.9 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6d1d6179e26830c6690fac63f76d372f69714b977e12ca9c42188a60f51c59f5
MD5 015661f58f968bae90d83d6327896574
BLAKE2b-256 5743b45a52f795812cb769b6ac159e69b605d18b1c067749e63dcac159e90064

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfb5411af3b77c75e99db100aa15c5ba623c85d72c565e4d7a0ed1a986ff766e
MD5 924f8ef1d8a62c8b994611bac89fd6fd
BLAKE2b-256 4f1bc671272fe28f70574e3c574d58465f26460154bcc68876121872afa1c14d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 196fc132683d9311a0bdce8388ee52bfa07fdc1987cc428a27956e47ccd7b50d
MD5 2db95cac8802fe407278b7baf7f34cc8
BLAKE2b-256 df24c873e41a3c00dacc385c8ff08c007723f6a528922c1cea7fd9684e86dae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bb043da412e478e7b1db3407051124b85b133803794d3809ad6d92870b304fc7
MD5 d301c90ab132e23cedeab77c3085c680
BLAKE2b-256 47a5ebd43eeb1af1dd8f0201943688b20958e99d3f6eb36481fb8c37b55ef139

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7ed37b0c95d8fb3fbaad5e13cc0a9727eb8739d1d54b2adef28108c250cada3a
MD5 588e6d2fbdec198c3d3b4bae362e2ccf
BLAKE2b-256 34c803dceb86a8128858ac105bd6e282d62b3db6fd421a79bd8a9f6b8cdc47a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3118600a3102d4707dc1c485dbc3acbbbf37819069ad3e7854e77b923745d76b
MD5 da47dcada1052ee43c92ffea4d3e0bba
BLAKE2b-256 38c93369b497cd1f926b930c52fd2400606f177790d887b49f9e86bddcc24562

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07dd44d992ebd456752bc25b1c42cd172d94bd8cb24049300449ad0716081c3a
MD5 99055f19e65b9c3873406305f1655fe6
BLAKE2b-256 e59587f8baf41f63130f3637104b7a610f82b20106332fc6e289c8dbf7955d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e30e5c057f483c3c53a11b53eba091a737cb19dfead36c8b23bf5beb4a169cd
MD5 dd1590aab1d690f12e961d88d576c345
BLAKE2b-256 67e643e673411249dd63f6cd974523a1b32fad75cf5453e363bc8f44af215fb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0cd25bbbab37d898f6e5a90905ce6ae2c1f8bd6668c07cef406fb3e8c8c570dd
MD5 3d3fc455a0d16b83ba9b039aa9e94ce7
BLAKE2b-256 22b17ac129b74981c07f1ff9c649f204465e86f83f9f29b2ebdc70d91514c365

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97d7bd715ea5050b6c9638b52c62adf3055b648ef6eee6892a4cd9697b530191
MD5 2491c12b7c64c13caadb48be69023426
BLAKE2b-256 25f5a680d48dddab37ab2fd9189ca03f775e29e3627122e30790816d7eb365af

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cf5427602dda15d8ce3c6d870d29bf07d43975f59c9d6d3f7f6f93a901b28b12
MD5 f0920e676cf4d75669fc8c7cb5286a7f
BLAKE2b-256 d4faddbee4ff1542c2e88e72269a5a6bd18c3f26a80c2514e0918f5d1f3e9ec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9a8d08707b4100ebce598fc59fadf04b42d79b855818d6994f8f0fffd1df8edb
MD5 7a9e121e3fa2adb5e59f7934cf3ec1e3
BLAKE2b-256 bf3ef8ca782bb34f99693faab70a7989bcc84f62ffe93c9a4cca464a33507a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cebbb322df4d97d8ef2704f49ed2f6f21f6702fafa0dc0c2a6ae70e904205689
MD5 73d8873c05b16d6fe2609985d86f3374
BLAKE2b-256 095aaeaf35143a6f3d44db73298e861405bdd9c9dacaedfc369cb43d9fd65282

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf8ff8e12416c9fa05b43c7509b9332d6ffc4090413c4e7a1dee8599763b6d59
MD5 a8cca612cdfb9dc58440038443e4aeb7
BLAKE2b-256 80c3d141bfdeca785c8c680abf867d4b52a5e64a55d90df242c3141a3e58c4b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a6dee3952c2b6e82e7f1dbc5dbc6167f9c84126851def7926e32827c2816169c
MD5 07e1397fa46edcc9ff6249393f13feff
BLAKE2b-256 f8a3294171b67dfe770e1293edcf2a3f7e41302cdb8aefb258585312191b3ffe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ffbde09743ebaf8957b8426948fbe85eab5e5de0d29eec407fcff5a2812a3cc
MD5 8ab5ae353da7b474c0cad0a7f0abe599
BLAKE2b-256 7080c053dc51af5c942229689a0e9cb66fdc999bbd840f645e761f5ab73cbb17

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6a1a9e845bd3bbc57d9356819e0d198fe23282e0576b398a6282a0f8fdc75aef
MD5 6110890a15a32a664fee69cb6232c9a4
BLAKE2b-256 69f5e12397e3f2c4917b6572e103a3277cd27cc56330e304bba61d195d7e5224

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 084312171a9798dea85e924b2674f5e1a44933050a1ea1cb1c6b1364e004c66c
MD5 a70311b97561e7b642342b70d3355d2d
BLAKE2b-256 61a4e53d162c74a8a2950dc063969914387b0680da4c7c20ad17744ec03a3b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 38b0cb0ab7f283413b7cace2bf710d7cf8f702ea82cbc683908691d52028a89b
MD5 d867b980c0d5f9d0484cd6ecdc13f953
BLAKE2b-256 56b89fae0399281095f8aca1f32b21947b3c3c75ad6021b255c5c6e4b11d3866

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 5b00b82f1be708da9404fefd658cf5cf3be5ee3be2aae4bfe3b874255badd342
MD5 13c301691607deb2d0bf1faec83f8ab7
BLAKE2b-256 32ff66fed439d78c5a09a1491a85af29bf8923b516530116731a9ac6b14dee2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp313-cp313-android_21_x86_64.whl.

File metadata

  • Download URL: xxhash-3.8.0-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 36.5 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.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 a5e6497cefcb2d67f1745c66df9718a99112583af6cc2b70da0312a2eb939f1e
MD5 b097fa4bef7f9e3468dddb5408479255
BLAKE2b-256 1cd97d5d6af4876c6481f2e0acb2dda64dd5209574bf7ba1ad4f6af7a1f8d473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 36434c1d1b0a4729df1fa26ab11bffed1ba52666c0beb605c98a995b470cd143
MD5 c0c1f76edcef5d1a7693bd8fb3ff9e23
BLAKE2b-256 ec1f96f43c5c7c7c4d44721f8d2e5d74698c667a30283c4b10a7e50a56804ee3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 208e6a8b93426896d803224e9fabe26f8b9c651e8381a80b1fa31812faa091e3
MD5 c4ea03f51f7ce6512dbd8f13a6cc5544
BLAKE2b-256 93b5aeda4e79f962c8d58ec60cb20a5abfe91c9f7d62e626f69f6659bc0bd0c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3bc2a09b98b8f85c75208cd2b2d2aecf40c77ecb2d72f6bf9757db51a98d3499
MD5 e32e4b5c103cc444a65c4a9f0014e402
BLAKE2b-256 4f04a6c182dc566c88e8d1a497d22cc4ffdcfcc0a9fa80325efa6cd4b9002c54

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 31.9 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0b0836dee6022e22ba516ebfa8f76c6e4bda08d6c166c553e40867bac89e4a54
MD5 14e143f0aed008317e5bdab3a53f1fbe
BLAKE2b-256 44ae128ea5794387ca54bb4084566db20dbdfc9c21cb17b67d3fcb403927b5ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba73801c87d44fa37b2a5feab3004f0a654506027bf032ceb154d94bb74ea772
MD5 35f792c2120fec12d6d041135f97cb44
BLAKE2b-256 d5e5ed3930f5dc90f4b1bab5ac3be099e8b2e81c1262d85e4adb5f2758e30d23

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1da00075f1605794298878cb587f7533329693e2a0c45bbd25d6353644add675
MD5 544f0978cf49b5000b0c7d088dc99cb9
BLAKE2b-256 8071a4b4122afb2d17ad69e0922cfeddb5ad5c25b02f37eed3dd3819d42e5f55

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2fd4b60e8d9fc3923f39079f185b3425e6d76636fcb66d82a33dd7eba7c30f2f
MD5 f544730eb1ac5bd3fdb95fcdde59c790
BLAKE2b-256 3f89fc682f93e54e486fc338b26a7d6d0d5cb0ab366269273c2608ac62b51afb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4931ea93840f750a908efebaf23c71004feacc1a4649ef601b96d400a505c9a9
MD5 011ea83a5ea28e2037b3c1190905c577
BLAKE2b-256 639eb880f9ed61b73492e24bb962d76aeb63f18ccb895f0edfb52e20d45ed6f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 512eb937c9457e6057e230e005c4709dd2ab63a5989f854d69f31db905750a62
MD5 63f9d908413901b987e58202e3aa48f0
BLAKE2b-256 5418fb2ad593572a33d1b6864b33047b8ca7269273a3c56107b5fd33e0b9c8fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 551fda694938be910529452a89175137c58b4739e41fadff3c047e24b1d74a3b
MD5 3749227bbb82c240e2967d2eea24c6d3
BLAKE2b-256 d30d588499f4d7cd064864ada7adfb9e8785f88a988f1332ed4c1be73d249c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3afa1422a32c7c8e79ad5121dc21eaa5cee9e9e67bffca3f15d15d220d371908
MD5 36f6363c6b17f62fd7ba749613eb2157
BLAKE2b-256 9d4819e40320044dc7051e8446505f18557d5661853b87a8770ad399325bb3c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 55ce59f9af37ac861947b43ea3ce7b294b5de77a1234b558d0f07ffad0197624
MD5 119a38e4c9076a1c06a4293e3ca29e22
BLAKE2b-256 1471efa37bc3e91e1c801972bcef99eab877fcbd17ec10aca16c550ee2951107

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2c94f5a9a775f36cc522fa2a7e8e2cec512e252d2ac056759f753dc68a79ffc
MD5 02a699068ee87044298f9aa402fe898b
BLAKE2b-256 9b5f980fda82620a07d80026b4df371cbca12fca0fd94d7087c4ec5d898da76f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f3786a9beb9a3b76241cb7db5f5388b460682c12204236389e3221963fc626a6
MD5 02a933230eb5c3210b97311f061c3382
BLAKE2b-256 a0da7d237278dfa1c48722c31010c84a328a317b8885429c8cb6ae4a8fa3e3db

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d761f983a315630eff18c2fec7360c6b6946f82748026e779336eb8141ef3eba
MD5 1d291cf483f7ad4ebcb24ef3f6bd4dbd
BLAKE2b-256 25497ea1f128d2fe948ed679020f97a0896cdc6c975da5cc69b53a4a9c4a5def

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 353953ea18f5c3fbdd13936fb536aacfb47d5bc06eef0919b1a355df61f7cc31
MD5 c2dd4c9b246928bd4fe9f682f33d2f7b
BLAKE2b-256 bff91ac88f02e7df7898541490260b21f2b7f7bd2b233038a0cbd3a3b1bffdc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54e80e803cb34c8a1d278b491e543af40a588d288589c3e6becc991d5328b46b
MD5 96d44642d6b5a9c0ef884f68f6a54e05
BLAKE2b-256 2dde71484ce0dab2fa4a475705d1ebc37a17ff02d40e5df6767b3255cc53120e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7338ad13f2b273a1ef0ea97b2db0a059fdb3a1a29298bfa145937c0e4152d341
MD5 6567017c4a60caef26b25f76f2f066a8
BLAKE2b-256 0159688bbae31e4e2d6d6eb92acbd3837c0e44ff8c7d435e6da922844ff6efda

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31904979198e913239cb61b49f5b849696aeb3b03340da815d1491ec74dcc602
MD5 f86b62ab720b7d533b9da9a3dbb2dd10
BLAKE2b-256 43e409eea3e1bba6a59d64599cb8fba39f2a0872d06e85420eae989a4da61a9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fc4bd14f873cd0b420f6f1ff5b5cd0dbfeb05b044a11bb9345bcbbf9749636e3
MD5 f53c6c0c4c45bf5d66af59187d8f3856
BLAKE2b-256 172e4b7c3ab28b7a54ac17eae7e02471c49609d6fc5900856a455feeb847a2a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 29.1 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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 35c5d843bb7ac1dfdb125ef4181fe4c2e01c2275856e6b699de89e9eb5c69c8d
MD5 64e01de729e0e499862f500bdeefb491
BLAKE2b-256 e187d76bef62a288a1f2441404b33cb757047cf555cd5956b36ed718a38b81e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43705f917b8b817d6994851bf3725b98b4c95e64186404d9a6dbc1acf12fd140
MD5 15c3e2ce52353d7857ad0a8281d8f576
BLAKE2b-256 dd53a07ad4dbdc32118b3bd190f5d54ee2ed28c1a0a994b52ae493435cfb4de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 41a30a1d0ba978238742a374875c15979e0faed0a65294f3ff4d9410057ee8b6
MD5 cc836604614dcab8d81182f54baa8ff6
BLAKE2b-256 3c162eb382a78f12e3fde1c735b57607498c0efe897e8859484d69d9446bba55

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 715c611582004e75010517b919776c5dbc00aae03054dc9fd72484a23fd1862f
MD5 d15791e80a595f1934c8140076a8e3f5
BLAKE2b-256 7586054032919fc73b72917054cf731be76be3a984e8f53b1d0ba6f22fb9cffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9c71e3755a8320d29c351126d550930349be22b44bac1a559caf12ab78b53e9f
MD5 28c9fdf5af0381fdd145ba3e806eb700
BLAKE2b-256 e8a8a474f136610594b464ad813f6badf00b931211a69fc86542c21daf5d2a4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5e7a3e3bbe3a56bff70acc9b72576670e793b0184de3d1b9cda2bf697d17f630
MD5 66a087e172c1cd0b790ae5816531ac79
BLAKE2b-256 2d83dd599670efd161d31fba4149e20694f140ae5707068d38ac480dac1c8cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14ebc1559e8a9a481d0d5506b87678942fcdfa794d4aa55cdd2a0fb175d4245a
MD5 a57fb88ccde985d348a7e85094750b48
BLAKE2b-256 f3f6179847064c92a07bba7381e9cd7132c380a17aad31e176a2d6f6e73eed48

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fba3d08c246201a1a0a6cece53a0b3b0890fc16adbe1edb245fcfcbf4eb0ce2
MD5 290e4ec3b88a83b81d46f7780d971a3a
BLAKE2b-256 dbea3489cde91ccd91230efbb2351a6d9358e8a63a9954cb8f071fa9c32a2558

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 281897e5c516769694c999f5c50fd1e9acb27acbff187282a8ac77c38b6a9be5
MD5 df4c477933a204253b9354230b8d2355
BLAKE2b-256 995d6963ee0c245a69d9c4a2583da603915f9288f1df23700a0ec705239ef014

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d6dbb976d6e3b3be51bad16b13de7f4980e6aebd0aa51c5a14dfcc0fedd495e
MD5 ff1dd8d4b4099dce26e44805d174cba5
BLAKE2b-256 bcdda20949401cfb9c940ef858d93b41ded90382ff4be0f7e8a5249edd95ff18

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9f17e09b035f2a0139536da53deb392b62ee259dc2a2189be12b06a7dd50489b
MD5 713d359d5b56daf72414db3e7e58192e
BLAKE2b-256 5bcca0d92359d499db55f83fe6de13188125515319b968bd627b591a0984c454

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e4208fb85c950ddf7118b040bca15179c3bf9b7eb8bebe5e6ef067fc8af16a7
MD5 38d75466b03d706ad6b7c2b767e1196d
BLAKE2b-256 6fd4734dd8e6eaa03b0c4e3044127755221ebf153260a3c5de0382430486fcaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b32e50dd85f0b67b2b95eb59cd3242052f6b27b70e9e73b27629686c592e3ea3
MD5 e862ba8557b590654b5856e9099cfec7
BLAKE2b-256 7e705d8c9b65ae05725c2ea8f331705e1382fc4817911eb159450aecb2905c6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1a54ad5a2a96cdf1ee7a935d38bc63daa6095530095a916f644f1ab76604ced5
MD5 8d9c0ffbd3397196bd4d164fb78bd0b0
BLAKE2b-256 2325056d30ed2e500d0a993e4589da8cdbe50cbf4809c1b1ac84f6f9559d99ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5875d99d3540367d43779551dd22c813420b84a103e418d791095b9808fdca57
MD5 8d185d42bfdadef6e791914e969ccef0
BLAKE2b-256 daee2415c55a17f525bcfa38b5b51d69381d6485b1c320eff373b263403b5e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21f6797afdc7abb0ffae059a0d1619c84a5368115bc0abd48f9803ab56a5d35e
MD5 d9bfc2db5b46e2cdab9bdade05bfa159
BLAKE2b-256 a0b28696a2008d59c3dc9346b26f7d64f5ec342cacc4051664e3b0201354fe58

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 37c9943e18f569f76a8b7d5d01bfe0716f7762c396096ceb42a47eb3d5ecf641
MD5 195022728d1db5fc9aa34a3617a9fc8b
BLAKE2b-256 d705c004e99c4292a9dde76c9157e8e51c73c6db2dd7e4a876712e6a6113e3b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 842d147983110e5a4f533f98f4f5bc851a08c7ca00aaa30649e8d5f9a6d4e47a
MD5 de1da7779ed9bed6b2b58486270109dd
BLAKE2b-256 5308fdb1cb1001ed15b1f74a8eb70457dbdcd6df8375e27e3fe0d0225dbab170

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08c34553cd7ceb3bfcfca344dc70305a45430429b5d58a67750f2a58364f638f
MD5 feb9aefa69b4879297a191c47a6d2fcf
BLAKE2b-256 e31b73aaae7755372ff0cd5788c9955abb64b34d519dd84f2f4f081e2082119b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 29.1 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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b3a79d694adcfd70d118c73d244eaece7f5f5ab424feb44573bd1d377e1bf0ea
MD5 312dc120c15a49e61dac2364f9cf0566
BLAKE2b-256 06c639d915926f45f72059519688b538a068efbea0307a294eba1ddb18887c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cb4996d43a42d825e2aa6f2b6a978b2a7779397b6a28e4fab5eb9505457023e4
MD5 bb7108c1264df3062125e975eaf6eab9
BLAKE2b-256 466a3a61102925bf65ad81827a4586553a357f8a5316a25b938ef435e0bfabf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1f2c243a385e2c2ce72f5b7d68f3a621cc7d2ee2d0f35e0ca6bf5427ef1922a4
MD5 512f130b179f84ecfb3dba6327c563db
BLAKE2b-256 44e47bc12b2fc9f340c446054b6f0e90e5b54c8021a4f9f6b1650054796009e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 934cd5008d86e201818ca4416a4202039ea29edd89047166fea5c49999677bea
MD5 0299f7bed70e14e3dda327bd925ec852
BLAKE2b-256 600741a5144d7fd1c1f2b380de36521f7f34d624eef0374736515087ead7b925

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 718162a608eb85a22470725f95d63d834b1d7db98a2008b10309cd5a552d91ad
MD5 8f42bbf04e1fde746939259e190903c2
BLAKE2b-256 34e94fdc697dcff5a73157ee34331e37849ada645448d4e47a38cb8a4044eafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 06c74e537f45c2f71010738d4d20741186cac29a035ec5c1c621c723d656c2fd
MD5 4156b80d02ae128cf215099f34e13249
BLAKE2b-256 5d23d8f80cb1b1acede29ce76a39e013e5782712ab895bbffb32fe2e42b8eadd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fe0ee773fd6c211b3b0134ee5d6fd6348411bd7bd79cdb4151d0aaf732179571
MD5 0892bf7224cf67144a6ae6921a83b036
BLAKE2b-256 41a0312504d1851969c62e3f2836eec5b16f3682edfae19aa60e6d69ee80d111

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b25437ffd781d4cb98acef87f4bc32e27682f603ffd27ed5962948b516e777ff
MD5 ac657574a924d7094f7cf099eb9779bb
BLAKE2b-256 4e3156327a7b39dd3c605034f9b51c89d66aad022aacbe12aabeb6e335652d48

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71b2e99a02fd5275b7ecab0b01130395beed4c6f027b6ce9f0730025634e7091
MD5 2fc5adcfb8ed0c7caa031f8980d61b41
BLAKE2b-256 e77e5a227460f92ec7309219730ddfb7451e09e8aa3e0704cfb0f24746686a0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaaf53eb633205f01bb5fb807f6244bd34af121bfb1e21eedc925374aff5723e
MD5 ea08d6227c4bdef7a319e98d307d1251
BLAKE2b-256 caa24b97a5e4fb3450fe0c4b361399f74679a491b3b0bed914bff6d00e70425f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6a667f0dd160ec0ff6dddf42f2d75ad82660074285855f6037d6ecb57d40d0f8
MD5 08d866c1403b9d29aff6ae34173e0b62
BLAKE2b-256 a9c06d85ebdc1e488df9e37c3a2267a8b98a936a36d968560cfb0389307fd19f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5a7fdfde5022f5000c8e6565db954580d19a8aa497ef80875f461e4546ed182
MD5 48767a992d87217b5374349f27eb6468
BLAKE2b-256 86e6d80a2fcbd80f024d8e74a579aad538c5a24c6b672e6ce8180a9a8bfc2231

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 73d04a4520cc7313acf4ff2122f783056d0592c71fc3a59e90fe0baeb499d124
MD5 27b91b5545a07f34782e7e4c71273549
BLAKE2b-256 4bfa725fbd70cc69b2738599c3e1b499941663b6ccef92aec7c78a4c9968f2d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 53e8f6cc0cc24283d98e9c742a0f0a5ded7a810abc4038b9e885e419fcd44e43
MD5 6b60e03913ceecab60e92d08f48c7bc1
BLAKE2b-256 3ee450e2b55b1390895214bdd9dc6a75d4c31e0283d646d2cae424962585427a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 75feec84a48cafd3b2446cb41910bebaf9a8150e2313c1f42887435818fb7b4c
MD5 7bb6d2dd4a0b44fbae2071ab4af61c4b
BLAKE2b-256 0e5b811939d5d3fdf9b4a9cad7591759cc82c3c4734afb0138917ec3b3fc4fd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 342d1a6f161741f8612dc38d940ec0019ae3362c0ede2d16554c1b4e3f1d5444
MD5 f7fec48f515b5cdcd60637d23acb0f79
BLAKE2b-256 af8a096f0bf4e4d33b5afcb27e7907d54f84ae3c581509188dca1083995aefd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ba02f4cc4e71e1315ecac0468189b49bf3970da05ddf0b6965b4a9b1fe147e62
MD5 49ee65d9a65e5fbdc2508b5c42392b19
BLAKE2b-256 a73e3878d943d9169fd8f5ad8d2bffa7dfec14430f8240ef20213772a7ef3dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d211cfa927a107df09359d1f31070883a11121ddc88fd6dd27eda3a497a88f3d
MD5 735a0c8a9dea74a1fcd8c34fad28252b
BLAKE2b-256 8e37f3439475537ca4c59e9b8cbc2b934672d1965b13b6e5fb32b1796c76e517

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2289857ab90ebb2408d4ac2b7cf7e9ff29bba9d2cb21020c9d11fbbaef78eea
MD5 599163f976d23c5f29159fed00d7bba2
BLAKE2b-256 4fd136cdfc7d9a5cdcebb2ff3eeeaebae2c51a7aca50de27a44520af4d6923fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 29.1 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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c35c889d9e58cb72fead4f14717faf6528c95c5aa77d469f724dba28242b976f
MD5 8aaea59dca525a53cdedc0db7ede56c7
BLAKE2b-256 10053acec77827705c0f53f3b5eb187834752cff1994de3b6bebf0801a7b26b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ae7152fa6ce8e8304d6865a2b9e6b49cff27dcb8ca28967a4362a71870354403
MD5 777fd65dd653051c3b43ca8f1e79255b
BLAKE2b-256 95d0458dd7bee586641e84de81392d273a70ca2b34c26cd67fe9350ae21c9364

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 31.9 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3193f7c98b9d563d1986bf4dec9a584230bbe230b711e399c1547e852cbedfee
MD5 b2fe08dd61e6d96f7dceaa4deaac76fe
BLAKE2b-256 ad085ed6811c96c9c901a1e9cfca0bf3a01cf0273d9df5dc7ae90ee718be05d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f01e382b0d2ebdff863948e59560c98e7a8c02ba1e04c21f8afcc7df37f07626
MD5 7e6846f3e8ea0821f2db42305cdd8b67
BLAKE2b-256 d0bd870d8b24ff1548896176edd3c65aac93371d85683c8a84bdd9233a057a69

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f75a8e7714075f5e16c8be1c08a0716b12e04846aea0403440302f354a6bd49b
MD5 041748cb843187158d83cd0bfe2203e6
BLAKE2b-256 d74948cf802629b82c39d610e0fed2c46e07f9b7953a1de2ece2ba25a7ccf765

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 48536e880c8c63fb7021c33172e776afb086817a5a4a9cf3ca12c1a4f0e748cb
MD5 8db6c8e2d35ecfdb2b66104a7ea6c8b4
BLAKE2b-256 6e4709ff184fa70e954a3c3685d07bb342f2a9c9c31d019248e872764947f2ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 61d99283533b7aeb6cd159590fb1c3df9bdb59f639ff358a6b6e74088838b967
MD5 3353dcd75fe121101eead5bb737bb352
BLAKE2b-256 e081346dc9224f040d0354b02e33ea9af337a75837aa22765019b24821cfb2db

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 221.6 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.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2dcd8e626d5d130163064a64e7825b978a5c66febb55fe16018d09ce8bd7a0d
MD5 1165b68579fc88fccbe2acfc54ad6c8a
BLAKE2b-256 3a083a6e4086ea346ce159d1322066235a942451b377eb4c4d62fa05c67d6648

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56c28a1f244432af91eb89d4170b97ece5e81286009638f50a99dfd098bd8c21
MD5 a215ad156a40e04f6a3f2ff706e24d1d
BLAKE2b-256 1721aacf47b150c3be481083183c92ce0c67ae429b4f01d2e301c08eaaa58497

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 369ed0efff8216f9f3502eb73694c22e4e8870ad24b454b5d0e7df01a3b29320
MD5 04fea83101e19867d119e01b7f1e5cb8
BLAKE2b-256 2ce060bc3337e256a1d3142cf37cd089ca9b72e3736360ec79cad019401aa9fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 654541773668385e162f18f001955bb5cddc9490beee69684061ecb3004bb46b
MD5 593dbe063a347130e8687c6ca5767c67
BLAKE2b-256 f321c8e832e7b185dcc8f3dfc3f1b077829aa9a253c308f14731c19150f47b1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9eaed16c1581478ffbf66f31f9d6db86346e8eb36fecb96ef742aea4a05c876
MD5 9d78818eac619084e183c5a695ed75d2
BLAKE2b-256 0fabc831faa2fe94e2191c751b8bff49633044acc59ce1d097683a10b4b3961a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c10f98df550135978530ae87d0ffc4421e1580a353bb0d7c815f05ca06ab15f3
MD5 713058e2be7d4b15bdc36952624173ce
BLAKE2b-256 9d952d51031642dd0b213657a2199f6c41d71785d2bed7529c29488fc003d9d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ed377642dbc001d2197b0742f31fe3b72fc4fef2b29ee1916075745a423e48b8
MD5 d50faa3e3ebb0ea9b1b8a2b4d63a3447
BLAKE2b-256 3c4e41fbbfe877dda4913bcbeac655960a7c29238e40fd1d6d9ef5cbc0b6797b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c0e976ef1387cde8c1d0c81450ee6ab5c8c75b637c8fb4a3791769cdd301dddd
MD5 3b9b9423bdff5a7257cb3d138a7eef17
BLAKE2b-256 1f9202d6ca861744e6bbf99ce397458686db4d2c94fba6359ae7db2fbc5408c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04faeb2290c0596b25f8509dbabe8b821461f04eb9097b74cc8b486d571087fd
MD5 aedb9cb801ab419838807c87adaac4c1
BLAKE2b-256 897242a1e183961b18dd66552f26977720c233ce26ab2ff40f39d56fa527ea13

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.8.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c1e0f01748df88c0c470a6f49a00c60fcbe6624ce8fb101285a94b5e0a11e942
MD5 ee7685eb15e10562f60514de33dfccac
BLAKE2b-256 940468be0b670eb2a7d77b7e7e45c2c1c518ff07bf5ee28411d627620c719a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c02c23fe543bacc471b62b4c8af150bb53f72cb2c5878267d589182d36b4669b
MD5 797168790eacab6432f4775898f7f00a
BLAKE2b-256 f47086bd231cd8fc550f90776184c8632f18d2d3e0c6ed020958851710c29699

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84b8abc80329921e85cd02debd15a5247ebd8de38f8952bec27f241628ef6714
MD5 b502841d22a1add506d2ac087c53989c
BLAKE2b-256 c3a9289f85bb430646710961c348cc5a9f32f76b0695c31bf604c34b92e80440

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.8.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 32.8 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5685977fa6bcf18aa408492ca3960325f42a23a1df3df5bf3ffc3840b67f61d3
MD5 5e3028e72bdc1b6041a3352d26e1285c
BLAKE2b-256 c1855f67dc4ad340f50b510fd30269fb315e41362968765746941db614994308

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.8.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a484492df0b094a3bba94f6aff7324e30aec95a2a3e9caac6806838cf8d6dd3c
MD5 84a64070a46276fe025a11817482fac1
BLAKE2b-256 a94910538a625337fc1f9511f5629adf7a31b6c45232460f52fd332cb3037cdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf57b05eaf75b567259ff6f2c9045f26621f0658d18b123eee53b1fa81318f78
MD5 d1984d2778d216b20ef8e872236f12d0
BLAKE2b-256 8a1ee0f826ff399356794e2043f8ccacaaddf7e90993bbdf2982822046643be2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 be48b4db998927daa182c3b3b18101faa24d6e283ca2192e40b686e3ad0b905b
MD5 50bdf20bab45b7a6e335d3d24800c550
BLAKE2b-256 74f4cdef893e35209e58f79dc90f2f9c4fa95b4e653ee5464c287c9dfee431ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 33c6f8adf3cc1745ae17e8c1053e7c61f9640cb3de35721e706dcbf1fecd3f51
MD5 58afeef9ff56dcde33a14b0da84d4ff6
BLAKE2b-256 bce7e31948aa62cb4b0b9c3a6fe7dbe12e52447b1e190ed275c5fb5646bd8154

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c7c24094d990d8bdf78132b22891c6aa116656dfe68f77b1424e7e2ae0d4c0bb
MD5 e60e1e875528e7b543229f3a2a85cd08
BLAKE2b-256 5b66c187ab5f85559c9c3ee0e668de6fc7c291e17da16c89f6ba8fdaa9ef4991

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.8.0-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 223.1 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.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e9fb591e5df85a787c0303b1d01487ab04820f6607d7ba148491005226fd968
MD5 0aadf9a0c1a5759e819064f0f47a90d5
BLAKE2b-256 f45f116ef02201a8c22d983ae20ca96f774c4fa8ae705e3eba0fb0de20563dd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ecdbbe1c5de579435d3879d53d35d681d626836bdde333577a9491000723bb6a
MD5 2cced9f84ba4d769144e3ef98f76a945
BLAKE2b-256 b16f5e3a1063bf5973a6992c45fada2a42cb0444127a909b0139ad5e033c5c06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f7f9ba111d3b4a8d7c6edfd7e9ab7c67efb98234907520f4c6411a2b2039cb3
MD5 60b0a64d271c7379f631b213aa28633f
BLAKE2b-256 473192e73dc64de0707e15a012937532b45dc54e348504cd2eb0db104b822c75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c381537f7a918c8b93f236e7df495c6cd0b4eeffa747c74b568caef4e073ce1f
MD5 82455a63161ee8af817f18e56e54598a
BLAKE2b-256 65bf41fd5728b680c8b0a21fd85445aebf6b058b42be44ef7645fc00e782f395

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.8.0-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.0-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.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a0325359942e9cbc2c04529f462bf637e73e0657a277b7d64d61986d24d539b
MD5 b3705a6b22fc2928a76984ff3bb64c42
BLAKE2b-256 0e1dfe92e01b5ea3d96b7b5cb991b16ea51d1d6358e1d60b73f6d9219cf04a42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 96fba2ec05a43e5b9b8070f68b42d0a91f7aeefe4dc425775197ec1c5f8c2c63
MD5 c811bab461830b567306e5ff21dd58e3
BLAKE2b-256 d8eee1f1120b849107f640b9e79c4f031adae3f2535bcc0f7c02faec8eeee4c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5b60d8e3c3340b679851ee268288deef9cdc20d8b1a77c0c0d2d2f3849a16ee1
MD5 9fd42785dcdc08fb49fa818e8d7d95b6
BLAKE2b-256 cfd06085944c4d3c8e908739601a70cf64077fc29c93ef195dcd372b71b10387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 93b263e609d9be516f3df9b1619617376d0335111f013cfa00d7fc4b2e1d5a3d
MD5 072f32e7cc3bbf546332c888f37b027f
BLAKE2b-256 2a63be335ab2b109e523bde4d3e71e2a0ffb9b6f7b51b16fd6ba0222299f69b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d011de14fe14b6c31ab1d4dc400bd5ef187c44446e68da15a5039fae46a8494
MD5 5111243954650ac5400730b4af172500
BLAKE2b-256 a98cab89ee76b15ce32505dd696fa47cff77b70f245c86888027cafb88634adb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 564a85f94635da981a1087314ef57fce6e0d27aef22390b60319b01a99fe7991
MD5 11fba12bc10f86bfd6ffbcf1ca0b7df0
BLAKE2b-256 18d6d8f96377fc8754bbec3920304a54636e342ad7095d1a8581465632f2520b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84101596d32201b35339ba788eb39574690a7516fb5b1b9165f09de9fee7ad1e
MD5 6280a0268b67ad27713ef3d6d17dc003
BLAKE2b-256 5cf836c4e1f53652aed7830e743d414fc88d4d41e1526e20d7b3b3b691a1631f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbcbbfa24a474793da405731d123ae17f4e9a1c38fb4e67acc4dfc5fd0b7022a
MD5 40a32cf139bae3dc8fe8513dd2a20769
BLAKE2b-256 b173b41c7e5af4f4ab780b8cfaac43a49fb5f6626250aa903ce102a78f59e3ed

See more details on using hashes here.

Provenance

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