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.2 2026-07-06

  • Register the “benchmark” pytest mark to avoid PytestUnknownMarkWarning

  • Update C extension docstrings and remove stale comments

v3.7.1 2026-06-24

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

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

  • Replace Py_BuildValue with PyLong_FromUnsignedLong/LongLong for performance

  • Update README examples to use bytes literals

  • Add CodSpeed performance benchmarks and CI workflow

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

v3.7.0 2025-04-25

  • Drop support for Python 3.7

  • Build armv7l manylinux/musllinux wheels

  • Build riscv64 manylinux/musllinux wheels

  • Build android and ios wheels

v3.6.0 2025-10-02

  • Build wheels for Python 3.14

  • Python free-threading support

  • Typing: Use Buffer type stubs

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

v3.5.0 2024-08-17

  • Build wheels for Python 3.13

v3.4.1 2023-10-05

  • Build wheels for Python 3.12

  • Remove setuptools_scm

v3.4.0 2023-10-05

Yanked due to wheels building problem.

v3.3.0 2023-07-29

  • Upgrade xxHash to v0.8.2

  • Drop support for Python 3.6

v3.2.0 2022-12-28

This is the last version to support Python 3.6

  • Build Python 3.11 wheels.

  • Remove setup.py test_suites, call unittest directly

v3.1.0 2022-10-19

  • Type annotations.

  • Enabled muslinux wheels building.

v3.0.0 2022-02-25

  • New set algorithms_available lists all implemented algorithms in xxhash package.

  • Upgrade xxHash to v0.8.1.

  • Drop support for EOL Python versions, require python >= 3.6 from now on.

  • Migrate to github actions and build arm64 wheels for macOS.

  • Always release GIL.

v2.0.2 2021-04-15

  • Fix Travis CI OSX dpl python2.7 get-pip.py error

v2.0.1 2021-04-15

  • Only to trigger Python 3.9 wheels building.

v2.0.0 2020-08-03

  • Require xxHash version >= v0.8.0

  • Upgrade xxHash to v0.8.0

  • XXH3 hashes: xxh3_64, xxh3_128, and their oneshot functions

v1.4.4 2020-06-20

  • Upgrade xxHash to v0.7.3

  • Stop using PEP393 deprecated APIs

  • Use XXH(32|64)_canonicalFromHash to replace u2bytes and ull2bytes

v1.4.3 2019-11-12

  • Upgrade xxHash to v0.7.2

  • Python 3.8 wheels

v1.4.2 2019-10-13

  • Fixed: setup.py fails when reading README.rst and the default encoding is not UTF-8

v1.4.1 2019-08-27

  • Fixed: xxh3.h in missing from source tarball

v1.4.0 2019-08-25

  • Upgrade xxHash to v0.7.1

v1.3.0 2018-10-21

v1.2.0 2018-07-13

  • Add oneshot functions xxh{32,64}_{,int,hex}digest

v1.1.0 2018-07-05

  • Allow input larger than 2GB

  • Release the GIL on sufficiently large input

  • Drop support for Python 3.2

v1.0.1 2017-03-02

  • Free state actively, instead of delegating it to ffi.gc

v1.0.0 2017-02-10

  • Fixed copy() segfault

  • Added CFFI variant

v0.6.3 2017-02-10

  • Fixed copy() segfault

v0.6.2 2017-02-10

  • Upgrade xxHash to v0.6.2

v0.6.1 2016-06-26

  • Upgrade xxHash to v0.6.1

v0.5.0 2016-03-02

  • Upgrade xxHash to v0.5.0

v0.4.3 2015-08-21

  • Upgrade xxHash to r42

v0.4.1 2015-08-16

  • Upgrade xxHash to r41

v0.4.0 2015-08-05

  • Added method reset

  • Upgrade xxHash to r40

v0.3.2 2015-01-27

  • Fixed some typos in docstrings

v0.3.1 2015-01-24

  • Upgrade xxHash to r39

v0.3.0 2014-11-11

  • Change digest() from little-endian representation to big-endian representation of the integer digest. This change breaks compatibility (digest() results are different).

v0.2.0 2014-10-25

  • Make this package hashlib-compliant

v0.1.3 2014-10-23

  • Update xxHash to r37

v0.1.2 2014-10-19

  • Improve: Check XXHnn_init() return value.

  • Update xxHash to r36

v0.1.1 2014-08-07

  • Improve: Can now be built with Visual C++ Compiler.

v0.1.0 2014-08-05

  • New: XXH32 and XXH64 type, which support partially update.

  • Fix: build under Python 3.4

v0.0.2 2014-08-03

  • NEW: Support Python 3

v0.0.1 2014-07-30

  • NEW: xxh32 and xxh64

Project details


Download files

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

Source Distribution

xxhash-3.7.2.tar.gz (83.1 kB view details)

Uploaded Source

Built Distributions

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

xxhash-3.7.2-pp311-pypy311_pp73-win_amd64.whl (32.0 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.7.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.9 kB view details)

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

