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
'2.0.0'
>>> xxhash.XXHASH_VERSION
'0.8.0'

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

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

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

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

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

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

More condensed:

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

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

>>> import xxhash
>>> xxhash.xxh64(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.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.7.1.tar.gz (83.0 kB view details)

Uploaded Source

Built Distributions

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

xxhash-3.7.1-pp311-pypy311_pp73-win_amd64.whl (31.9 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.7.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.8 kB view details)

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

xxhash-3.7.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (36.6 kB view details)

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

xxhash-3.7.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (41.4 kB view details)

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

xxhash-3.7.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (28.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxhash-3.7.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (31.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxhash-3.7.1-cp314-cp314t-win_arm64.whl (29.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxhash-3.7.1-cp314-cp314t-win_amd64.whl (32.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxhash-3.7.1-cp314-cp314t-win32.whl (32.0 kB view details)

Uploaded CPython 3.14tWindows x86

xxhash-3.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp314-cp314t-musllinux_1_2_s390x.whl (417.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxhash-3.7.1-cp314-cp314t-musllinux_1_2_riscv64.whl (278.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxhash-3.7.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (213.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp314-cp314t-musllinux_1_2_i686.whl (201.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxhash-3.7.1-cp314-cp314t-musllinux_1_2_armv7l.whl (244.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl (213.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (287.4 kB view details)

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

xxhash-3.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (196.5 kB view details)

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

xxhash-3.7.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (448.9 kB view details)

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

xxhash-3.7.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (215.2 kB view details)

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

xxhash-3.7.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (238.4 kB view details)

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

xxhash-3.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.2 kB view details)

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

xxhash-3.7.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (197.0 kB view details)

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

xxhash-3.7.1-cp314-cp314t-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxhash-3.7.1-cp314-cp314t-macosx_10_15_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxhash-3.7.1-cp314-cp314-win_arm64.whl (29.0 kB view details)

Uploaded CPython 3.14Windows ARM64

xxhash-3.7.1-cp314-cp314-win_amd64.whl (32.6 kB view details)

Uploaded CPython 3.14Windows x86-64

xxhash-3.7.1-cp314-cp314-win32.whl (31.7 kB view details)

Uploaded CPython 3.14Windows x86

xxhash-3.7.1-cp314-cp314-musllinux_1_2_x86_64.whl (191.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp314-cp314-musllinux_1_2_s390x.whl (414.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxhash-3.7.1-cp314-cp314-musllinux_1_2_riscv64.whl (275.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxhash-3.7.1-cp314-cp314-musllinux_1_2_ppc64le.whl (211.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp314-cp314-musllinux_1_2_i686.whl (198.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxhash-3.7.1-cp314-cp314-musllinux_1_2_armv7l.whl (241.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp314-cp314-musllinux_1_2_aarch64.whl (210.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.3 kB view details)

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

xxhash-3.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (194.4 kB view details)

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

xxhash-3.7.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (446.0 kB view details)

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

xxhash-3.7.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.7 kB view details)

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

xxhash-3.7.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.6 kB view details)

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

xxhash-3.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.5 kB view details)

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

xxhash-3.7.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.8 kB view details)

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

xxhash-3.7.1-cp314-cp314-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxhash-3.7.1-cp314-cp314-macosx_10_15_x86_64.whl (33.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxhash-3.7.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (33.6 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxhash-3.7.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (30.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxhash-3.7.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl (29.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxhash-3.7.1-cp314-cp314-android_24_x86_64.whl (35.2 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxhash-3.7.1-cp314-cp314-android_24_arm64_v8a.whl (36.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxhash-3.7.1-cp313-cp313t-win_arm64.whl (28.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

xxhash-3.7.1-cp313-cp313t-win_amd64.whl (32.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

xxhash-3.7.1-cp313-cp313t-win32.whl (31.3 kB view details)

Uploaded CPython 3.13tWindows x86

xxhash-3.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl (194.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp313-cp313t-musllinux_1_2_s390x.whl (417.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxhash-3.7.1-cp313-cp313t-musllinux_1_2_riscv64.whl (278.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxhash-3.7.1-cp313-cp313t-musllinux_1_2_ppc64le.whl (213.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp313-cp313t-musllinux_1_2_i686.whl (201.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxhash-3.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl (243.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl (213.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (287.2 kB view details)

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

xxhash-3.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (196.4 kB view details)

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

xxhash-3.7.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (448.8 kB view details)

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

xxhash-3.7.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (215.1 kB view details)

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

xxhash-3.7.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (238.3 kB view details)

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

xxhash-3.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.1 kB view details)

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

xxhash-3.7.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (196.9 kB view details)

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

xxhash-3.7.1-cp313-cp313t-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xxhash-3.7.1-cp313-cp313t-macosx_10_13_x86_64.whl (33.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

xxhash-3.7.1-cp313-cp313-win_arm64.whl (28.1 kB view details)

Uploaded CPython 3.13Windows ARM64

xxhash-3.7.1-cp313-cp313-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.13Windows x86-64

xxhash-3.7.1-cp313-cp313-win32.whl (31.1 kB view details)

Uploaded CPython 3.13Windows x86

xxhash-3.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (191.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp313-cp313-musllinux_1_2_s390x.whl (414.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxhash-3.7.1-cp313-cp313-musllinux_1_2_riscv64.whl (275.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxhash-3.7.1-cp313-cp313-musllinux_1_2_ppc64le.whl (211.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp313-cp313-musllinux_1_2_i686.whl (198.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxhash-3.7.1-cp313-cp313-musllinux_1_2_armv7l.whl (241.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (210.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.2 kB view details)

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

xxhash-3.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (194.3 kB view details)

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

xxhash-3.7.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.9 kB view details)

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

xxhash-3.7.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.5 kB view details)

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

xxhash-3.7.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.5 kB view details)

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

xxhash-3.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.4 kB view details)

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

xxhash-3.7.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.6 kB view details)

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

xxhash-3.7.1-cp313-cp313-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxhash-3.7.1-cp313-cp313-macosx_10_13_x86_64.whl (33.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxhash-3.7.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (33.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxhash-3.7.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (30.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxhash-3.7.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (29.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxhash-3.7.1-cp313-cp313-android_21_x86_64.whl (35.3 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxhash-3.7.1-cp313-cp313-android_21_arm64_v8a.whl (37.1 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxhash-3.7.1-cp312-cp312-win_arm64.whl (28.1 kB view details)

Uploaded CPython 3.12Windows ARM64

xxhash-3.7.1-cp312-cp312-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.12Windows x86-64

xxhash-3.7.1-cp312-cp312-win32.whl (31.1 kB view details)

Uploaded CPython 3.12Windows x86

xxhash-3.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (191.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp312-cp312-musllinux_1_2_s390x.whl (414.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxhash-3.7.1-cp312-cp312-musllinux_1_2_riscv64.whl (275.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxhash-3.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl (211.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp312-cp312-musllinux_1_2_i686.whl (198.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxhash-3.7.1-cp312-cp312-musllinux_1_2_armv7l.whl (241.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (210.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.2 kB view details)

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

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

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

xxhash-3.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.8 kB view details)

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

xxhash-3.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.5 kB view details)

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

xxhash-3.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.7 kB view details)

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

xxhash-3.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.3 kB view details)

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

xxhash-3.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.5 kB view details)

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

xxhash-3.7.1-cp312-cp312-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxhash-3.7.1-cp312-cp312-macosx_10_13_x86_64.whl (33.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxhash-3.7.1-cp311-cp311-win_arm64.whl (28.1 kB view details)

Uploaded CPython 3.11Windows ARM64

xxhash-3.7.1-cp311-cp311-win_amd64.whl (31.8 kB view details)

Uploaded CPython 3.11Windows x86-64

xxhash-3.7.1-cp311-cp311-win32.whl (31.0 kB view details)

Uploaded CPython 3.11Windows x86

xxhash-3.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (191.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp311-cp311-musllinux_1_2_s390x.whl (414.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxhash-3.7.1-cp311-cp311-musllinux_1_2_riscv64.whl (276.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxhash-3.7.1-cp311-cp311-musllinux_1_2_ppc64le.whl (211.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp311-cp311-musllinux_1_2_i686.whl (199.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxhash-3.7.1-cp311-cp311-musllinux_1_2_armv7l.whl (242.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (211.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.5 kB view details)

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

xxhash-3.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (194.3 kB view details)

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

xxhash-3.7.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (446.2 kB view details)

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

xxhash-3.7.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.7 kB view details)

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

xxhash-3.7.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.9 kB view details)

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

xxhash-3.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.0 kB view details)

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

xxhash-3.7.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (195.1 kB view details)

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

xxhash-3.7.1-cp311-cp311-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxhash-3.7.1-cp311-cp311-macosx_10_9_x86_64.whl (33.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxhash-3.7.1-cp310-cp310-win_arm64.whl (28.1 kB view details)

Uploaded CPython 3.10Windows ARM64

xxhash-3.7.1-cp310-cp310-win_amd64.whl (31.8 kB view details)

Uploaded CPython 3.10Windows x86-64

xxhash-3.7.1-cp310-cp310-win32.whl (31.0 kB view details)

Uploaded CPython 3.10Windows x86

xxhash-3.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (191.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp310-cp310-musllinux_1_2_s390x.whl (413.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxhash-3.7.1-cp310-cp310-musllinux_1_2_riscv64.whl (275.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxhash-3.7.1-cp310-cp310-musllinux_1_2_ppc64le.whl (210.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp310-cp310-musllinux_1_2_i686.whl (198.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxhash-3.7.1-cp310-cp310-musllinux_1_2_armv7l.whl (241.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (210.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.0 kB view details)

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

xxhash-3.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.6 kB view details)

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

xxhash-3.7.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.4 kB view details)

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

xxhash-3.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (211.9 kB view details)

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

xxhash-3.7.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.1 kB view details)

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

xxhash-3.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.3 kB view details)

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

xxhash-3.7.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.2 kB view details)

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

xxhash-3.7.1-cp310-cp310-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-3.7.1-cp310-cp310-macosx_10_9_x86_64.whl (33.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-3.7.1-cp39-cp39-win_arm64.whl (28.1 kB view details)

Uploaded CPython 3.9Windows ARM64

xxhash-3.7.1-cp39-cp39-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.9Windows x86-64

xxhash-3.7.1-cp39-cp39-win32.whl (31.0 kB view details)

Uploaded CPython 3.9Windows x86

xxhash-3.7.1-cp39-cp39-musllinux_1_2_x86_64.whl (190.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp39-cp39-musllinux_1_2_s390x.whl (413.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxhash-3.7.1-cp39-cp39-musllinux_1_2_riscv64.whl (275.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxhash-3.7.1-cp39-cp39-musllinux_1_2_ppc64le.whl (210.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp39-cp39-musllinux_1_2_i686.whl (197.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxhash-3.7.1-cp39-cp39-musllinux_1_2_armv7l.whl (241.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp39-cp39-musllinux_1_2_aarch64.whl (210.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (284.8 kB view details)

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

xxhash-3.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.3 kB view details)

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

xxhash-3.7.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.0 kB view details)

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

xxhash-3.7.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (211.6 kB view details)

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

xxhash-3.7.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (235.8 kB view details)

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

xxhash-3.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.0 kB view details)

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

xxhash-3.7.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (193.9 kB view details)

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

xxhash-3.7.1-cp39-cp39-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-3.7.1-cp39-cp39-macosx_10_9_x86_64.whl (33.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xxhash-3.7.1-cp38-cp38-win_amd64.whl (31.8 kB view details)

Uploaded CPython 3.8Windows x86-64

xxhash-3.7.1-cp38-cp38-win32.whl (30.9 kB view details)

Uploaded CPython 3.8Windows x86

xxhash-3.7.1-cp38-cp38-musllinux_1_2_x86_64.whl (190.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

xxhash-3.7.1-cp38-cp38-musllinux_1_2_s390x.whl (413.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

xxhash-3.7.1-cp38-cp38-musllinux_1_2_riscv64.whl (275.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

xxhash-3.7.1-cp38-cp38-musllinux_1_2_i686.whl (197.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

xxhash-3.7.1-cp38-cp38-musllinux_1_2_armv7l.whl (241.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

xxhash-3.7.1-cp38-cp38-musllinux_1_2_aarch64.whl (210.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

xxhash-3.7.1-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.2 kB view details)

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

xxhash-3.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.9 kB view details)

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

xxhash-3.7.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.8 kB view details)

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

xxhash-3.7.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.3 kB view details)

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

xxhash-3.7.1-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.2 kB view details)

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

xxhash-3.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.6 kB view details)

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

xxhash-3.7.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.6 kB view details)

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

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

Uploaded CPython 3.8macOS 11.0+ ARM64

xxhash-3.7.1-cp38-cp38-macosx_10_9_x86_64.whl (33.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.7.1.tar.gz
Algorithm Hash digest
SHA256 9de50caa75baeca63bcb3b0eb753508a5cddc7757682444d650684bc4ebe1095
MD5 051a46062e77c7273105e8deeb9fd6bc
BLAKE2b-256 c8d4640915f28a551050e299a2ba6194875de7bfe7e0ecd1be79eb429fcb8a74

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 da6f19cb2a75fe8417ca03b40c7efdcfeaa0d24b9cae782199498b2cb0a29911
MD5 2190ba10903625a321dc9f98734450ed
BLAKE2b-256 753f9036bc57048a72707bf97bc7632335ad32f6047301035de46d7cabd14e5c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81c5bc7de50c23002577f44bf7719497e54c41ded0da8acf223f1b3823c541b8
MD5 931bd1ad4577eb59461e5009d15d60bb
BLAKE2b-256 6415b86254d961ef925bee70aeda0cfe769cc35a81f546bfed47823b5db6df07

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25451c853781de56b41a6b45160b6d62ab9c313abf97501539a3984599427b40
MD5 289a95b200bc0f95f69d046ea497ee7d
BLAKE2b-256 c5a840aa7fee7a0f9a92ec708f5a437a7e4100cb365d60661bcd8bfdc5af60bf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0666d8933fbf52141864357c0e4c48fdaec6138f4459a2fc0c9fc5b581902b22
MD5 456c2d881b9b67c05ec9ddcee7c1d9f3
BLAKE2b-256 cd7f79e7fcab1057a20f2359deef24a5a63ad0395a6dabf3cdc577ab5a310a87

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76abdff52f009610e80969870c5397e74d5f8d8c511ebb418ad166e788f0614a
MD5 4a0b604ffc57048166fd3384fdbbca8a
BLAKE2b-256 cea6924b9b6b05a9e345f19cc5890b84bc4843495aa88867e131d9fde42bc454

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 70debeb180feba224a0ba2bc532e643ea7e94d21147ecb1770124cafcf258aa1
MD5 b95d1caf2ddeeb4d95fdad81b321d8e5
BLAKE2b-256 b96b5e244d6550e17c0beb3decdc30a7d87867c4f00df0c00a5c9115d20acd56

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 29.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.7.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5795037fb23aa33bdb1d6daa6a68b001c4462de447c1a31917ae1aebca691286
MD5 6b48b95273cb2b9270d0dee4405d2883
BLAKE2b-256 c78870b85fdae219f77d8e70035cef3d6527e4d000aa7038ff046279d47aa39a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 32.9 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.7.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 68ee1b9903252e80437559d32ae6d0a752e6a26fa6416925c7e6282500948838
MD5 8c5a43e09e8eef3079113bbb816243c6
BLAKE2b-256 78b1c6a5ba0ecba582d9302daf67fdb13a5081b122ea5ce18aa6df3e59001cbe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 32.0 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.7.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 02ad31001ca4f8241b5edc38f009a189d075f270b023e1a1ba01b1aadf7240a8
MD5 3a2f0f15840f90b9a4d86318e777cb12
BLAKE2b-256 3fdf61beb9e061ddaa349f1a6e75ef14f174af1439de0308d63f2561039eb522

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a285830529716693c72a463a4313b4862482730b308afbb1c91a208eab7330d
MD5 934da27f4d864571ddc66b0d12b73684
BLAKE2b-256 0110582cf987173c4b7e272396ede2694005fc204612acaa5d13e74761f017e1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fd73cebdefbdc6aaccc910041ad192426279ff87a856274d1d6e202ba2546b96
MD5 34850f5086e1bc7b86d4bb59aa03da2b
BLAKE2b-256 19b0d01ab517da006259dc00fc89b32f39acd42492756364417e957371c5bd09

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7db59b3293c8cd6c2ca9854f1b246502f8dd0b72caa4dc755b85c10594fd427d
MD5 5b0dadcff33209995367af3d652d4fe8
BLAKE2b-256 0fc8baeeb1d4b846fca2e313ee8d65c426dd4560548c5e1354b80666c12abcd4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 39ab6df3c9d76f477c7b174fc77b6e7fdfeeead6899699539bfb3850494c3d22
MD5 030bf876b93fae4eac8c1529dfc45eea
BLAKE2b-256 5448e1880f94057f9c3c6998a68eef849154781bb8b527a1320c75ed7050b32d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b67a394f06d499b8525ad98b84f77c3b226cbfba22c35dfcc7425fc7b1f473a
MD5 af7a5c8147939d96fe1bf2d01e73f8f6
BLAKE2b-256 f90a91c7c16ab909e68698b6ec9022db6dfcc6814bc6494cb01056a31dfea79a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43c35d20015ed2108a0e2a02a941694bb9fde154bb6c1112f8b39d35961ad09e
MD5 8cde261867476175fb70df4805e2fe12
BLAKE2b-256 c1c321e5ed79eec067fec447d1b36ea405fc87052c49ad05a3e6429d43ba6df9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f712ee8ae977fe6e941a6c7d29d2415c2b635b3c0c56f0e0fe745036f5176bc5
MD5 6be7f6e358c294daae716ff7801b3e39
BLAKE2b-256 cbd02a1dfb2b4c15656ca8913118538c40a7481c689a7118cb6b1351811e2591

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fdcaf46c36ffa40120c63c816f5de2d75c10876af894eaadfd51abebaa5888a7
MD5 195034868022aa7ee21a15d17be7c960
BLAKE2b-256 04ed6df8ae0f16fdc70716ff3689005d141503584e946c5c94d52804a4595e77

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd9ddce013e2ebd36e13fe52ead4f76be3cf39a3764299bd9962420fa9c6a458
MD5 16cc937f5f52fc182e8034da44758b54
BLAKE2b-256 2f45fda5848405462389ef3728450782e8454a6cf1646354bbe35789cf9a3ce7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 47113e60f4bab943e40ca984aa2ee40bb2bade72e079a02ce56e497f215a5a05
MD5 fe7a99c5a624faac94c44f22b2f9427e
BLAKE2b-256 e32310b269565f7774defabc55e2f4a8611415d89f4f0d8f8346aa3f9bd15f01

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7f7b2d9dc97ca0ee8c39dc3d1ce643aa4b584ec5999a8255ee7035c02efb69a5
MD5 a94e69a656059434811ef0d17af49821
BLAKE2b-256 0cc9645da0d06e404bc02373f5ac01f8a0b805cc95d482a8c742acd177a33f90

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 05f6d7f9d6a4fc1f135a2c6a2c42757ad1846ddd5d8790dd1e8559679879536c
MD5 7a2411279aae91b58ef0f91b1b9508ac
BLAKE2b-256 f4cc684b585c2fe6177a38f7d9d31ea3e58f1d6a5c8ff569490c67bc158c26c4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d9d72bf4811ad101560a5dc2ed30257584123ca33f8ab56461c0dc7b6e23b9a
MD5 d72f877908a8986a87b1a0e6da2f3e5f
BLAKE2b-256 cbc81d1fa91a193248ae7fde17a898aa28cbffd3a62716acc760b3faf1b8816c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c671fd48a49c6e4ac0d5ac785f2f7fb2c458dc8dbb52d1eb933dd66271560e47
MD5 59878ed2af333bfb8d710f08af1230fa
BLAKE2b-256 6604743a84186307f61b21ebcc5256f22cf5c0c7b8f552ceefc53dc866166883

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 673d58460a3596f6a72cc7f1efc387cfcade965e144011af2ce76e03823ab1e7
MD5 7ef0da6e25438b16f67690155420a530
BLAKE2b-256 684df33bfbc55eb20c4d0789468135fd1dd62ea0e620dca6f259f2d919f2cc14

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 86fc508b4109eb496139055573233807bbbc7def84d4585ce8fbad005ed716a9
MD5 187636afce9f4997622d56a60d7f3fb7
BLAKE2b-256 b2d3eea194b5ecdbc4ddc19d60d0b88eee0e11dbae846b6e4763916ccb8d8b19

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 29.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.7.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e1e84128aca5db8aa402d63385ff878a69409f5097dda22209aab182f94d8823
MD5 c3485366c40ed2febd518ea92fc4340b
BLAKE2b-256 104e18635110d4c28d4badff26e86860cedaeaf83efe90aeef694eb2792b47a7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 32.6 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.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6cb3008e57b1a837c841d344d802abb133ae80296f39a519031bdb4b7a8b547a
MD5 bf956aad29ed2ae8f1b59848de1734ab
BLAKE2b-256 56b8948c4367d1de11e29d94981e4b79a18fc805e763c9009d0b36cca43a2154

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 62be5960d81bc06416871aeab8b26a21ebab4650fa3e51f900aa7b59cc5ab618
MD5 f24d6055e4e9a93710bdcb47cfdb8c2c
BLAKE2b-256 82cbd8439f4e662f1393019871fbd2f1145d66a55717b6cb6f32bb873132ffd3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5007843d543fe17889c0df0b02f82df81e28a21a8a498609ccad2b14d0f74a4
MD5 a69da7202faf17a28558f4943da80c2a
BLAKE2b-256 d578cfa9350dd577ae0d27aac2aa6294ee038fa4ad9f4ef7ff4869516916e583

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 81cccac441335635af32b69ddb1d28400094aee8ccd4c80bacf5da61747f600f
MD5 c45d22aa66340a46c994ae739f6716e3
BLAKE2b-256 f2c880a5e87f369ede8c82dc3d45fb64a8bedfd5288f63148bbf9759fa30c7f3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 156136c6bf615f74e73ba4ddd4b355e1469408745410ef95c3d33b99c0bc1821
MD5 82d01028ab3d674b96d70dcfd1ad05d4
BLAKE2b-256 9a6c06f928a7dff78c83bea8ed154ed4ec91be49a8ed4862cc14011d5f6d0ed4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0cb7322f8635cb69ac771e1bf529e6cbea458d1df84e653b0ba49d045aaff8a5
MD5 b832163ba4176131af5877951dacc537
BLAKE2b-256 a7dedd6c1b20f6fd02983b22e0907d31b387cf59b6f0679f3bcc160490990178

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ee9962b423b06824f08ee4849cf8560b7d630ea67c0b1bc21ded2275f899c04
MD5 35466759b724733e059e28642bb5a040
BLAKE2b-256 88881c674952eb4265521deb5c6cda47952040e74a0813a7933b3a1e3eae2e7b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f05c06e71eab1809f017990ae2bdfc63ec961f2a6a2df6d68e5dcff60c0f39e
MD5 678cc4e42ce4d4ca3452e08a2c7ac9f0
BLAKE2b-256 bee9d4aaf1c213336fadd92c816ed1ca1d86bdd9d45e802f637f5e38ea771a99

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34731e2d8c607bd1d9697b174f9a08f9ea655274fec51e2d66f16b3d40b8837f
MD5 25193a745790ea8bc7a5dbcb955fbe0a
BLAKE2b-256 0b8ef55f741dadc9b6c6cc8569242683813ffa9c54ef39dd0e769cf937c05423

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3c5581325e442394a97d996fae3456e0ab9ffc57c1d78d16f7e499858e1de636
MD5 d811253b1b7c54bbe288ae687fa668df
BLAKE2b-256 544a0c8e3fb9b054a97f37097e163c448266f2f7eaf8ff9f566cd722704c2357

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f9a6863d0472c0298e87d6da7ab8c9c49e7072bd7a9303ae04291a9600b6ac2
MD5 0c84de85779934e8d9695abb0483f5ec
BLAKE2b-256 1eb695e2756867949798386ae5205560495c0243a78cb2a750ffaf069c6a6c34

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9b6a61304b66cfb8667f824a31fe26999c936aa50897034fa9b65adcef088c5f
MD5 01f42b2bae3709ab5c7f3274221f42df
BLAKE2b-256 531599ca84d43b265d48fe5ce5beff02cd9fed5470d8f1b74b3cbf0e43f1e176

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bc500efde92a813436b7fdbbffd51b7320f71aff1cb09d44ac76d31a28ddc5d6
MD5 2777b289b9125d9bf2408d66ee0f6581
BLAKE2b-256 f16fad5fadb89766120a1393a434d770e14f94dc7ea146e49188910faad83ecf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 842950f1860bc55a735011e48765567912502cbbb04033ff0efc06ec5842dd16
MD5 a1437004dcc0ef153efa5bfa0909dea4
BLAKE2b-256 f7a78a0d21204e116bf3d494266cb822ad94a99552479b0060b5745453fa0b28

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d5ed80d41b056c9d0d2be2a0cd8d0d22462be6f2143bb59068426da0b509613
MD5 cf7ea82a15f784ddfc40ca745f31e1fe
BLAKE2b-256 eb64811bbf8763edee40b83959ff04112d5f131bb49911073bf39427196f06b9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b0e1ebafe872c8d787d1b392effccb87ca0fb812829037da94bc48807dbf79e1
MD5 631bfad523d7abd67816ed8212062600
BLAKE2b-256 c20f236c32562c62c7e5d0b21684cf8d1c0ed55122dbce10ad299727c4c9f21c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05d36de6fce47315dd97e572ab3e9a28b0c511ff5b7208b7d5317587a0a336a7
MD5 42e8571bd1a5ebaf7df30011341e83b1
BLAKE2b-256 a9391b85d17393d6c592fb80487562e2f248603c447da3627507ffb52ad5748b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dea90966f1aee53743b049f9cfd5ff1993e5ef89e56fc8f6bd00e96436b2c6ec
MD5 f42396165322e001eb8530ba4e93ff52
BLAKE2b-256 c674e22ea27aa664f256df508cbd445371ba51b90120e00f35c16d22d35585d8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 b831aec61952cec525f12c09b260389e39d811a36b923f734c6e50ffde77bb20
MD5 d5f1f9376dc5196fbf88af965eeb3b8d
BLAKE2b-256 88d9538be2550d2af6c43ef3768a7310b99a4c2cb63164017f430b0b9ee4b6c6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9aa27f83a2b585a2b1daaccc40c51036213ebcc1b10a32d164620ebb802fb20a
MD5 45c1b3e8f7cbb23ed60f1f4fe50e3556
BLAKE2b-256 26604b16f199f262c0463db075320ac71a57a5b367823c5b49b9ec381a5e89b4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 9eee9540b8c360bfe40cc7809b93187877ecfc054d2ef8d213dd5547dab8dd65
MD5 60f2135f6ddda27f00a8e743e5ba32b8
BLAKE2b-256 ef2ddd95e9b492084fc590284be4e8271324172e2b64124d7831d5c32925d6d0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 35.2 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.7.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 09ed80c2f2f7d23b28729cc58ca8bf0565e00f59125c1648e7e5c80d88e47a92
MD5 2a2b7b83b27e5174e1e3efe0bb1043ed
BLAKE2b-256 f2d0500655d067d53b156b02e15faaf3389536e2b65d15162c86e0c06733369b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 f56347991b9b40402ac50acb1bef31c31c4ae0b33a5588f9e093b30ccf99d2a2
MD5 9f65b86a4e3ffc7b0f550993f4f1a15d
BLAKE2b-256 f0681010395c711cdf676d1eea08909c57e519b41c549b70511e8192161db0f7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 28.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.7.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 b5af5023fa6a6cfc9fd0f36813cec1e859ba021157e6ebacd8b8900011fd939c
MD5 ac0c9cb87151bbef7a687b1a03d7f2ab
BLAKE2b-256 c11997ac96e8238cabade19580caac10ca6cd8ad21111459f4fee2791d63675c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.7.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 32.1 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.7.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 500c5d9b69d43c0acf71d29ce82a0ca9048aea64d2fe6e38af7b53caec7ecc72
MD5 37dd9ffb9b6ef6029ea3044755eb6bc2
BLAKE2b-256 4cfec37bed241ee9a96333102f2f439fdd8aa37750a9622518fe4881014c073f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: xxhash-3.7.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 31.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.7.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 199710e41e0921e4e696635b1b29deca9739ef5961190e793691d3a8b8d1716e
MD5 79e91ce1087b0ab22b6d095f61e5d21e
BLAKE2b-256 43bc8c62c8291068e58455ce462035f36f007676819e675d818b8d5cc230b44e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a89cfe5077008f3713c1e2bbf508b3adfc638d4ae7209220e021192daa7e31c2
MD5 679e909556bfcf431a6a28ed5c68883d
BLAKE2b-256 b67f0949a73192ab6a62a1067498a89c4d70786f8eda75c2ff67559d4cfd4717

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4601e38c2750a744b985dc8245b00eba29ac4619c4c3b29818abfca4be73c1ff
MD5 ff941fb58f8cf3a5430621d9ee975033
BLAKE2b-256 4ab5bbb1d2d46f514ad87d05a4df71ff9f718277d47e9896d48883195ba5b080

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1c32cc0566e852be920ef226a925da2ccccc826c5b1b1bc707373dfd76a459a2
MD5 651dd60c9260d7d993e17fe24cddfe83
BLAKE2b-256 f47d952fe6f6644e0938c3d18a29bc1560b5a3eaaf5f69c0340df1f028eeff99

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b09310fe99ac2070b65b0eff03d610a67f89793fedcd7c5b48688c34430254cc
MD5 f77dc8d4f9e27b2041c62884f9b73ea4
BLAKE2b-256 6fe3fc0f914932871822d860aaceb5e1bd66bd3795b69ae2c212c0368b862379

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a0ea48d1e9aa724bb21d9ed5b083420eb8edbe0c8a0d02f7a29bb70bdddba57
MD5 8297212482025eb586867bec05ef6e39
BLAKE2b-256 7e9833a7d7f613d4611386e7be8772d67a2d5cbecf863a1b2d9cc6009e26b8f3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bfce305b29b36604a1b0ce7796872cffe5365f41500f01cddf945ce50a2038c
MD5 d6145229887c065a8f5088f94af57c5a
BLAKE2b-256 f85fcbbefa93e55532fafb12b43d649ebdfbe5567ac5978099db86e1882a4649

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3fde1048f949493b2081c62a6516f33da018984a63165c90146ab102f93b900
MD5 a6a74c30372bdcf2e8ea33398eb0cead
BLAKE2b-256 8caacfde2f35de71992e4fd03b0356f476353a04a6e2b99a5795a26f43d22063

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d33231b08db1da77e2199e56e6cf11949a45884999de7b954d80229724aa0f92
MD5 92555d71d1852c422538b89f366fdd24
BLAKE2b-256 304ee3c6fe30de88c848b302bdf2ac254de24a2df2161d7167fe67db3561d70f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4335a49585aebd2a6755e5f2b5049878095356477e2de7e68fe5b1bedccbedf
MD5 0b0c58ca3b8ff6accced13604b1b772b
BLAKE2b-256 035c51fbb3071c0e9e8c6835dc35c7f6f0a2e6dbd63703b39760e0c53ac8a111

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 05b16b82533fbd45376e01a506bbeb1121375448c8b941ae6dc5a879b1c9fc6a
MD5 0ad1dd9498dc17e9793dd47ef1aef3c1
BLAKE2b-256 f1ec6d1d0f97a9f41839bae275ad38a144f27e8dd9f507f38aef9fcc93b734a7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a8abf100453e8fdaef32a24eba235300ed2a1ca0f41f505459f824a0e934e120
MD5 15b026da005461ae46ed71040ea52dfd
BLAKE2b-256 f50e18e011e692677753bb7b2e2ea0b17bf26f0c4efab593147727e53fe11f97

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d2bcaac2714a1e90f615cffd1638b7012bf3de3a9c9629f2fb66e025ea7fd00b
MD5 5215f7c6971094850e70316335d59851
BLAKE2b-256 5e569b9f225f4d0f850870e5520c45f61627d4889c7db5280a489086c0f8a3cf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a86bf6437021cfb110e613910d4cb7ed62f44d2d8ae04d91b14600099d7e3ebb
MD5 b18347645479c5d083f8f09afad704c5
BLAKE2b-256 1cab5acab22b45492bb316e9b5016d222f0a65083fa4e0f1b876871bde58431d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8f23cb81bfd88f3fe7d933376bfb45f4fc0c595021a54628860af805046e0eb6
MD5 5727337f301b5c0b0a2067436fa3753b
BLAKE2b-256 5f84b6fbca0911375db1f1d835385fd3a31d26751e7aa2b219187fb84af44fed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdfd9d39b6ff62adaad64a72a54123aff09b8806146db16848c4e6561b9de48a
MD5 3add408f2462bcb8b015f131adaf36d9
BLAKE2b-256 41f824ea82f0f0b2c3a9d40340dba69b144f2827da231f88f3485f33effbddfe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cf37e9ffcdc29b07677e917c3674da8db59f45a06d11121a94961e0b69fe2d1e
MD5 6801432494978270a55d8fd00f7152fd
BLAKE2b-256 9fad60fa52b034447e698881374c828ea9a4ea18a4b8b7b36f9eb6ce8fd49fdd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 28.1 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.7.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9cc83af5306edd49095d037be0770ca5274ff92d56e5f7cbf7c59e65911d68f5
MD5 69997c7909048bec28c991fb48398b52
BLAKE2b-256 9272b80d1f22a0e3d0db0b79fb7923cd237f39bfdbced9e1a513e1271dff48ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 31.9 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.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f96b3bba2c255072e2c5e8cf054c164e3b6b9263dccd5cd1291e5d595ae6cfa5
MD5 71c78eeb9d44238ac98a4f3a1b4ff55e
BLAKE2b-256 6e676f05319a2d7d3587b8250d8dccbac11ef5b565931a6aaae5e83a764ceaa3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 31.1 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.7.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 66225f0dcd672b5d547e00bc57a16debde48fded3cff45d7102c9fc3d809b086
MD5 83a5c50d231e1f98bff9d8ffec674cf6
BLAKE2b-256 a71d3a1b9dc8ceb6ef5b083c3cf4bc6db6297795e001531cde901d706c711e0f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e0c4481e42921250eb6b709b12975f2f57bce5af359d8f603860faec67307e5
MD5 fa4e0e2b17fb4fcafc4e52c5ab7eb570
BLAKE2b-256 22cbc6e86f20c68538c960736fa26fc4c01f45619232229d06781d17d19fa55a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a88d6f65bbb5429db37181bab8268003512655f534bb01420a8b3295f8923d55
MD5 f5c9508568dbca234022c307e8a74018
BLAKE2b-256 5b2e474816c84712920ad5c6a592f4837d78250bfa1762c6d5e9bb9ad00252ff

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7648d4ce61e6cbcd340cd5d69a5f56f95b0d0e93a09dcc822d97092bef7b9d3c
MD5 0f735f38982ea151ff26e73f27488574
BLAKE2b-256 df9d565af3aff6fd409f33bfa0e747a10a1dac1babb98ede8d2a5a00ebc5a7a9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fdb7b3182b3812f992ff83f51bd424eb933dbc1a8a46f1d03176fcba3ae045f2
MD5 63ccc5eb69c81b90914a544bf195bab9
BLAKE2b-256 e1035a4fabef8b4b3d85fcfefd808f833f56fd541ff9c48df4839136066a6612

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bdf977b8dfa2586f42d6711d15a6d38c7adbd57ba4861151807bccbef67ca911
MD5 fbe5b50fa9e085eecbc90c6a5e715872
BLAKE2b-256 0c2660a33f86917ba48584978d0709777c2fdd6fb541b5783c05f8e9949889fd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f21df182b39a02b727e579eaea524331b48f3f2701fb8df69bc94b7f166c878
MD5 827ac339a328a52bd25d6de51105663c
BLAKE2b-256 d011f38c82fd64c813028c3ae2aca93c62466ef645995a9d42d9d10b38f2725d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 364bfdb6a2a1d477ee1b06ac12c656037a666b869b15cbde1eada97e9562e612
MD5 ce529178a38a31709eb3e917a6bb0817
BLAKE2b-256 0df8173838bccab8900a680aa61911faa34d2a52e5de52a38ff853781c4e98d9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aab1f506d3d2b29ba62eac451033e3f8330f4e54e74e7cf300f63152878ae880
MD5 50e1a346087a0b8c2d4ed50a3c982abc
BLAKE2b-256 dd6a2462e9a7cf46ceb2f12a6def03ff759627c286e99e37efafd21f48ba7049

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b827658b9a7f43158d9950f736e57ae1c18280294098264bdec82248d79cb29b
MD5 5900fb42748ffc8a26238fe9b1e98125
BLAKE2b-256 b0e6ab9152424b6e1bbaf2155377c42018fbe6806d8971773e2be05a67fa3139

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bb222c844962d50b5b3985e3e4d67d63de96bf40a03f603300580da09c8a826c
MD5 4115e65739a84dcc60bb6a4262bdb9d8
BLAKE2b-256 ed3c26aa2e7cf89c2ceebb5344bfb0df52bb8498657aa22e6d527cc03d22b049

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 00b51129f16517d1cb16b19a3171905f047464e8a3ce0d978ef38cdb7cbd742e
MD5 7ad3aa7e485e8a22507a3b57eeb5652c
BLAKE2b-256 1810f121f3a40428f5fb2b2c85d4005fd1d82387589d44e7466b0c6538cf3a7f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 33446d6f3cab84c184bffa7575f16a3377ba4249c003b2ab3a667a986f76e314
MD5 259f24f21b4fb1a10025da79fac1a86f
BLAKE2b-256 3a289e14ccef87d5ad3b5b39e72183eb4dff129a0a07ed5177f1b79a80ccf76f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 862ba3f1dc1fd5fc6d0952277f4e9953c31abb6f703bf80775095b0dcd4e64e8
MD5 f22127f91dce55f1b576687fd047aa3c
BLAKE2b-256 357a117292f36f5b12191e95551e74a33f02719393428eabd1480f0eb382162f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 52843733c427ebdd6da8397f69478d013fca0ce4ae990fc5b823f8bc17416c50
MD5 0f8c1820cfa3b7cee93254c49f122bf7
BLAKE2b-256 b9aacb383b010f7eda6c7456c54f403940b16cd02fe7e23cb2575e58d89a85b3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8ec6c8c01edfc0dde6dcae655951cac7f328920e6d8516e085d335093792937
MD5 13e800604963d944d1c498ee08d6feed
BLAKE2b-256 91a223d37b03fa3ca2610067a4fa5c7dd8b464e1c24f4674a2471e313b0a5bb9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c81c290353c80431b27b0d756db527e882ad086e6c96606ffd57003510a2abbc
MD5 c3b3df47110e27b0f731453422878ab3
BLAKE2b-256 5961924a174bcca4cf83e5045ddb5ed7d12980f31a37bffa4660e8dcd71359ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a77e6224808ce9e834e89d1d0e75e7b959fde7fff7f34c53cac4ba88094c6cc8
MD5 48abf7bf172258f8d7ad611bef2727ec
BLAKE2b-256 179f250e1754686b6bfa700b8eb27af4f1608c0936577f9e400d2a3621a04170

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 cd5a296f72edf5aabe58085fa86a693b7b31f06bd1515a44b310b884e61a617f
MD5 f222cff31cdf1c2934072ca2251a50d6
BLAKE2b-256 4c73aacb1f5168081e6ee80165f8a313e0b62fa92c9be9459b137a80775f57dc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 af94492aa899eb87e6437c3618be68b8df1d995d22a2712f6c44f4d2397444ad
MD5 a325a87f9640a6735c4747d524365aa9
BLAKE2b-256 2ec5a52eb0b76b31e7132f18d7ef04edaf4ab533d35bd879f2f9123b92fab969

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 35.3 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.7.1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 0383bc26f83de80fdd7a9d675ff2daf08b4d7716c520268098bfbeb6dfeede14
MD5 33f51ea5f388dd1b1c2376d6b0709692
BLAKE2b-256 5841a02809318b408c9fccf0c2d683a748b5150b057955f18d64d6777d5f09de

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp313-cp313-android_21_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 4db20366b104ef337f56820abed761712ba6c5260db31d6422b5aa3cbefa50e3
MD5 b12e5319a12fb68040e91ba4c8a92448
BLAKE2b-256 4c1bc439778b529a437d9a0cfebe12b8bf4145a32a282b4bf18dee920b9accc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp313-cp313-android_21_arm64_v8a.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 28.1 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.7.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 72ef63bdd9806277218471b145298f93f942b8710cad8644d039bb8637317412
MD5 d51cc6e611aafd24696b6abfd9067e0d
BLAKE2b-256 70faaf63f28ba11b6d1c6e7646449e7eae6a7bd5c9f958a6d4f82b582fa1b03f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 31.9 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.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 751ad2244e4b0dcc719143a9b52efd6d4ab3a6e0531de9aa422a542ef078e38e
MD5 c2c6d9f7b6f81d4c39fe45db22e117a4
BLAKE2b-256 7a9977004b3e68e4eeb64d3f13c93b33b3fecdb5f8bf94b9140d95c0b24ee93a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 31.1 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.7.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3c59a4e0dea8ff1ae7fc1169504a82d61334c82896e95be8fafaa865e78b3a06
MD5 39f2dbaf0730eb3a0348dda686e06c6c
BLAKE2b-256 d54a7bc1d0464e04442eae256f33ee87656ae92a0554f91611e456393277d8cc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d51b0b339d8ec1615e797d16771fbec541fd23cc4ee4af110af55d8116255e40
MD5 920eda2465df0311f092a8b3a25d9f81
BLAKE2b-256 4f620dfb6a2a5ed7b12827135cb50f029041748a3b930c243068ae9a93880928

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 48e1af1959ec0e5bcc65eff8e66e47e27d2d65d69a0b2d1e0b7023c70cb52578
MD5 f8a091b03d3b7297f8e0bc548747ed32
BLAKE2b-256 0857373fa329b9b1119efc2b42b85ed4b2c1fc7bd0882154f52b55d8c1c61028

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b13072d4b2f8cbe208908c38ad454e16a0a2323bae7b9698c89c33bdb93da673
MD5 156d0234af71fcfcf5c97f1414800003
BLAKE2b-256 dd95f04b07674041734aef5d177e9960354723a9f6b1cc409f749af716df8b7e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 797e4a780f6eae0abf99e1519b42ea5cd93d031004c80fb49385d4a210b47f68
MD5 b7575e2c1327c1d14fdbf13a21657e3d
BLAKE2b-256 be5545c547b6c4eb25bdbd07ef33a9bdbe0a2d1ea50210e471cbbc99b7f763e6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3519176963dd11825e92f283b31dac566bf3cbb6b59e2372037170f9a7611643
MD5 f55689e3e5de19387f5a1696deaa55d2
BLAKE2b-256 75f06f819204a51f6fad03c7d71f1fab5f7721018c2df7b0bd88abc93585f04d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75c6ba10f94209ee2087ea13344a4816fe85d349d8ef4c6e55e0fb7b2193f2df
MD5 84599cfb2ef8c113887ba322444dbe7d
BLAKE2b-256 ea7a911b2c6ea96af6fd01022c3b5feb7146acd68d228d1a23a2d1f5aa77b9e1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4b98be721a75741f570c10117190e6ba353981d9ec339ca33ac891e9481622f
MD5 41062310f6b9011dc5f1888accd91ef4
BLAKE2b-256 cc2f3ec42637069ad05938c2b667bbcd26443492d30c70622c45e1c093c792e3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f3e5eea0c6a387edd80fc4c08d88d3f8c73d33dd614bf9e8d0ac3fd1eed6c4fe
MD5 18ec2c0d67760f968f4f4cf84f2d367e
BLAKE2b-256 d49a02b14faa4ab626c64e4c5555e8e35ae7979586f4d1f5fe4cc29ba18e51ce

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54d1b92b2d1b462704191692f99f820e2f74434bc29e13f2eb845516d4345008
MD5 7e0b00c07da02fb5373ca5d9e366e662
BLAKE2b-256 2f84afca49532c9f40b35bdfac76c15edc038e8526e239e6712aa033229601d3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6169425427cdc735ade703873c433bc8ced7f7b8acbc149fbfc5232ae8afd66c
MD5 56aa46e72e14c041a1a355ae50808d1f
BLAKE2b-256 182f773cc4821661db54212bee593d5dc0ce829d56a3b1f7a299503da706c702

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 93feec0ab868dbace1bc0359718b6212818103d6d92e18cc283032ebc05d766d
MD5 cf889bd5523708f45b2360784bec231c
BLAKE2b-256 c336c2a9d450ffc82fef5f4398b569b6929eab39015aa20811f2133cce2763e6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 04f5789e424d896599f5d2b8c815ef8677606471db61781f69b1c6984cb2d301
MD5 38082e3221958fb9491e73fb07eae7ca
BLAKE2b-256 192c51e5ad9923d6f153a907ee038870e4e32c4cf2abc7f7fc46fa97683d5a8e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef90eeda11c3c72ee10749550b44016a4ef31812d747f05a63d347af31198202
MD5 a8a961b69dfe8af5a2e82990c63ad378
BLAKE2b-256 d6e78a56baba72e426643fc07ab0408ecb25f6f338e228c99b309853e12212b2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8ba8526a6eee3e36eab5f084e509bb672ba10f127e92b732b21643993672be93
MD5 7dd09d1e83404cd922b0ab695092d08e
BLAKE2b-256 cf4745b9437d3759b3db58d7a57a60590d82c7299f92c9ed4b968e9f207ef354

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40241adc0e7f48990ccb1604e8a61c8fe2fd29d6840fb3c24f29a02b58e293e3
MD5 d4dd0472aa1fc1a35847ad75ff4b41d6
BLAKE2b-256 c7cfff8cce70213e64618875ed1ccacba32ec3484f95c7949bf69bd534e0eadc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a1adf2649445fba8ae80ebe6777b4a92ea5c6c866ea37fa426e22474eb9d5bf2
MD5 9b5d7c15de5eb2c49042c4cf9d095dfd
BLAKE2b-256 0f0b2fae11b5a51a1e713be151f709cca63bcfc3039804a972e242e48ebfebdf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 28.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.7.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 60055a8fc14a4c0688eaac8c77dc2b1cc9ab5c4c80ce4398a1d9c350b7ffe05e
MD5 3f26a1057446f1d562f6e7c8258a2c1c
BLAKE2b-256 9ef4559ce98d3386d267169e9c0a13dad51a03d9140768fd00186ca75921fd0f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 31.8 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.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5f40e8bb83f58d05997f5c7c11651dc369be09b881eaca4c98b2a70c60e9804
MD5 aea9ef78227e1078846bc43082874237
BLAKE2b-256 7d961ec33621acf3aec83d252697ad9968c753d986a98c89d37d28169b01956e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 31.0 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.7.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c4f1b1de45362c0a2e0a196498d97d95d6f04a50e7435a047cf2924f53248183
MD5 1ffe620bf21b1aa8e8891a31678129aa
BLAKE2b-256 3816553f41229cf074c2ae2e66b84d9de35a39d75d83fa06abbdafbcd9fa5f35

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 265495f9de9c448658a0382dfa3bd2d777416096de9e4734797034150e7f347c
MD5 ef13f30867f67c30ae22a3682ec73023
BLAKE2b-256 32573c39655245cbdcb070444e569ea8d78c4946ba2baf9e9a6842fb43a24284

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 be9b4a7e27a507535eea4c85adf3c71befdcfad81030a221062edb7f4b989bd0
MD5 9355694d5ec1cdd798ab97190c613f32
BLAKE2b-256 90fc4e9cc8fb3ef6f2aca7c9a9a2294b89733209884ac6326a2d88459fe2d1f8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f1423ed4e840f31a52bddd6b9f65f16920f69387b1241c1fb902e10b4d3dfe76
MD5 72fbd9b8c27a2b4920e6e86169b8008c
BLAKE2b-256 083a72c7bd3656b517f810db2b251758f75648630447887a1626d807638813b6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5dccf79f20eb4416cbd8194c86487bc8f2bc8ed6910299e54379b359a1173c8b
MD5 fd805a81229dfa5173512a16a4853cd1
BLAKE2b-256 bfe54f4351beb10d3d9262b0998df89b7e8e83e8567305ee5672cc040b640200

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b62fe766d1a573bbd1a6d8d3958c01f69a7465bd686452487fa9fda4d3d48b5
MD5 2e17561643ad4555fc5973eac57a9d22
BLAKE2b-256 c7777b86daf734105faeffbf4454ddca83572c8fedd9e790953685b1d3db646c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f359bfb4ecd07be3f51a50e4b9feb4f37722f5c0ce690a4e194db4a333b5033
MD5 abc7a4d2efd339d572a1a8a65bc2f090
BLAKE2b-256 bb3894549be8aba0f23b04fd7aa971659d5dcecdde585b66d18c3134349077fe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed8cc9f7b72bc14591fd639e0ae98bc22f4b217fcd9ab96bf706386c7605964b
MD5 cdc73440598dfb85e2341c6f238ee051
BLAKE2b-256 9fb0432b7080f395c3c89538d523cf324e83e252ae37a3eceb4d844c1d7e5c48

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1fb8f77d5ae1db88a7f28441b44d01a3dba6e4850e772c41b158c635d4650d9f
MD5 93083896bf06dcfea36d6a3ab43ee369
BLAKE2b-256 d43b24fffe8b61a38e49a4994f7fa8543a6ea54f01845e222da8a35719995024

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 078b5e52184c5ac91e63c42bce205f3c84b8231f11a40ebdee3cb8a4913a7644
MD5 f85660565fa603196a4f16f0a4e9342b
BLAKE2b-256 c2ff6bcb62ba7a12f5db21bec1d963001949d926963fbe1e0b1fc057c6cedc8d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8160907bb7847e126803d74ea3b7c90aeb275416b2fe2563ac5c6be8733113d0
MD5 9491d0e9ccb5547a88207122d819c9d4
BLAKE2b-256 b4ba23edcea3e24a4ca5ec024154073be7b6b5f1592546ab0784e87aa58c8b6a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cf78e23d37f5a546961a2d7a90708c48f331ca9e64149324dba5168f46ecae4b
MD5 f55ee60ad06bc341b1d4dd42fbc88f07
BLAKE2b-256 ebd7ced1473c28c07dade11944af6cb81d924750a41d667bfcfd5d22b3d8e555

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cd5216faf84dcc46b0110e47bf78ea80fc1ad113862454a67ea46b62286126a9
MD5 b609c2379b87618b21397e8f6e6353b2
BLAKE2b-256 73b7186ce246a374e10aa616a32e661db73b03d41a4d9eedcc6f9cdccf1f8836

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43d7a5abf13c22377ce4ebc995ec7452c1a69e1903114438775afbeb00bb4e48
MD5 57bcb109dec01ca66fc2e2450b3e797d
BLAKE2b-256 7c8630914509b4943da5a7be8c11e9cb8b145abcb492d3b4de57a00de33cc368

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0ffe91c645a84154a98d2700475d87977b143a6790f7fb64556e29cb076bec32
MD5 7098b4f59c507416c6f7a04e7e61d6dd
BLAKE2b-256 5abda798f0c43c76c2adef6d8f19f4e98981f4c4024807da26b79d022afe269c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc808dfa211c9abc8cb0d30308ab3fdbf88a11e9fa526fe67b59fcd144c3369e
MD5 1a0f2c6ff997ee2af0e3617ca6f457e4
BLAKE2b-256 2f6265bb4c406c42ba49a345a70270dc8cdf9671d275c78060a3daa16635158a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a548acf955337291a8bfcf8a648adb4a339e58a20289c27d0ed74aecf71a8ed6
MD5 b788c911874f5c64c5eb5d9d42e5d16f
BLAKE2b-256 a0ae2d1a44b26968a8de810ad60d1e75ceea0c360b59af9040adbd07da6dbdee

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 28.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.7.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a04bc877892a8247985e48d8b6d43cdccb458fa5ae4e3a6c27f5bd565f394e8d
MD5 baacf2ec4a2c68e3314d06c79a075133
BLAKE2b-256 a0e48d5f23fd910f3198af135bf3d68ccef7fea678a8ed354bc9ad6a6239b41a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 31.8 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.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5ee7d1edd65ab0b46f029199113c94f45490a9c59c08f78de18a8989099eac66
MD5 50fe01dfe9aa68890a60f58c29bf74ff
BLAKE2b-256 d66403406d7ff27112c48af9e4c8fea33cfc826b7252ae52c658661a0db05dc3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 31.0 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.7.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 eb5cef89fd42a92eba7954eb89fc072a5bb96c0e8883ccfe20913a682e64489c
MD5 c1b47b0ad31cf9cde77da9f94a9c7909
BLAKE2b-256 909cf60e6d8d86de6d99c5e41cc05dcf82519592c5e6dd2ebffc3ef38e3fb3a0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f1366da9ccd213aed65b138588f883aead29460650ab1cb553ad6423a8cbced
MD5 865a1eee68c9542355ac49204b118ddf
BLAKE2b-256 0cac0a798092bcf149a924515b5671a892afd59f27fcbe3f0b9141f8b9ebac04

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3914afcead5b10b3996cddb76e8ac5360fd0cd7384fd5bc43f5a5725862f370d
MD5 444a8aa61139ac0b646d11d632211b0a
BLAKE2b-256 2a28c9b8b037fb1fd70b11b2829d1d1dff8d57c30f761227be7b427742e093ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fc2e531bb38576bde2746e3b67f550c08bd404bd72ab47bf9236f19b567c3d0f
MD5 9a81b39563664c490c4e3fc20d2ee4a6
BLAKE2b-256 142acfc28372d769ec8080d0ef553d2c44733dc2f62d2d5bffd5c5993abbe955

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 85c3a9d6a71b44ae1c07b43b93a68d01372a28450b6dd56ddda0aa66b3eb8bc6
MD5 927e3b007eb78683b8842a7c856d80ac
BLAKE2b-256 ed34e783800040b6c7ef8b28e3ea8cfe267fdb8be92fbb329e95f9df70b31581

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f8db0f40bfa6527e0ef5feb4b44ca72a65b9e1402a9a583690c3f9f5381647d
MD5 b7a998c079fe697b79ea60121acd5326
BLAKE2b-256 2bf630273465206b4d279ca0e274b68921bb673847ebb370f2c69e8d9d64805f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fea24979b91c29adce0e8ec8a898f34298a311b69f68ccd9d792a3626d14d0b6
MD5 75ef52f281fce62c2dc435feb82e1c3b
BLAKE2b-256 7a32d77eefc238b1aab1c49a5d30dbaaa2415a6ef9017b4ff13df5c94c51f3dd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a76072e9eb4d5fea5c7314820738c06a064d3fdd84689a816ce8ef8ebf0a86b
MD5 1ea9727c886fbbbf22faa6004ad072ad
BLAKE2b-256 93c83e296e7ce301edb62c04bbd87ef517efab7e7b4c1244d24412d34a58d864

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 48839664bd52595078fe405cbb4d454f6bd8bf8cb2112318dbef98207598bb33
MD5 778b0f2cedf00d120790e66d161785bf
BLAKE2b-256 254c3b21c02b57c4f454260ae201983045f2421cccf97360851376e89c8caae9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bc0c3e8588a2a5fc32ce924ffe649216b2340437467c184b17f274f83b86ce7
MD5 a8d1ba2683ccf96420447fd09e6513e0
BLAKE2b-256 b5e257801078f67bc074c09c6d58dc091c0b8b6903bb08d93fbe5ecc7ca3b980

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cafe86a225c78065ee467fbad88badb067b9b6b0af4dae85d4132cea1968e66f
MD5 2f3a051b4d34246d78e7ed07b6d25890
BLAKE2b-256 f53ef2664fb1bd1cbd0a8f79829a677623c036b9416f41232f9a6fef843f3c66

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9d32994c1b68154892b0782d853f4dc85c1cc0660d0f74ba2b20ffff297ebad9
MD5 c7c317d609eff0d6b0af126e8202ab40
BLAKE2b-256 a29909000f9b80b8843dbab518356ca6285eed22a64fc92e8ef6e204721ad22d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 eea00653fda8f0e7036f4fb29de2f7fd1e9166cbbf7718fe81b757f03b274cd4
MD5 e27b4cc86a3ece180ccacd3ffd9adc20
BLAKE2b-256 cf2b9b32e00af2ae58fc8d468a1a202c4948510e61c15d8d6365a29fef6ee93d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5209cb53bd28ae17fd80a0e5e34ab537597e68c6ac298047621450110b813586
MD5 a2169dcd9e920fbd452227bda5658029
BLAKE2b-256 3f85f6e52f8d55a1204f3563fafce7357d1db356156ecdeda3042d8f17bbd367

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cf2c11d6d4868b0ac295a8f3cd10b83fd30a742e33923d4c8e6569044a213889
MD5 5e0a43312471ec45508e621187f111b1
BLAKE2b-256 4ed7ce9a825db4ea64d140baa4be11a9ad3fe7540cd8fa2a1c55bb903cf49e53

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efd03e557a636f92b093598c754ce78ce92190902c46ba191b9b1f1b97296b0d
MD5 ce7ecba790534b5f86e7d3fac226b47c
BLAKE2b-256 9efa8b07415359cdcc26ec7a47c1284e898fb36528f57ee041ce6606fcc9e845

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cf9bebee9bfb67143def88139d3314ad10036c97e7746dc2da0570cc4faa182
MD5 c5f358fa46a92b7f0e4d9b70c0f53f06
BLAKE2b-256 b7fa1efc6ca7bb06d839ae770d2e4b79786cb11ec8224e074b1a365a9fd0e0ef

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 28.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.7.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8fc7abd11159e36651775b168c27fca945fd12aa8bdb45b778d6df17604b6cfb
MD5 d035dcf83012e7da9689e587c526958e
BLAKE2b-256 4514bd8e82c054665eb665851e4334108f8e1044db8d542312bbd7f368233448

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 31.9 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.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6d3f5038b6b57bbb7acdea733b1f4c3944a92887304d23b6813306c3a87e842b
MD5 9ee12af2193dc0e71b3ba6be09faedc6
BLAKE2b-256 854d23c6272bb2840f549ca7292e9aa66b5bbdb22838ba3fdd3e3ccd7de5eea6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 97e15eadf5f627c4b7205b15b534d87d969115450ed97d28d180698b59528637
MD5 a49f7ce8992dea1241ae550985859fb5
BLAKE2b-256 49ac848a9b56d868d1786405da53dc5c52b7465478960f1a6c767f30beebd354

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d43fb33dc9ea42cb2167de26088eee08d5a9814c42a0061eff9fa06ab3d3c638
MD5 ec80aab7919901cff72b4b86f93ccb4d
BLAKE2b-256 bb6bb034f1d5357450ab326ccb74b2afda3e1f3752a6a2d294ecd9ac50d49be3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 413.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.7.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ca4b3fb4429dac08228eb90f2ba25de67bcbe36d77c6e43bbdbcad0c1af00a8b
MD5 e7772efe8f02f0010f9e6e4352bd07ad
BLAKE2b-256 24d0671307f3e0f5fb01acadc9c8078bba9f23bea935f3ef42cbc7ba3c91ddfe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b9bd158dcb8f568898a2cca2de8c5f922eb07f74e0ecb3ccbcd3879ea0d39d8f
MD5 33f436f57e963610d9e73619aef1053a
BLAKE2b-256 48df803d85b2b10e7bed13fcc93b6726ff6dd1f673d9a9632e3b96e398c85c0e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 79726d61188f1603bfca12cf76b0ec85574214495270ee0d1ba6e03b53a0dbb7
MD5 d67e6e71f6fcc4725a769a042d0d42b0
BLAKE2b-256 0f9aa645d6e838986bf626363635d2d8315f377e025b5273b092239429af6bd3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 197.8 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.7.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc1bd779307e4c77fd1b557971624da7c7f93e268ea077821bc2e682c7289086
MD5 4e91bdf13e5f35d383a2f227282b8326
BLAKE2b-256 e8ccbc849704810130b26bbdf02f4aabc990a2bab4fe6947f81391100b04fa39

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8585a501a454fbc44554f6ecd3c91ac4cccebfee11b8d63e4fc8d21eccebb263
MD5 66da3e181a7de7f3f7f1120645e91776
BLAKE2b-256 87702def1373be45580491fe26599ae5d4dda04676a547dc23eb9f819e6511be

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c7f4ca4922a7f0e24b601886a66b1ea603663e60ad6e47fce4198d89f59bc43
MD5 7be565a90a762ee93565140862a7d603
BLAKE2b-256 6354abbc808fee0f0e5da48f439692982500cc0fcf91cb770fbdd92f30f98199

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 076eb64f59ff0314ea0433434896b22f833488317d927bef65633c8c881091ba
MD5 0e13262740b9bc0b6c3e184c2b718146
BLAKE2b-256 b740ba7cc66f023cda008f2cad47c04cdbe74855691a0523f7717105ce6e034a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d32f5c14ba382788f98befc5ce20f095ca5f8248eb350b8aaaf031ca0493e923
MD5 b73ff15d8cc9d9dddc3faddaf09f2d33
BLAKE2b-256 c64db72c296b6e5f81810395503579d4d37a185b75e3f4f993c3280265e878a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b3316bbe21187668d764cbeb99776dc54b7f24d2add40575f51cc189b4f7bd4d
MD5 d5b7f2db234bb0b3d746b71fec386308
BLAKE2b-256 b04beed83534b9a843c2917c75988f78995113cc97806e42bdaf9177d8b8a8ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 85cadc329a8d3cd1d081adfee3dfe2747b031fd35e25f9b1d74bf7d7784b1317
MD5 b87a92a03c940486a23ff4d2f878addb
BLAKE2b-256 28417d253a9fb86933f10505d140c6067782aa41f2d3b030ef66706e19dca768

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 956cafdf8d218b1900ac2b8b17a432ebe03b6782788966409ac4c84785ae5b1b
MD5 da3f64a988a7bf0b20ed996dac49ea6a
BLAKE2b-256 e0ed088688637c1ea1243e3b90cf3a11eac2203350f9f20eb49863db6d788dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a899ba6e41c8f601173b8511b07dced08897dcbcb2b22de29d4e39be6222e909
MD5 78d39a6a5b0b6280a0d61670aea97b80
BLAKE2b-256 7411fec7f204205a9983a56f45fa9ad07f4eb2d45c6ee3af8f199fa263851d13

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 770bcffe3d13cf0b8adc4a0d21e0d361c1e165f278de610c46b8239f165a79b7
MD5 bd05a219a7cd12af7d62662e6dcbbfe7
BLAKE2b-256 3bcdc09397572d03de4925941a3f75141b3284055767a8e588616e412844c13f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be4e6589fea1139a9778f191bd5921f4ef3ea59641c2f34fdb42ee5a2d8debe4
MD5 ff32b91d79eaa2f40b17389414c67044
BLAKE2b-256 4c82ee7e9e6c731b9e113ad7e7a032a3b8c7eb7c5938000f18b3ba57de2c4d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd1b7f148abb16929e805fde80c097699cf2d8c4bbfe069ece584333bcd28999
MD5 dffe578471c37e2a525097e21f7256b6
BLAKE2b-256 f36bf1138d4778d116725cead26c031f26823e4693ed0bc84abd8ef462236e3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 31.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.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5abca266530b017dc4eb9f2c1099f25a11b36f793e34f8303ef3405a3d3dad1f
MD5 a12cefa41e53d7ed0a708a9001b30ddd
BLAKE2b-256 a3009cf96e89142f7c599bbaea53aadde1ac4567ce774bdc4c5f8f0c5acbade1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 30.9 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.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 399c389fcb6d906e48b3b583e3e0d49a737407055bf68cb820c55f3599180923
MD5 7c2985e2275538ee72e2e3dfcdc53880
BLAKE2b-256 2f81450f08b42eb1efb153bb821af9e8c9862d0d8b62e1a89e517078ca100e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cb965ee7ad16aec60bcb70febad67904e65740777b11f9d3ef5fd8aa0651fe7
MD5 43a21d261faed41eabc618d6c86c5add
BLAKE2b-256 0ef0a1d0833c8679bf97821d25ce76f73c536830c5b6d3bfd2aaa087bde685df

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp38-cp38-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 413.3 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.7.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fadebc2d164adad327f831258c911721b68031c2d9d251734671f0cf607cd41f
MD5 329f70383a39abf0f4e8c4bc75342d4c
BLAKE2b-256 4d46cb9244cce1c14bb2dbe54374db57ef6d3e3c899cb788852776b407c3ef70

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3fed6be0dc2afeb220c17e994cd8e0a7c4e533b1af17ab858b3e440fd4c8b4a0
MD5 602613a444c4e834a5ca9186423dd491
BLAKE2b-256 b00542a1b9c427f46caa208c59c2bd575dd48053077432e37ddda08ac4b5e16c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 991a6fbf00b6deebe281f7ff3e333f241760f3a545dbbd2190ee72662d12f757
MD5 46a405217cd725ef56a66bbe50b19613
BLAKE2b-256 14dd7d895bc9120fe05d99c4f290ab819f6053e812754ee74d3e175bdad9522d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.1-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 197.9 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.7.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d918f6171c7af1fe084de23cf0cc3bf32c152bdba75a9c97bb09fd1a5eca40d
MD5 28656124d6558e2840bf2b59a732312a
BLAKE2b-256 85ccb5a2eda76e55113fc9724206a7463a91de0cb6ea812c80f35072acbda403

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e9c6faed8ad8016290f0f53e7da6d9185eb4f8e138c3ba0a036b0569ec1982c
MD5 18f3dae0bf17c8e98e75258e99bb96e9
BLAKE2b-256 e6c129d8d6e81c2cb6e4e839b0dcfa2bdc6a2f6dff1b9f408f6ad77fe3d9824e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 899890c572d67c13be5c27fe77d286040d3c6108d5ce5e1ef2cacc5f4f83dfe1
MD5 ef3451d42b9d517cbcba47fe2b0edfae
BLAKE2b-256 1c2c75cb221bb1111e23aa3b43f700c1889148accaa0bface6a81ef7624adf07

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e6e9b13e658f3e115f9c55558cb5e76d7e05e59beb63d69d9f161913fb24438d
MD5 e488ffa52ff0610841788aced2cf689a
BLAKE2b-256 88e4c64f69433cf462a27236fcff21963e7fb4a3f81bd64e3247d7891e66fa75

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e9d3376b84597376f0a38a83e2e8a55d2ed33dea8f3d5ebeb8a2f2e99b4fa8f
MD5 5884252a2d708df5d44aec783cdca784
BLAKE2b-256 487e6098e2dd18294a7e2b377e0cfe53f80a6c4635d60fe0a7086109ad62c95b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1a2da4dfba78986f21b50d02549ed7a5443b18da745a587c34f3968582ecec0b
MD5 fd1c8118898f6282384e17504e9796fa
BLAKE2b-256 d886b1e6af07eebb636209592fb733968e70642763225588295c62c70e58c6b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a433358ed8f3aaaa19090e81e8976d1ea1ce2ef386917c90bdc9d29907ea45b3
MD5 0940ecfa7b55ce2f43bd41d1a7c5e32e
BLAKE2b-256 3443839173a9ab1bf5588c78f1ea98189c3dc9eb67ee8bd42f77f77c70a5d949

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0f0f93f91de5d6deeaceffb4c317856733c6822d99370c5ec7126d6c531917bb
MD5 2d388afd205289e858ef62a748f94e37
BLAKE2b-256 f533cc0860c59bfd63d31109598be807c0dce3bb489f1892ec31b1d273708e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89709ed4420bdcfffe01d8a5f39539188265ee26c2e721dd0f5adc1f193911c9
MD5 a072386f213d63f7a8ca3b6c825c8733
BLAKE2b-256 41403bf6efe8aa61b6b4df2b8f0f89161b1d5dde0bddcd4c0b619d46e337ffef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4df7f4963f9b5414bd34775baae0eb2f744580bb05f989c616c3d870c127bf8c
MD5 53fcd7ace4cf40a71cca8b262b4a1b76
BLAKE2b-256 b023514d1a2d9fc2a64589485f1ade9d6e97c37d51fafa50e331474cc5125b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7674c3b406fb87cfc27804a5b4c5c4c6be6c9987c9f560467d896f6e3a5a4a25
MD5 3484e031e8ea6585cf900f64047fa533
BLAKE2b-256 2f2b068fb6cff6eaedcc45a68345dec26ad5aa72c5c75d46fd48c19d36c363b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00a14c5c77419442da1a1d5db1e32c909ec875eef124737343b8aa347ee4ad8b
MD5 eb5adc08cc87e5ab027923c8efad5d31
BLAKE2b-256 6620f17b3ea5ad40716d214b2b6be0b00e23d03cdd8c8e712ac1c88884c3850a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

Supported by

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