xxhash-3.7.2-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.2-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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (28.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

xxhash-3.7.2-cp314-cp314t-win32.whl (32.1 kB view details)

Uploaded CPython 3.14tWindows x86

xxhash-3.7.2-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.2-cp314-cp314t-musllinux_1_2_s390x.whl (417.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxhash-3.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl (213.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxhash-3.7.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (196.6 kB view details)

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

xxhash-3.7.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (449.0 kB view details)

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

xxhash-3.7.2-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.2-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.2-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.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (197.1 kB view details)

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

xxhash-3.7.2-cp314-cp314t-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxhash-3.7.2-cp314-cp314t-macosx_10_15_x86_64.whl (34.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxhash-3.7.2-cp314-cp314-win_arm64.whl (29.1 kB view details)

Uploaded CPython 3.14Windows ARM64

xxhash-3.7.2-cp314-cp314-win_amd64.whl (32.7 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

xxhash-3.7.2-cp314-cp314-musllinux_1_2_x86_64.whl (192.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxhash-3.7.2-cp314-cp314-musllinux_1_2_riscv64.whl (276.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxhash-3.7.2-cp314-cp314-musllinux_1_2_aarch64.whl (211.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxhash-3.7.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.4 kB view details)

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

xxhash-3.7.2-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.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (446.1 kB view details)

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

xxhash-3.7.2-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.2-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.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

xxhash-3.7.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (33.7 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxhash-3.7.2-cp314-cp314-android_24_x86_64.whl (35.3 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxhash-3.7.2-cp313-cp313t-win_arm64.whl (28.4 kB view details)

Uploaded CPython 3.13tWindows ARM64

xxhash-3.7.2-cp313-cp313t-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

xxhash-3.7.2-cp313-cp313t-win32.whl (31.4 kB view details)

Uploaded CPython 3.13tWindows x86

xxhash-3.7.2-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.2-cp313-cp313t-musllinux_1_2_s390x.whl (417.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxhash-3.7.2-cp313-cp313t-musllinux_1_2_armv7l.whl (244.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxhash-3.7.2-cp313-cp313t-musllinux_1_2_aarch64.whl (213.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxhash-3.7.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (287.3 kB view details)

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

xxhash-3.7.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (196.5 kB view details)

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

xxhash-3.7.2-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.2-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.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (238.4 kB view details)

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

xxhash-3.7.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.2 kB view details)

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

xxhash-3.7.2-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.2-cp313-cp313t-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xxhash-3.7.2-cp313-cp313t-macosx_10_13_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

xxhash-3.7.2-cp313-cp313-win_arm64.whl (28.2 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

xxhash-3.7.2-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.2-cp313-cp313-musllinux_1_2_s390x.whl (414.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxhash-3.7.2-cp313-cp313-musllinux_1_2_aarch64.whl (210.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxhash-3.7.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.3 kB view details)

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

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

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

xxhash-3.7.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

xxhash-3.7.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (33.7 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxhash-3.7.2-cp313-cp313-android_21_x86_64.whl (35.4 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

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

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxhash-3.7.2-cp312-cp312-win_arm64.whl (28.2 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xxhash-3.7.2-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.2-cp312-cp312-musllinux_1_2_s390x.whl (414.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxhash-3.7.2-cp312-cp312-musllinux_1_2_riscv64.whl (275.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxhash-3.7.2-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.2-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.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.9 kB view details)

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

xxhash-3.7.2-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.2-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.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.4 kB view details)

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

xxhash-3.7.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

xxhash-3.7.2-cp311-cp311-win_arm64.whl (28.2 kB view details)

Uploaded CPython 3.11Windows ARM64

xxhash-3.7.2-cp311-cp311-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.11Windows x86-64

xxhash-3.7.2-cp311-cp311-win32.whl (31.1 kB view details)

Uploaded CPython 3.11Windows x86

xxhash-3.7.2-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.2-cp311-cp311-musllinux_1_2_s390x.whl (414.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxhash-3.7.2-cp311-cp311-musllinux_1_2_armv7l.whl (242.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxhash-3.7.2-cp311-cp311-musllinux_1_2_aarch64.whl (211.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxhash-3.7.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.6 kB view details)

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

xxhash-3.7.2-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.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (446.3 kB view details)

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

xxhash-3.7.2-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.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (237.0 kB view details)

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

xxhash-3.7.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxhash-3.7.2-cp311-cp311-macosx_10_9_x86_64.whl (33.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxhash-3.7.2-cp310-cp310-win_arm64.whl (28.2 kB view details)

Uploaded CPython 3.10Windows ARM64

xxhash-3.7.2-cp310-cp310-win_amd64.whl (31.9 kB view details)

Uploaded CPython 3.10Windows x86-64

xxhash-3.7.2-cp310-cp310-win32.whl (31.1 kB view details)

Uploaded CPython 3.10Windows x86

xxhash-3.7.2-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.2-cp310-cp310-musllinux_1_2_s390x.whl (413.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxhash-3.7.2-cp310-cp310-musllinux_1_2_armv7l.whl (241.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxhash-3.7.2-cp310-cp310-musllinux_1_2_aarch64.whl (210.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxhash-3.7.2-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.2-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.2-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.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.0 kB view details)

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

xxhash-3.7.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.2 kB view details)

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

xxhash-3.7.2-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.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.3 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-3.7.2-cp310-cp310-macosx_10_9_x86_64.whl (33.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-3.7.2-cp39-cp39-win_arm64.whl (28.2 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

xxhash-3.7.2-cp39-cp39-win32.whl (31.1 kB view details)

Uploaded CPython 3.9Windows x86

xxhash-3.7.2-cp39-cp39-musllinux_1_2_x86_64.whl (190.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxhash-3.7.2-cp39-cp39-musllinux_1_2_s390x.whl (413.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxhash-3.7.2-cp39-cp39-musllinux_1_2_riscv64.whl (275.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxhash-3.7.2-cp39-cp39-musllinux_1_2_armv7l.whl (241.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxhash-3.7.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.4 kB view details)

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

xxhash-3.7.2-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.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (211.7 kB view details)

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

xxhash-3.7.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (235.9 kB view details)

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

xxhash-3.7.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-3.7.2-cp39-cp39-macosx_10_9_x86_64.whl (33.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

xxhash-3.7.2-cp38-cp38-win32.whl (31.0 kB view details)

Uploaded CPython 3.8Windows x86

xxhash-3.7.2-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.2-cp38-cp38-musllinux_1_2_s390x.whl (413.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

xxhash-3.7.2-cp38-cp38-musllinux_1_2_armv7l.whl (241.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

xxhash-3.7.2-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.2-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.2-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.2-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.2-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.3 kB view details)

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

xxhash-3.7.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.7 kB view details)

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

xxhash-3.7.2-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.7 kB view details)

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

xxhash-3.7.2-cp38-cp38-macosx_11_0_arm64.whl (30.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

xxhash-3.7.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for xxhash-3.7.2.tar.gz
Algorithm Hash digest
SHA256 e1b2f010df7f9595102682b80e950b7686b48c44fe5d95095d14adf242af34fa
MD5 346dd8a9707c8d31829623e7b4178270
BLAKE2b-256 2fe27ab3f22a940e9280516d4d096811f72d6a335f0b5ad4c68a67b1132990c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 52769f6136903c5f36294d832742d558e8f74142164c07a5fb2d0c8db0d4d621
MD5 86d55fc277d5e9092101c2cc1f0ef480
BLAKE2b-256 b3fca723a796ffde07d91703581c836cf8f64adec6c9ea2e6a13fcd11575bf2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83a08a4624a603e8ea966344c30306b8b4059a10c2d1ebea21c76627f6aeed8a
MD5 5d73355b3c9b961ff3ee68bfcd791aab
BLAKE2b-256 f93dc5c598788015a800215c4ca621122f4ee9fed30d652cde514e69ed971c25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25771a72989ba511e1fcffec256039b264db6d698e81b84dc105e47bb2606229
MD5 2f9c2e2fbda96e1f1e185734956e3e6b
BLAKE2b-256 acdc9463799cf64b1e76e1f7e5eb3ddd4116938ead3fee138923bc5a5ff5ed13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1abaf43cf4c89a2de614c3af056e1db7b06f1ca1ee4ae5c149f2a1a7a709f259
MD5 f7c17c48cdd0d5dbcb2a00e16b68d96f
BLAKE2b-256 a632a7c18d5099693280403e85efbb9aa84700053d0ee36e920f2426dcd34281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76ee9589ffb205fcf191bd137b147df5f3c405238076a66e1f0bdbcea978b580
MD5 6d9260fff3d3487d2497cf49118067a4
BLAKE2b-256 924b95b4d3eb496a9be3a32ce2f735c0ed429043b58f31f253e8b9d92142ea43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 101b2b6c48421e0ba95fb90fbc46471244e2ae99f5560ff8a86002c620b3c1ac
MD5 beb412f9f9e7259c6bb2b3e4ce53dab7
BLAKE2b-256 58ebc4f55e27eb88886ab800db330217882a63ba0c3fd914d9c406e272631e8a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 589d3c028fdd0098aeb57f345c4b36642ad86c556e1c45f2612deebdf9efffda
MD5 1be608403557502235bcf6a61acc5627
BLAKE2b-256 4021c9d4ce313b04f9219ce29ed9327f37773d48ed18015dca836fcbc1b5f720

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d97c0b2ac34e6413498f7854fb46770605789eea9d615e91a69de0c07718a5b0
MD5 594047bd64482bb980d0b4979c55cada
BLAKE2b-256 016ae2445ef20f5e2cbf8fc9c005fc5a7c7d41d1f5430a8fe03ceb4ead1a0c52

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 48745709a3f648bb79ec57a3b559b3d4f53fd9d54b3d797b50ba3d23d47a6385
MD5 caa0bb5564e0455f3b506b0cd6dd699b
BLAKE2b-256 ede142b080a72276d7bc721eff022ff84e00a357bccf7fa5ed417a144edf7f30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d846f9296fd7314d79f41bc72ceba301f029792c805451636153a383efb891b7
MD5 dfa804f9edba02f55cef134cfaa68855
BLAKE2b-256 8608beb0bead6d9e7af597cf425627e7ae7f3177a6a7f9dbea497c929ed701f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 38b0b87e66168e55ba23a88377b58b27ff535fa3b025901de8532242f296e379
MD5 600fa23e183f399e7f7bcc25ebcf475d
BLAKE2b-256 9f3af452029aeaa58653af829ed573347ce2f18b7ec9c4525ff21781578e27c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 23e6dc5ddf3ce69363a4363b7c833b40c77f389123e6bebc462ccff54c751bba
MD5 ac91e5dca416095838d4608ac9783f03
BLAKE2b-256 74e51261c4598426c6658aec7d4b4bc7f5aff524912652d265bec457259396bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ed1120a7d8730cb99b7e065f07f1a42dad77d970e7186abf64a06a9e48088ed0
MD5 a7c4fc80c696f2dadce13ae092a9b2cc
BLAKE2b-256 2e1fbde7120c9c6a036738feaaaca65e5afa111fa146ebee9181262976d3d017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d64564fee037c729ff9a9beed74c0753e8d90744c781816c92d228447df2b182
MD5 03880850118aa04c21ef6340d539371c
BLAKE2b-256 e9a2ec4aec44bc87bd0f43495cf90ac185001468ca36388c160fc8e0307b77f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96a0c0309173d7125774b018a4e6d338673c699e4941bf91183639b68516c383
MD5 5f6ec8d9aec45b0a0c472eaa95baf504
BLAKE2b-256 40e67b24e97747fded1e1d147374c432a0894da9ec14b2f70e8ca4b1e2255e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2bc43ba34d7f9ed5bbabd05f03a54a57f1fb0bbd27f4b35101171dfdcaf1acf
MD5 b713b82d00ff524bdea8e79bc35d2103
BLAKE2b-256 8dd2ee8e7c4f4252ae9a989e4d4cf687c09ce79a288e8f9b20162e83f4c4b6f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0e9ae33cbcc13abd94de4e6aa2c727fc885d9fa77f1c31841f7f2aa77eea79be
MD5 7227def1b8732e53522479f45e4cf0b2
BLAKE2b-256 5c9b74145b781895388848ce34437630317b91da60ef18b2b90b749893a65f5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14d0f9487d157f38f3cc97bfec0d70ad959657a332c266972109ef9e3bf56fc2
MD5 9a913d9be1ca2560479cbd13f0b48f26
BLAKE2b-256 c4bcf784c6abf62e72a072b2dae00884e0e84b5f02e13aa4315e933b205d465b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f2a0a34d991035b0c639b1a3093f7e8c5c39b054cb7c1ac592fc514f10c8a4ef
MD5 0ce0597482f23fc08b32babec35f348d
BLAKE2b-256 07b45ca360c2d87bd9f6508465abfcbc188c3d79adffbf478ba52a8b16f122a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b3bdb008f9e0df01cddb2adb8eb1dd807386c0de585b157c8c70ece802797738
MD5 fea168f8fb5e643a55caa33243925c78
BLAKE2b-256 b9d502a20eeb522c099aa052895de22e1c53165622e02ce8e661ace40b8c3381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c4d9a5d03ba24fd75e8bbe0e49558714a85fada0927535684821541eaacc4174
MD5 364912f13eb1738328e4f03dc86808fa
BLAKE2b-256 08282cca4c465c6cb6aa2ecce76a8226035e152b9f0a3c5d00447a0b29f28498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c99d37d00c7bb8682967e9f7f0d5edadc155f60e745528b60935d994732ff3af
MD5 a1c2c7b4df12aeeb40ab9e386d8f68a4
BLAKE2b-256 62bbdf937d855fac5da47977a4ee7bcc10279e35bde865996b9be5810fe233da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cc51fba2934bd93f88668e3457e07889108ddd335f6a6412994c890cf9f2c546
MD5 833d2c1367373cbf45f03c5606c49b96
BLAKE2b-256 6b4a3356bb7aaf4545485c81d3ef9fbe1cdfb96d9c2029185052aa5a08a54ee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f42fa38f94820560cacd28e739291958b20f7754d9f0872bb140e9f2657f6c98
MD5 43b66a9b1550a2ed033acf156d85712b
BLAKE2b-256 549f9c28464f821ad3f5a604f6829bd477e9e0cf75af7da0d66f14123591b93a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 af5529715bcac19452cf076ec33c979e9e2c72213829cd233bea61ff52756deb
MD5 0e9f893574fecb2e98667acb9863f22b
BLAKE2b-256 fd2732bc60f8e43b570243acc02dc4203a4d905ddbbf3c5852ef2b8957d095e7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 faf014f5e1f7962e425a6e0e47ca3181ba5843fbc2aba996a5517524e3552cb0
MD5 723f715cae06c986a6798f7161d7b275
BLAKE2b-256 61c7f0749faae1ca78acc3ca26ae787d0ee0d719bdc400557aad0ce53c5d49ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 32.7 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 92a6d35bfccf75f6b721ae7052a6bdd93e6f19d8d2490a9e38bcad6ae3072750
MD5 f02b705159325b7e6101b1c84167d335
BLAKE2b-256 e0e50c09273f2c57e288484da35079cfeafbf77537ccbe5d12e55fb934afbaa9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e1fcb43fab0cbc2139c9b62f2bd85dd20dfbfb5b8ccf09ecadf6b47a14164cfb
MD5 5fbaa7f8abc43c45517a8e854fc6c8c0
BLAKE2b-256 07b733aba212b4452e8997c604ab8fff4048f1a3af00b680f46e3263a6659354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d27089508753367fbacc1e885dc8df546ce821b3ce73aa096b4322d26f313a67
MD5 9a57235f6983f6fb3b90be686776ef6e
BLAKE2b-256 642bdac281aafd9614b85172991011dac226e0b846892213af30a3e7daa5e140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c9631b3f971038bb3196eb00f6c5142b903dd850a71855b318e4be7ebcc1de7e
MD5 6dee175f5aa18f92f53f9ae6eeeae3dd
BLAKE2b-256 41bf73c3399b3b9812ff1438cb31795c9122d11a8bfa807d6740efcb7b83221d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 523054f44aee47c50db845f35560cd0f81f8a8b188ad233428f783dd69a70a48
MD5 d2598241724d17f09ed285c4b9c678fe
BLAKE2b-256 1d321a2524df7e53a1d67184b4dc6868bb00c77941e7e3196fa14aa924805ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d8248ca4deb3cd00b3ff9652ba3cee3af92332f405529a0997657f4d5f530e06
MD5 bf5f7110674df00e3717643bd64a61ed
BLAKE2b-256 c4ca566bddaf705202020db8c20f0d584ed2480773f749bacd0e3f8e826e3aba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42632fa7469b4a34d662264ac24b6be081e47fde6f552aa09beb60b535758e32
MD5 d315dc68a4ca10cb9610b124144976dd
BLAKE2b-256 2908ecf678c128982b938b149d333d861fffbf9667e5b957d15951ce77db285c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d595eb3f7556d259227783deaf8cffac0cbe171bda8e9adc5e9fb19412b977c
MD5 265e7be34b33cfc529f2c4208ca6e1e6
BLAKE2b-256 b3d9091b2a5ac40d69564b0378124d1ccf9d8fbf4ffd911a394905799e1298e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7dab3286b2c367b2fab3f620eec8076757d401baacbc80d635b70d0a98465c9
MD5 683567b6c710f88184942a9798a78b94
BLAKE2b-256 1bcbb5e0135c68c5b8afa9cd728de2f1ec0d829cfb9ca9818b49f894f488ab64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8adf38b3caeff6146da0a8a7453737577d4c7180436e02b433700ffd0f52684f
MD5 c0e2f2511143602c47a6c93bdc9d1586
BLAKE2b-256 ac815b62a0c034e6ca1715fe5ef223974a91120e6554cdd053848c1c3baf7466

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63e44764cfcd25de059c6e81c355ed33baa3613216d3be3f4a8748203f771b48
MD5 4281d937d1e66d149ceb2a5e8876daa5
BLAKE2b-256 49e119e8cd363f993d858bd11423f16bbbf5987e890b6d43c41f0eecf5a32485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 aa854911d2b6fb906bd0e0c8eedef3d628a96b7e7ed9d43ca206ac31b81efee3
MD5 5ad1b10640eba538878e27b6878bd720
BLAKE2b-256 f6bfd8e0d24d764fecafb87afd21f1b1da9ca93a7e9976558655d43a52561dda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 600d94435780d94a9dc6f8b8f914a735daf2932386b65eebfa271acd8b6b6c67
MD5 ddb18c74a1557ecf192b59202190532f
BLAKE2b-256 3c610266588a69aa2220de79a04cd4ba1bc2fc429e6a2911ef05099d65f4bc34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 01ef16a676d904507706260e38391ab57b8453157287d5b413ef0b127db12718
MD5 8948834d1c666a4d5be0b7d295b0c237
BLAKE2b-256 007a601ed06f3d98bdb4da0cea03ea673d1011d6bce6cfd370a0cae952450181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc8e3277f6e47e595d4f017bc11798dc2a30883e4c8bbb3fb9258f891341972b
MD5 7d7a6e04763856d4a87e56f395a41fbc
BLAKE2b-256 319786a5a66b0bc1b25baa16f484b870b4eded671d1caa7a53c594f1f2ffeee4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fa865ad28e8f9c4c227b50604aeac47380ec197184507d75b9b75f0c7d6ec130
MD5 9dda86c8cc6e218a01251b21b3b3784f
BLAKE2b-256 aebfbea417228d55f3500c341e477bea77f0bde40eb005e120e36cf3a16f6e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cf7671174c3c37056a355c8d442a36b07047a4b60af99c357d0b4bb9cf42360
MD5 a896110af9aef1d77e20b9749dda639e
BLAKE2b-256 bb020f44299ffba3f40eeac38247f5222b67f7a4f73bb08218f36c181648bb22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 db4a94890dd167f2c5feb0297186ab49d91542d3719cdfd47eb82c9865e516d6
MD5 af779160baca03eb854d6ac79748e62b
BLAKE2b-256 13e8f8c3448a397e9137c772cbfc18ba8590250d408564454827ac72bea1be37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a8870fb3506e43d239fb6949fdee274b372edb68716944ef09887f3dae0eb944
MD5 185ec47e1f98e203f6b74af55c8c6c71
BLAKE2b-256 f032efaae7f31b0938f2f223ac44d28d6505935a19fde8e872c60aec2a6a90f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0883a149b37e4c1f8e3f0fe40dcf8e1fef4c315e1bfe63d450ce64317567c262
MD5 8cc2e73a4cef2c388951526d53a1a036
BLAKE2b-256 44325ada96c9073624ff799f909eacbf7499aac335e35e7ed4ae1e7b9c736397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 7590b67c16a5bdffea99f02b37ba7f9cd48c19bc66490eb954c1728fb723fe73
MD5 14ad5437c4c8adca0e0ad1a5c29cfb3f
BLAKE2b-256 6eae8d1e722b04a8563e1ac0ccd36027461a7bdc241ded90b7f08449e29eec91

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 35.3 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.2-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 9f8972a92d42b4627c58f6f19910f5b72edb6bdc75efdaf13b6135c20afe1b79
MD5 df2d56a54c9a01ef83836113b40686e7
BLAKE2b-256 2ca9f0908711021e83cf7f6f6107d06f30231879f8491294c25f0c3b7c383183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 25d02358195e3b07b3d6317c10f32589ae45bd35a1c9fd43a8923e67a11fb110
MD5 5ae6aa52a871fd0e2a918d563e731b3f
BLAKE2b-256 4f75e66a46d112dad94961e6d5fc67e074b5b496c02c85f7cb2c31086a43ce81

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 0e83d62f10c8fbb6bd84485974fed92fd02ef93c7acae5bd5a37302eac4dfdf9
MD5 b9f1b342ef9afd6457a3a2662a3f3b4a
BLAKE2b-256 9e1b4ce09170e8cf5266836ef44bed9ff67c04fcc9e59546a31331a086e5f16f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 a5e12a31e19d9fb28c11a0562a3b0e97ffe854e62a7f0cac6a4f0febd2400548
MD5 895a977cca8a40cd44f7af0517770071
BLAKE2b-256 5f74397394c450a37fdcfaa73e1d7be1a0cf1f2f47f831712b41a99721ffca4f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 78a067bd74bb01acaa46b848aab50f32a6c43675f74855e5fcaf7085df114436
MD5 a65e4d8daa62725978bd7e13d2e59b24
BLAKE2b-256 4d49decc787140140e6edb3cee061559b625ef693e460f6942099413eca383f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a07b06e5349516554e1c825c81d9853d0b873a749151eb7d732d00696dc5a0b4
MD5 40e592b340565dba2442c3be1e7a5dee
BLAKE2b-256 5a1f93e9e2a39415ee635a501773f2004deea4a8145f370a36aebbaa9e04245b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c1595e3384bacc2e89f890e74eda16f80ed28456d61f50849c7098562135eb91
MD5 ec190c612985b9f9c5ebaa8287af6c24
BLAKE2b-256 8aaf0bda369c7fc6a7a720490ec8dd2b7a0393ab3f89a19668cc29900d7e76b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 274f1c8b47580265027802c0bd9bc1f3ffb5dd5a50e1753765c22a075918ae8f
MD5 12e28793b83fbfef70ad4a403911dee2
BLAKE2b-256 266e854440b3ab981e2a15a46d61f5c6131a326520bd3140ef6a901712ce5daf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5204e9bf85b4aa971ebc5372efec4d8a0260fb2d05734a4d55349f802b85eddc
MD5 97aa4e009292b2facdeaedb7a6374c54
BLAKE2b-256 f4bfd9b7a90081e9a765dc1584e36848c7710c8838992826cfff37660d499989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d436302600a28aef1d47977987a2ae22ac78932ffee15800df88ba1d60c7aa56
MD5 8189bf5d77751b5cb8d098699388312a
BLAKE2b-256 a0b89bb77bab26542c9178c0fdfe18ef7d4afc0c19fd2bba82dd8c31d4f48896

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 238c6623f57b531262f23dd392b75b4a2d7ce73347d4ef6a3ffcbc2c18868355
MD5 ffea1ec8fc0b9c5460251e1a6eb9a195
BLAKE2b-256 507360f47c2fb2ba2920593c64fcc3b2e3cb4ef5cf7e0790a6c880347f6b462c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f99ea1dbb71767a6a9f7828b8edcf63661d12321be95705634e2c815e28b8a2c
MD5 5c7812029037c865cd39f1faa3c73ee7
BLAKE2b-256 7ee45789b457462ed4e8c31be547bfbc42ca12385682c23337589dec18361f15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 451a790943f45727febf13c2f26f425814d7f5e9becde2b95f36692d8affd4b1
MD5 c7f7c2b303fccf00e6525c88aa53b1b6
BLAKE2b-256 b8280ab67022ce47c01b54b4153ccfba2abd6dd4a4c381bcae518aa533389eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f51e823ed4830937e8b057256925889c321ab6c57eacb441d7f76f40e6534d9
MD5 8de011b48ac69f5c80236f9a6af23052
BLAKE2b-256 ace07736a19cb915076361d3a643dd62507a44f807c792db796e43d5e3b2104d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 29902ea662f54325e3b8139122a7bd278863af498c1516334e02fc5d7953fe1c
MD5 d788ad5a91c109cd94c7469cdb779d2a
BLAKE2b-256 28e5c81b95e85a46d5c59db88548e1d5dedc8c3644e75e19531b8dd7cc951383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2837f763eb19b928412f945c45375c85dbf8d33e051c91148e1c52b39b633960
MD5 4d078457e4730198e73ea00f7ca20b06
BLAKE2b-256 fe2c37b6319f78d0b9bb180f647227030c146b76cdc51e30f1b4825247eaa72e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 efc9ec3c937f6012969b1df49a3b4258e872392b23d7f0a4c09c201d15886393
MD5 45a79f3deb0287f9e7e74f9b1b910536
BLAKE2b-256 2dc150bf816b7f21a399dff117185885adc403f729a7fc7acbf172a6be87d264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf47b33853b8d1f1255ce503ca1bb47e8e698298d2bdff2c06a00aefecbf572c
MD5 e341ad3fb4c07701f95b5d4f3b661579
BLAKE2b-256 8be3c9fad04080e194a9f07d502cc60ef519adfc4097e9c8658d92199cd251e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a8f449daba8d6e92e31f1273b729c65ed10af6d1d8f4c91cd94609c81ff2b920
MD5 97a3dc6f0842dca680bcd2e59554889e
BLAKE2b-256 8c09b75c4ed6e3cd6c9231eab985628335afc3bceb2bdb3b004b8e3e2dd49c71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3abb75efdec5bf2636abe394934daa98570536b9af37d6b98f964ec0e9ec3c68
MD5 cc225c9942ffa7c63556d8f79371ff3f
BLAKE2b-256 14e69d9414ca3f147453f2070ad7346f1a7cd039794dc321a3d78e79be4112bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fb1d0653187a2983b973ab0baf6eb3dd0ca964c8708a7c7b014bbd7a164de3c5
MD5 4b23800707b717154ed97f1dbf5997ac
BLAKE2b-256 3320709da7cd30e22e36bc308c625d9dcefb6e12579ca85e2ae88e18ed759db3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7b9670e9838793d420be70cb19456bdfe8d1058dfe0b270354d0e78abbe53042
MD5 60b098b8746944b56e0ec988db44314d
BLAKE2b-256 e2543a500a0a2647b38dd3cd97ba04d1d5ea65441ebd6988739b02e5101b998e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d0fd76f91d39a185357c8a4a701a3177fbfc2068391383152e254c65586d6132
MD5 c30fef0a25cbe3048e25f6c906447438
BLAKE2b-256 b5a673136819622cbc0d5ed02b31d684b38c5aad20cb8c47b5a6b3b15fca140a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7b8166c212c38d4a69caac9d1491f3170232bdb82e47780a29e546a886c55545
MD5 2e494b1cbe41de1fcef88ebf00d7b030
BLAKE2b-256 52988bf4537cc4e11f9e6b72307037bbffb4df7ea497fc6a97b89c30468ff8b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b44317820dcaa9105afbf62398011132198ef6017068973bf35c02ef610b5bac
MD5 123bc4deeffbfb69a74d939b91ee6fcc
BLAKE2b-256 a42bdd7ced0d5cb80bb091202e9f747711e9aa387c445448700ece79f8e8ade0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8a98ef95e5ff9274f7e27bfcb0a1cea2499331b970b59949a04c867d52071380
MD5 30571bb98666ef69fa1b7b7dc9aee15d
BLAKE2b-256 fe1c6269369a2d95d2ffe23aaa508f465ed5fdb3ec4245c2d7d3fe4255cb17eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a5e19be29b4a8fbb8fe04c2b5efa0b614f35e0086c576ecb34e19657fc4e09a2
MD5 735698f88534cdf5e8cf6f002347b683
BLAKE2b-256 2c992e11418e38671bc0f451d6e10b453df035aad50a5827b703115c64855343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b5a7ca543d322f157e49a6e2ec19a3b3a851af7bb3e91507a769deb03cd393d5
MD5 ad1ef435bad0cf1d76962e9dd41d7450
BLAKE2b-256 e74bed05243e3f8ac2285fec078835b2a4fd50221f21fc1271037f71e5739444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 776594b0e7d2ba36aa99efec74826f0e8bd3ac9908786b0b503db0b4913f2be2
MD5 305b42ea3e347daffcb86d2893f4ded1
BLAKE2b-256 58f841b02155432bea05941452503826765fe79e8a2171a4089cbb16c9d31fd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc5ff95b020cc8ccf081a6dd0d5d95a9868d7bb637e988104f42a94b21fce8e7
MD5 7c58210aa2e57bbded3dea5b1aab19fa
BLAKE2b-256 29007e5d7a2a75d82ac449134c35bd757c3adb4b9eb2b5cdb4ca474d5882521a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e553deac7193587298c2e48722d567260bbb0d2a2ca5e59be511efaa4d65173
MD5 9ebd2f490be694f9c4b72a9a9afca1f3
BLAKE2b-256 40bf5367ba8f30d7dafae69d90d40aaaad35e1b3aa1b8073eb7af7b9c0c593df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dbfa698f257ccd33d71b38f4a3ef508e007ca8680b0f0fb25cb010e35c58b66c
MD5 e3e284e95471dad77fa293e15c52767f
BLAKE2b-256 6c27f96f8aee58f7ae2cf890fc3832fb09858f10e5cb6ac20cf58f12690aede7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b38d1f7a06272b2c02c6b52a96130e17a37f5b26e8c7b721907642b1c99f8f82
MD5 ff41b64f63a884008c3adcb27d6dde06
BLAKE2b-256 0ff42aa814eee4ad44c687c45b4ef54bcf7ddee3780b8c199d900e0f5e46d827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4f8b9a0aa88f828b9cdf89ed2caa73a76218ed9ab1cb5751a06f978578a9de36
MD5 e8c1385f8f6ca6112874d7afdb62eba7
BLAKE2b-256 a01f6787900c2ac176ec0f940675c83701e2e89e28047559a68a0b01d9f334c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5201d4cadb40421c9d0bfe07e55aa9fd4578b66434142c9e4d94d638e07bd06f
MD5 7e8d6da8faf848e0d47f35b8eff6cb5b
BLAKE2b-256 fad7bb90a7bf260491783d60a071e71dc7f2136b71827ddfb096d818e03fc8ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 395153f9457a50853152918413e628c4b6b2863faddc23c597b6c7f5cdfdd96d
MD5 63df5bde541f1635d556ede95824745c
BLAKE2b-256 ffd0c60a691bef285622acf2184828d02a72194774c59bd3c03dd037225a1449

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 201354a2ee39e10344a177c68c192504bdbff629065e95663058867483538a18
MD5 dfe7e5a0173db3223bd54b19a1920cbb
BLAKE2b-256 82dd109f0f3b89c21777e1542b6342f21cab204966d40b1793c70ee3bfc5b27e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0a21349dbec5a0d71f168cad3aaa25ad8c2142e5d0ecb1b7b4fafede2a37d3b5
MD5 1b1595e1198cce046a6ac8112a155855
BLAKE2b-256 63a23321781c660fd56768a06a1bf21823a65a43d17f3c7ed05dc76a9a44d9ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c931097701a7b2c925bb664a901c7f856e6b74221468714365ea965d9815258
MD5 9a7db620db0869ab5e893229074f69d7
BLAKE2b-256 17b37747a5c4ea1a34b72cf3559c4baf484d630351848a879a3fe63ee0404797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8eefb5e689fe587e6a3075842f52f9043c913a88e46d88f51bf991563470592f
MD5 489f95a5d6aff3ba01da28d909f637b3
BLAKE2b-256 58bcff7ea692fd3a103e3a41c1d4ad0f15f4ba2eb66d83823a4723f0756b1635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 417f78e95a4b374c8100fd719cdb5d71014417b6d723f1574e499ae0f10d1c62
MD5 118949cd12dd3acc1b34b6f480d41f99
BLAKE2b-256 8ba7be1e02a14289c883ad0c9bec783b17b8cbd3314be18e9c1f74066afe2bcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 6b886355a52e3ba4f9c7de175ad65ea7f5e74c2994aca4451e5e9a345d07086f
MD5 2cfa15159423a07437029008f3f64e9b
BLAKE2b-256 2a83aeb459a4d9863d94118776c38bcd03edcc8abeb68e87e2e8720f18b8e6e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 77192d9906ef7344d514bd01e6c86cbbfc59ce60621d8fe32e7f5c19b40b0ba2
MD5 deccd7122ca1acda82f3679f6e85dd20
BLAKE2b-256 346af00a98cb3d7ce6b655cc757f88901fe32f8cae951d693099f8d23fdd4076

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 35.4 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.2-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 bba9dbd44f8a327ffc8546cbdee7bc539d425b463e7e9b0e7494854616f6c08a
MD5 759ccff5fc5e19df73f99e1292cb2437
BLAKE2b-256 aa46fb17e8b4f46f638705bcd1f40d53a53f4d8fa29364e1c43a0ce2bf177da6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 d130f6dc02ade8c37d33eb5813e5415932701dee8e631f01aaa14064d2a15da7
MD5 ddd9d85d9e98d289896625a727474ea8
BLAKE2b-256 cb57975d03e12eb62c08eb451f941cc59aa963e4377c564907d640a16ffcec92

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b8fb3828197e89a18b9f8e06e2129e56edcc8d51870e051a6ef0ef8b907b24bf
MD5 59118f5a357838becc2d205235522269
BLAKE2b-256 e38a2191757bfc65ff2850074bade9dd2bd5c4191282b4517306817db956e663

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42b43765ea798edfdd176769313eee4e87da9dac13f7b33edd8e1a640844eb98
MD5 8b8dc3931077389ac67b0b36dc335fbb
BLAKE2b-256 fd09efb12de9dd9ede2319187f214d373cb274e623b2459d3ba5b706a1d32725

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 77ef03d590eea3a772ee6cf231ea09295a3984de7b4f8270be4bb20d2bb463d5
MD5 0ab9cfb6e08aa194cd50a3013d5f6e42
BLAKE2b-256 be615ecf5b4dd3b9a3b86c31230d9b37c4ee21cd5877f366e97e60838377a31f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20499f53fb8acd06cb0a2d4bfbf7d34431d868df60241c8df14f10e6dc486f5a
MD5 f9172419a4465361cbb356b147b2b3f2
BLAKE2b-256 f203eceacf05ff761dd2ac671c130093dad66c30f86af94760d77936bb416fd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aa6b5085bfbf6a4e55fd0af7e236ccce84a5546336cd938e50f645728276d718
MD5 5ad58893d894e34debbf329190625747
BLAKE2b-256 1cfa0cee28d64597486e018aaeece34994fefeda4f843b69e0d5566f75301412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9ce0c130ae7cc9b099fedc8bf9fbc417897cce8f407956b7d4119f90f131704f
MD5 e5b6b1b5df24f2ef0defdb899c213c78
BLAKE2b-256 f55e09cf0d835d98e7505066fd28e59bcc01b0af561c00d69fb84f4dff78af2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3dac645bb2ee45cabb80838bb5a88ce681dd5efa565840b7ad4b60eeadaa5664
MD5 a9bd24d4ede844dfd13ec6d3e302a12b
BLAKE2b-256 edfc11b88573383f1ae18f9246d53152074480c86d09050c512ed02f66525a92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e19899d1138c5f2d0bbab861c39d31119dfa81157fadbb3d32739c26a20d59df
MD5 b6c18690d4b21d32375d06e666267918
BLAKE2b-256 5ab767b476c9506504b77d43efa156e38485dc562f4c43332d66fd1ff7ab84f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b5cefdac2b45853b00e132433e2f955281232e5b82a4dfb817d21ada41dc1d1
MD5 d9dea55b2bda8ff5a43513626b1ee79d
BLAKE2b-256 813b06f96e92e6bcef8624ea8fc8c010d58be1da459b06086767472a31c51fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d8b13a99478f685bba9e9c3d9bc53212f1f732fe86d3d40a328a9cbfc0e3ff5
MD5 0b369a8df6956be1a4ca7c5155231b71
BLAKE2b-256 f8466b3f62011153aa3c258ad817bd584deddfedd4349790c215cbd0fd3307b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bf77acd1faf1b6f5c3e9af9ad5a03c691c1c959e962c88d297b879d383c4dccf
MD5 7987e518e9f7fdac6a9a5d7cca51cfc8
BLAKE2b-256 cdd6c00280bc1e2cd4dc4310ae8104bdc7fb0d8322cbba47d016a3086ae4cf09

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3f68de6a4c2cd9fc22019c61da0dd824a15234765f7d41accd6731aff50e4de
MD5 0b38dd009cf52c6f827fe5e883e5ad31
BLAKE2b-256 95963324088372a4da4f261c3300cf7fa4722a39b6cf4bf9c03cf6878ccd5749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 97bfe0494bd1d63d749c63d3b00d66d0761b824f1c6f17e2f2281e4f88b3fc39
MD5 16c8d1e212a33df494c9eeb11b070ae3
BLAKE2b-256 6fd2f23f81339dd1b5b9905aecbf6e3a77ec2622226369d3941d0cc43c51e634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 322330bba70d427accdbbabc08646d83c9612f2a459bfd40c511c7d1ef00099f
MD5 c937dd54d1c03447909f987c5d1a4707
BLAKE2b-256 e2ae5dc8f679785ccdcfec9ce7416362a5a3d91678f1e4de2146937dfbefea40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a1b3ea058f6e60414fdcb4f658b4268626f616942ecde3be6e1267a2f5fe7bb4
MD5 4c8fb2dddd1cc268b9821834b80ed074
BLAKE2b-256 6128c87b4643f8ad372a3956bf4b0001e26341e60845d27f978b72a4a0f39a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f81dbcb1c1d0b5a7ebbb3fafb362e4aecc8805cfff34481b7e30f6fb9c144c0
MD5 2457f212ae59eb777eef9c9ae535db7f
BLAKE2b-256 941e447e71fce76b7aa396248beff96af67feabd442d80e4940a44d9393ff214

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e90e928f676f4a8d8958fc24402936c8bf8e47009441532333556a763a840d6e
MD5 b286a34b3b9836642bcc4d20afc17b73
BLAKE2b-256 a1d8bc953f5c5c97b0cc12fdbf8222b74e820b3c1e305fac49d55e5f9bcb4a85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f778b3fef2d5ef4b6eb04eb0f049ce485baab57e334d8d184b89bd2f6e3832f
MD5 2d0dcad786917c6b193024f24336b02e
BLAKE2b-256 346a028b94bfca0277c10dd023dc2b0095c733afb7923095a76efa832d5b0de6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f27ac8d72b82dbb699206c02ccc6ad9119e8088612d2374ceb540425458e2f52
MD5 0c44b804ac687e87165e8300c8a51191
BLAKE2b-256 bacb6a755710e2cced6552d20f32756ecbbd7d14d3b8634d0c6d056b4f17803a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bfc604d00dbbd57db614b47717c3f15ce654bcf34d9ec6453bc80874ef483b0a
MD5 3fb9486582911fdf2a2636094da67319
BLAKE2b-256 e80f5a64d4e2fc3760f92bd4366e30aaa4bfe4653c892d739ee1b9b122056fb5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 31.9 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45f7ffa09f3569e25625be91ebea25fab6c3e9dae565a3879cab45ecc4015d2d
MD5 cd30f9402b7e3c8c997601a8e8ce7497
BLAKE2b-256 e0808f3e98473c68f11e33c33e74e4c8c02aea5aec3b12fde93a2daa6e869913

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 31.1 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c42db45c33be349ae3da6bf9ce61f02e1ca75b5efa84e4e34562d9e9856cf0fe
MD5 eafcf7cebc11df7c3b1e1d4ec13a5b69
BLAKE2b-256 1f7338bd2941cb6a56cf14c2d8b6025dcb2b799428ce89ba0ce070a921eb12ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e68e11061fa5eeb61368e789cdde4213ab8826c48eb492dce2928fb814ce7161
MD5 9a0a76b46bc052e6892ac43002794d1c
BLAKE2b-256 c7ae13139cc6713a88bebfbc9c8a402336569429c84d26cdc684498f46677b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8875036946567a0f1479bda9ae980d4d92b53b40aaedea729d9cf8a4536ca471
MD5 4fa3e9534f8346960fe31ded3f6707ad
BLAKE2b-256 43e5a21629b2ce69ecd123983f3d0cbafbf7a1eb2051328101af65f0a6f88051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ea1f693b977c3fe8736537ad499db4ba0c4680cfe06245a52596ecf2c2556c78
MD5 116e98cbf198cf9981c12da886455f38
BLAKE2b-256 81d66eb62d4fe7c1b165fbf316371b07e2ab8e698bc4533121fe21ae406808a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 073e5c90032bfbe13769fe74fb4f9c8023542c6aaa148e2cc8e9cee5b1353f99
MD5 3dfb15c08949d17ee8fa2b5ea8380a83
BLAKE2b-256 a18b9ad352790d56f8c8a6a905a7b938c0237a40a510d691891c2e4a71d4424b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da6ffb05ace1f6b14a4fdcd9b4cfccc7a76a41b5de3a656e57f751d5610385d9
MD5 ceed037c9a83e55ef0524dee54a0470c
BLAKE2b-256 9c007bd1935f59e34f51e5647931670ecc9c1960494bf4a4996750ca0a076672

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 30981db907a858da3ab13388fdb06407dbcc6de5c6021dc3d690943112f6d7b0
MD5 d4c5fe124a658d421d58f3196db7fbc2
BLAKE2b-256 e2537eca4734aa7512317285fbb004a7c0ba4f8c9252965756e1e7d39c8db8ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab548d90793fd92c575fc5d50eaea9d6895a93b4671b04c181368ff97af76220
MD5 127d9826b2ecb46a43641d9f1a71b7f3
BLAKE2b-256 9615380077893c846c4f3b42def39814029bf59cd9f3e53f31ca5240b50cf544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f64ac11e3c30217afdb77b197d1f75c0a3c9c7dba7d8e1470e06ee4e7dbf40f4
MD5 86f90499edbb2b5a80dad3b030edc5eb
BLAKE2b-256 c117338e560299ea4acafbbb4f2fa82d8e59884f94b23cb2f1f45142d19ebbf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8629bb9b4575bab74a1e9e3b38a12e8b78b474333892df6b0a84f5cf3c6334c1
MD5 a4f6689f1e4bf515bdd5f62fcdbad49e
BLAKE2b-256 e9ca4e217226a627566aab3272097d9c86047adcf07788f80aa6590ca11009a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b3267c2de6c871f856995766c745c7489c4bf33c9d252a10e0c4874f57aa5875
MD5 6d51b4a6074c42c01124993de1741093
BLAKE2b-256 f32a1a960828ab3b6b27341410ea71095406c2eaa562003b663c802cac53bae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 744f151b9beec7b55f970620441c65f2be443f4bb011db6cb91a49bcfe60f393
MD5 546c86fa71b2423fad343e92bdc7dd60
BLAKE2b-256 f4ad8bf36f11ac116acd269fcdc9165dfd65b321cd6f0cc704723e7e26a35250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0b48fb0275512547b4f4595dfdd157eea26096b430f37d25b801647aae90b893
MD5 d171e19ebf41aacd2f32db6da9a66a11
BLAKE2b-256 1e8286694bb7d122487346cd8aa04eaf6d73bc3cf079e4a4bf5c54b035133a29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2305f14ca2ba17272b6be76b849b83e9acbc614ce5ee29bbfc91dd720b0a9f8
MD5 26a2f6dfc51ed1e35ded153bdf9f3f31
BLAKE2b-256 74adbaa827a283aa147a9ecccf8e2a1547d35f28cfd3e1ec8eda662f5dd693c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a63abf7c8f81a642c588eef0528c468f0474f6e9d5e19738d87c80bb6ed969b9
MD5 f0608f8fae71461ff869ff3a4e174b7d
BLAKE2b-256 eb981807b780dc650cb4a14b0827229609fbb970c4dfbeeb0b03b4cdbd12691d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2d2d90117a90cc98ffbe34947a0b0d18eb51c1442b8213b5d6f396c864ef30a
MD5 2c17c903eda58e9f3e77d43004193b56
BLAKE2b-256 1ed7f33cae8e62686135685b1560783dcb1b6d84397650fc58ee32712aafa956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74ffb791f39fe64e610b477421b0a81a9b68d04081f5b4cc5db72e551bb51296
MD5 cb7f04405943737229f4521112d6d6da
BLAKE2b-256 d307eadf48b87638ac396fb50f655331020224dae4301e70d9c0b8b60c85d11b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 df7187b150a9b931b0dfe663517c3ce769d036dd2c55bda41e701cfed03630cf
MD5 e545b9a696da954da1ce93c74147f1f2
BLAKE2b-256 3290ece0d590198073ed8d9987191fdc11c1091078b1ddb1f931fa0fdeaa09c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 31.9 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54c285ef7824622a488237db6062a6972e5c43ecdb377f0ebfcd5ecec0b9936d
MD5 ba1020e9f5cdfb6516a83771b837f8ef
BLAKE2b-256 5d24465cac66b1048f0a54820067836bd2f3fc849ea5893a461a46da0f9d901e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 31.1 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 02438bfc918379092294eb3e5dbfc07da9770443e2e34f237f2941fde49e9726
MD5 67e4550218ce7c5a0df9c10556101bc9
BLAKE2b-256 31b0a6e7fda7609ec3ef79160e07e851ac8fdb570f1aefacf8faed486417d9c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ce2a73bb8893dc35a5329900ba5e51a9a913cc8f788d5a388757323409c6f1e
MD5 c9459e132530f851e2adbb991be27310
BLAKE2b-256 b6bdf62a0ec68e2fd3bcf74e9a25658c5ca30f4372ae9e67c319240f9569f5f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 312e6f77314ba45ff5aab80bb314d3ae247efbf4136af055b8c745d0305f7ca8
MD5 ec761c029874f763f25c6f0c747f08f5
BLAKE2b-256 dd62c80cc694e1710bf030124a2b24ce05c26a28e11ba315f6273c81ae1b0abb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 24bf2a65cc1eb45d3420d0eb4ca1142d1818afb8f754a9948b909255d4ed385c
MD5 e6ffe732f3ba0c0a41279f7a80518be6
BLAKE2b-256 d69978e44a742da10f5f9bd2b63e3845cc309a78603e106b60c7467400ec9942

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4f3430409c607cd99ce19c7a498d825a0f2d86d961346510c19bc49c868d8c37
MD5 d32248e3e240aa1296059d13785f73aa
BLAKE2b-256 1dabf9d08f82358af906e8d37e583b016420eabcb2f2e987c37d1fe9e2889f92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41fc5daeaa7f01e15338d3010ecb9f3e0422324d7f30d6a0f9623b194da29b5c
MD5 68ae8ec69704f91b59cd55b3935d04a2
BLAKE2b-256 645019d3674bd24fde87b45b02b883f02012e76fd8e177fcbad89f6b448cb2c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22c3dfbbd0f025a74aa0a9858a43ceaf4e8f3acb1c89bfb18f10f72459267279
MD5 a086cc8729b9cb5869020e40aaea469c
BLAKE2b-256 d02ee88e4e69c4b7a841318663cb51f27b646a225e2d670e27d0ba6c20f5c32d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86e621a7848db22a4f0ed327e336904bd113b250c8ccd0c74f67b4d7828021fe
MD5 4db9978c6eafc15e3976754dd4aa4ba4
BLAKE2b-256 25339e44b973c3c15608c070b07550028b8090ef727dfb8f0f253337f64fe8d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 43fc5236723009919001e1ad912949e130504c2c6988c477928894b2da0e1d97
MD5 e24410a1e088e3a3a20293559b6236ec
BLAKE2b-256 363a39068e2dc60e3ff185844bddb56d39eaaa513a456ccbdddb873a596b7124

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 205d9eacd66c8fce7ac1d0e1293fe0009e904c5d8690e8a6a55a89bef73cd6d8
MD5 5c9929fb98c0e29c38485fe1ec15221e
BLAKE2b-256 3542c4351f90cc39c689b8224b1aa7399f0a157e2fad28a1c4f40b377a54ba1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 decf3ad16ba4f32fb646b60c304182b4f7b58dd6278b7657688e7523250ceeb6
MD5 87ee529ded9813d90d011ca3f54f5264
BLAKE2b-256 441620a63cbd755b6879856a9d5b7a553e479b7103f97f9603ba86828d17372e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 76916def553d78a47014e9667e43705ac2c6326b9cadf97a6bf47e93b6c56e12
MD5 c327508b9409e154e26308f748f2383f
BLAKE2b-256 7179123faabd3bffe26356cc59dd7adc49f2fb773f688f46e3757463cf57db0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 203e3fcd59f3f0d486e16530b4a4eb67d33d9e45af06cd7c10255d56f72aceec
MD5 ed21f88831d7bdb04dee537478fe56a7
BLAKE2b-256 766de80435883d43dbb6e5e8d64f37ab06c0bda783beea98d2a96108c8f3e197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57f0b7e639e298a73e282f79f905c42a33341b3285a84a37c8b3349239ebcea6
MD5 c5f2de7b96e8296530c8cb4bb0f5ebe8
BLAKE2b-256 ce9be679a00e364afc1a07d78ca20ed24ea71de5286c27bbcf7e1027bbf7e670

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6ac8ebe19a1784177ae7d69ff6eaa06c24ad0594eca7cc753934828ceed545bb
MD5 e331dfe37438ae562aefa3cf59de2dcc
BLAKE2b-256 9780d62c0dd2669fe0c31beeb030d47614f028d126c6c7b1035df7fbabd612f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0580456f1817bad52ff92707f8d206442aa55f1f4bde2860810b5a9bea66cdf
MD5 49796d6f50db4ce5388e4ba669d58aac
BLAKE2b-256 47b1f9eaca4dfea15cf4bcacc0093e830a84de6c1e82d625cc88bba250f07573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 beb2ea9265865f7bc4977036e98dbded4a9d8a09e745fcbb75e4846e58a2cbb4
MD5 c4d9d98ccd079d939e690fe00524cf8c
BLAKE2b-256 656819a612a5c3cb6333e3ff6229857a281f34ff690f1d695c48f3035ade7aea

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5204d423ed1b5980d5a96987fd81d3670ac88da5af1a504319b817320cbd957b
MD5 e05dd2516f947bf4e13a975cc333bc19
BLAKE2b-256 dc0fb48d527b68912f164cd6ce42f4a36659b65fd7bddf55d54e372a1ef267e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d9b0c2e5b2ea93ee15341e4d960be78b21e6fe491b9666c37ae2a724f5f86cca
MD5 8ed36b3c134b908d9d8df9a4ef4a3ad0
BLAKE2b-256 fec843301583856cdbe0574c2c3f7957a02775392a01c0e816b31325f1c93366

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 31.1 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 766c27bcf3e61a9a32dcaa1829fc1ab7d9468c809ee349d22091ac4ad1eb69b2
MD5 d4859c323fa313d65290d982a95dfd53
BLAKE2b-256 3b8507cad12b7e31d585e93b13e80d11d59d6e61d6790b383eb651a2e2c8cb80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ff196215bdb9657ed1ebefb8c9ad7c147059d03cffcc3dc3e5b679510d249e9
MD5 4775ad02222470389ed74fb46d629907
BLAKE2b-256 04ca8eba20a95c54a51ec8f719c759b64dc6a6da95a1cbc7c6ab46211c4f609c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9a9ddf23def0df0431186e0693e0672e6434ab87007a5116d8ba1f7f1ff15d49
MD5 035429b09e6198b4bc470d8c82a5968d
BLAKE2b-256 ee93f1c460e350b8e534c8b2a4505dd928159245fe957762704b9a99aeac150f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6ab2c5f08a7ff8a8d0297252d752bd16a00840af50bb76a7be02115f07d84008
MD5 8499b5d6573e4b86d84ca31aa03b584c
BLAKE2b-256 c1292442f8fc1a7d44dea9704c732d8907162ffbd59bcda4449ddbd15f589d01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fb688df8703515024efcffd7b75d591cfda61079b50464c51e29bff14b1d5eed
MD5 fe818933622f654f2193c3a7e113873e
BLAKE2b-256 1ba89a9e718a3ef03b01096819413d18a62e0a846c6a95dd4294262c7d71d637

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65791713285610cc9b42c5a1f834d272d46d993879ef4f5178404cb58b1a7fd6
MD5 b89281bdb4d0b7b83440798e48c55ab0
BLAKE2b-256 3078c137381cc901eaf9912dc6fb1b31994e3fa8ed1e511c3a981dbabceaa862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d342990e3be6370c30c1c3a18b7b6185bbc8226a97b0ef2c9c5a9e3f125e639b
MD5 abab72c3cd47903bfc827bf7a3aeaa98
BLAKE2b-256 3a7306f2f9cbf413cbf5f6aa769fe766d6c3c83d806d993233c47f277347d97e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b29b2337a69804f523049a944618214544b5f4e46484b4547bcd0c8a94769d9b
MD5 4b959ff89fba664c373949e86bc146ff
BLAKE2b-256 956805b9c3b546751b2d651d85aad66f67488f241129834848bcf206aa0d43fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3ca7dd37e6a8f21ec17e41d4563439686948517f6bd5021c53d46822f271ca55
MD5 15f66569f9d43bbad23785cb4c81190f
BLAKE2b-256 a1a6a159d9737fd87d12a37b815d4b9e250b7201c27a20742ca36fa9f9a1b2e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1852f0b89fe3fe9b7803ba560c4ff98246d2153d9493fbb19304998adca5a10d
MD5 9aba94e4eb96b46a083d49cc6b62eb41
BLAKE2b-256 338569467dfa363ad8e8a2ff90c36bcfb2fcbe34c6065950c45b4659d8eba36d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c030f3bcc9e6e1dc2c1dba051416e524448edb555e125084f2d27838d03bd372
MD5 d4286ff3e488e3a0b47bec72cbde110f
BLAKE2b-256 a1f979a09292fb1115e8e4cc350c66e5605ee6766f3df3925d4dfa7fae2b82d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d002baf4d6afb0c88e466617990c9d0c97b1906fa56688ed685f6c663c25a0c8
MD5 4e1e8a60058243f766030a36e277a684
BLAKE2b-256 f426986eada25042fa38772ed7a82df8939564cf35437d0e4eb79d2ab29bd025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bec79c9c9671f664348f3c12a8b2e2b69d8617d63b43f3abc1b37697ce9b28f0
MD5 f78ab4bec73580d41eb40d158ea9a924
BLAKE2b-256 e9c4f3fafbfd3275dd959536886d2bed86c8424b972f75e06ddc81018e9eb9d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eedcb98f59436cbb026418e6f7fcc4da70650d16000cd3530a5fe0c99545a311
MD5 340cd053266efd4b90899d2e2bc9dbe0
BLAKE2b-256 7ec173306edb983dc7d26a07b724e78f71078b20022c43f3568901565877526d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 be91abf60967546468b4c9e8e70fef3da95af327b24c2cb80538d5c25656e450
MD5 d541f4a25ada7a86ca0f832274994082
BLAKE2b-256 c90a32290415319cc0cef37fc06716124d9d3e066bbd0d5ce019c307d0f56d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fccd5617d6f27a43b18dabe467dd5f80b71837d12bfa47118bb294dd2bd7f885
MD5 0d77abf20e2bc6eb89db77d2b62b7e12
BLAKE2b-256 026e409019de30c186a45ce7f44260cec1958b581681c255486a7b79c801b882

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15a0403e5da985d2a06d759b9082840f78504a6226150753023d18dd1a4dfc08
MD5 bb7b27ee46a25d5c46b13398cd15d65f
BLAKE2b-256 8dd85d175444a3b1039cfe3503fe979bb6d1e99d0ed50a7e73fa8f00359a8065

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 050198e4b70116feb4998d8a7d5ed387737b2b30a67ee64ce1b0f49028910f88
MD5 372602f64063b5cb0c4337382dceb942
BLAKE2b-256 41898d6445b541ec478fec4bfc68a5c8d4608fe47720d5fefb67a4edcb4c8397

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5d0202749aa93e7b46ee69342c8f599b8ac2ac7388bdfb43bdf94f3ed60289df
MD5 918c8a996fee53cc8a07736bee40bad0
BLAKE2b-256 9e0d2682b677dc1062fe8d1f9044aaaceb58e2f176b65b50edb6b2000f9456bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f814d71c4ca72970389ab95b5fef0fc3647060d34b1dd294be1b910d4fe5527
MD5 87d7d336d651cee94f725b508c545779
BLAKE2b-256 b6efcf006716ed8dddcdbcdd80c7293443eea9853d91f9a54d934fdbbc4dcdc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e1b281e403a96c028c024cd94f5804ce85002bdd7ae2c64b8582f12ee25f301f
MD5 85f96678080412d23327f404bb27d63f
BLAKE2b-256 811182e2bf80e695215e6fbc39f70299789b431b8d3bec1cb03a3a5439a3baaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f9874ba3546dcd769be2fb4e9c7c7941430472f9c37a07178d290c0d363fb094
MD5 f55f8b84e22db96fd89cb48ade3e86fe
BLAKE2b-256 372d8b3eacaf76a41abd4fa770d649ba081cb598e81287aa98a352127a567354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d8f7cc25839c6a1e9c5e61801a4976c53e9c088c78e78de11ba6ff74d6dc3fbf
MD5 22123340559d3fe2ac39075d08c1b7d3
BLAKE2b-256 8b66f5abf3942717121785dc014136ee16698325ebc1f15c8c47ba286102fab1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxhash-3.7.2-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.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 121e9a4888ce3a5a3381094cba50adcbd480cf164adbeb5356ff6d1e12e9b066
MD5 4b5714d532fa440a06710804c7f80fe8
BLAKE2b-256 2722907df8c78d35a8e603629784e5bf834865671739de66479c06e23532e02d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61d4582bb44f2cbfb4edb15d7b2cf015d8f1f8666eef6e96401410cf94d132a0
MD5 5112a06eb4b11cb3760e3f3253da39e6
BLAKE2b-256 c77f492e99f6368f9bb66a82438fbb0122aa7dead2a49947bb9a49a59d66c5e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8d9ce0723dff247476a83b4f9fd113d4fda116ba8da8301adf5015880eb4dc5
MD5 7c497326236d5a8222d3991ac3c23ba0
BLAKE2b-256 d086e770c14314d440797e85c8d1108bd32ece2dbad04c091d5b17833d119032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2c8aa82564207e4dc96a727d69409f48e32a6447de50fffd253de4040e4f27bc
MD5 cfb53310f3d3302ce50cf11edbd8eeb5
BLAKE2b-256 3a79b90a752d694c9fdd3e1902d0be312aeffa41827d4a11ebf45103a7991872

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.2-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.2-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.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f24b8ea793b57c5dd5dd9aef7493a57d68bd64202b4e284deab820627bcc8ac4
MD5 0f3eb39d66a12eb3952688c79c736c14
BLAKE2b-256 b08e4e593d02c60fa7589bc392fb7b2518abb4e7a5f5700099921caa548693c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1538f3b3cbe9411a89a9af923d9399a706cddf323b00324c11e613d6cccf801a
MD5 37dad8cfbffd9c2748b6126ef3b27d65
BLAKE2b-256 57974e5fd91d820c5959b686b36a861261d6d2d3490b07166817808b23e0118e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4b2ca98fcc8dea838587a322972667fa589ecddadf766982d1b9716f2c603b3c
MD5 122f9c019d9e9875007a8a3e119a6e72
BLAKE2b-256 756e6199ca9a2289187874a4cce9d5c91b08746595a9280aa9d35eb1c6412248

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8c10e91c76a0758a91166946141733b714f9dfaecbff6b835a77e8c5f78c8602
MD5 6802585e6289745f1fb70dfb782429fa
BLAKE2b-256 d403afdcead7aa7531c3d3cc7c1e38005a85baecdf092a06cfb97ed0405c972f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98b051293b18fbde4fde0f3ad365b8701cd7038dacd7a4b9b67ac43cf4054876
MD5 70efc1a1117059a792878d2cec13b0f6
BLAKE2b-256 3ca111f231977f4f4c69544cbbf923e4d9b44354e653538c7bfc3aafdeef83ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bc701930455e28a2df0967efbceca53da539fc3da73ebe59c9b1143e8879306e
MD5 d68ca51422a77a47fa80e63195dc01ee
BLAKE2b-256 1046db68c9b48b75345eda7054c69b7d49b64b8790cb96c5d597d62766ec1f66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fd3945ee7e4ba9bac9b0db590975087856f291c5211e8c88df276205a8b49c2
MD5 eb558695e5753bff24f1724753839a9a
BLAKE2b-256 fa4b791745f1b5440b9277ca3905a15bef98f676db7be887db95d85406db1f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxhash-3.7.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76bf877416a5f94116ff23e9d86b86d7e63a414d42e912e82f36286592e0a6cb
MD5 f04f53bcefd5791638a75251ed76c826
BLAKE2b-256 1ca7592fd307170467cf10a9e070672f4796a1c1e70176739f0d855f502037ba

See more details on using hashes here.

Provenance

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