Skip to main content

Python binding for xxHash

Project description

Github Actions Status Latest Version Supported Python versions License

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

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

In [3]: %timeit xxhash.xxh64('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.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.0.tar.gz (82.0 kB view details)

Uploaded Source

Built Distributions

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

xxhash-3.7.0-pp311-pypy311_pp73-win_amd64.whl (31.6 kB view details)

Uploaded PyPyWindows x86-64

xxhash-3.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.5 kB view details)

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

xxhash-3.7.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (36.3 kB view details)

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

xxhash-3.7.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (41.1 kB view details)

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

xxhash-3.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (28.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxhash-3.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (31.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxhash-3.7.0-cp314-cp314t-win_arm64.whl (28.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxhash-3.7.0-cp314-cp314t-win_amd64.whl (32.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxhash-3.7.0-cp314-cp314t-win32.whl (31.6 kB view details)

Uploaded CPython 3.14tWindows x86

xxhash-3.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (194.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp314-cp314t-musllinux_1_2_s390x.whl (417.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxhash-3.7.0-cp314-cp314t-musllinux_1_2_riscv64.whl (277.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (213.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp314-cp314t-musllinux_1_2_i686.whl (201.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxhash-3.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl (243.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (213.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (286.9 kB view details)

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

xxhash-3.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (196.2 kB view details)

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

xxhash-3.7.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (448.5 kB view details)

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

xxhash-3.7.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (215.0 kB view details)

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

xxhash-3.7.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (238.1 kB view details)

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

xxhash-3.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.9 kB view details)

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

xxhash-3.7.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (196.6 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxhash-3.7.0-cp314-cp314t-macosx_10_15_x86_64.whl (33.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxhash-3.7.0-cp314-cp314-win_arm64.whl (28.7 kB view details)

Uploaded CPython 3.14Windows ARM64

xxhash-3.7.0-cp314-cp314-win_amd64.whl (32.3 kB view details)

Uploaded CPython 3.14Windows x86-64

xxhash-3.7.0-cp314-cp314-win32.whl (31.3 kB view details)

Uploaded CPython 3.14Windows x86

xxhash-3.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (191.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp314-cp314-musllinux_1_2_s390x.whl (414.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxhash-3.7.0-cp314-cp314-musllinux_1_2_riscv64.whl (275.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp314-cp314-musllinux_1_2_ppc64le.whl (210.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp314-cp314-musllinux_1_2_i686.whl (198.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxhash-3.7.0-cp314-cp314-musllinux_1_2_armv7l.whl (241.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (210.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.0 kB view details)

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

xxhash-3.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (194.1 kB view details)

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

xxhash-3.7.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.7 kB view details)

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

xxhash-3.7.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.4 kB view details)

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

xxhash-3.7.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.4 kB view details)

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

xxhash-3.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.1 kB view details)

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

xxhash-3.7.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.4 kB view details)

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

xxhash-3.7.0-cp314-cp314-macosx_11_0_arm64.whl (30.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxhash-3.7.0-cp314-cp314-macosx_10_15_x86_64.whl (33.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxhash-3.7.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (33.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxhash-3.7.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (30.7 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxhash-3.7.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (29.7 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxhash-3.7.0-cp314-cp314-android_24_x86_64.whl (35.0 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxhash-3.7.0-cp314-cp314-android_24_arm64_v8a.whl (36.6 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxhash-3.7.0-cp313-cp313t-win_arm64.whl (27.9 kB view details)

Uploaded CPython 3.13tWindows ARM64

xxhash-3.7.0-cp313-cp313t-win_amd64.whl (31.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

xxhash-3.7.0-cp313-cp313t-win32.whl (31.0 kB view details)

Uploaded CPython 3.13tWindows x86

xxhash-3.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl (193.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp313-cp313t-musllinux_1_2_s390x.whl (417.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxhash-3.7.0-cp313-cp313t-musllinux_1_2_riscv64.whl (277.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (213.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp313-cp313t-musllinux_1_2_i686.whl (200.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxhash-3.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl (243.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl (213.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (286.8 kB view details)

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

xxhash-3.7.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (196.1 kB view details)

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

xxhash-3.7.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (448.4 kB view details)

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

xxhash-3.7.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (214.9 kB view details)

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

xxhash-3.7.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (238.0 kB view details)

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

xxhash-3.7.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.8 kB view details)

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

xxhash-3.7.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (196.5 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xxhash-3.7.0-cp313-cp313t-macosx_10_13_x86_64.whl (33.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

xxhash-3.7.0-cp313-cp313-win_arm64.whl (27.8 kB view details)

Uploaded CPython 3.13Windows ARM64

xxhash-3.7.0-cp313-cp313-win_amd64.whl (31.5 kB view details)

Uploaded CPython 3.13Windows x86-64

xxhash-3.7.0-cp313-cp313-win32.whl (30.7 kB view details)

Uploaded CPython 3.13Windows x86

xxhash-3.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (191.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp313-cp313-musllinux_1_2_s390x.whl (414.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxhash-3.7.0-cp313-cp313-musllinux_1_2_riscv64.whl (275.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl (210.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp313-cp313-musllinux_1_2_i686.whl (198.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxhash-3.7.0-cp313-cp313-musllinux_1_2_armv7l.whl (241.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (210.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (284.9 kB view details)

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

xxhash-3.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (194.0 kB view details)

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

xxhash-3.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.5 kB view details)

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

xxhash-3.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.3 kB view details)

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

xxhash-3.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.1 kB view details)

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

xxhash-3.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.0 kB view details)

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

xxhash-3.7.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.2 kB view details)

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

xxhash-3.7.0-cp313-cp313-macosx_11_0_arm64.whl (30.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxhash-3.7.0-cp313-cp313-macosx_10_13_x86_64.whl (33.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxhash-3.7.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (33.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxhash-3.7.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (30.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxhash-3.7.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (29.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxhash-3.7.0-cp313-cp313-android_21_x86_64.whl (35.1 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxhash-3.7.0-cp313-cp313-android_21_arm64_v8a.whl (36.8 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxhash-3.7.0-cp312-cp312-win_arm64.whl (27.8 kB view details)

Uploaded CPython 3.12Windows ARM64

xxhash-3.7.0-cp312-cp312-win_amd64.whl (31.5 kB view details)

Uploaded CPython 3.12Windows x86-64

xxhash-3.7.0-cp312-cp312-win32.whl (30.7 kB view details)

Uploaded CPython 3.12Windows x86

xxhash-3.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (191.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp312-cp312-musllinux_1_2_s390x.whl (414.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxhash-3.7.0-cp312-cp312-musllinux_1_2_riscv64.whl (275.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl (210.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp312-cp312-musllinux_1_2_i686.whl (197.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxhash-3.7.0-cp312-cp312-musllinux_1_2_armv7l.whl (241.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (210.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (284.8 kB view details)

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

xxhash-3.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.9 kB view details)

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

xxhash-3.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.5 kB view details)

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

xxhash-3.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.2 kB view details)

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

xxhash-3.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.4 kB view details)

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

xxhash-3.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.0 kB view details)

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

xxhash-3.7.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.1 kB view details)

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

xxhash-3.7.0-cp312-cp312-macosx_11_0_arm64.whl (30.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxhash-3.7.0-cp312-cp312-macosx_10_13_x86_64.whl (33.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxhash-3.7.0-cp311-cp311-win_arm64.whl (27.7 kB view details)

Uploaded CPython 3.11Windows ARM64

xxhash-3.7.0-cp311-cp311-win_amd64.whl (31.5 kB view details)

Uploaded CPython 3.11Windows x86-64

xxhash-3.7.0-cp311-cp311-win32.whl (30.6 kB view details)

Uploaded CPython 3.11Windows x86

xxhash-3.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (191.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp311-cp311-musllinux_1_2_s390x.whl (414.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxhash-3.7.0-cp311-cp311-musllinux_1_2_riscv64.whl (275.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl (210.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp311-cp311-musllinux_1_2_i686.whl (198.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxhash-3.7.0-cp311-cp311-musllinux_1_2_armv7l.whl (242.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (211.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (285.2 kB view details)

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

xxhash-3.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.9 kB view details)

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

xxhash-3.7.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.8 kB view details)

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

xxhash-3.7.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.4 kB view details)

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

xxhash-3.7.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.7 kB view details)

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

xxhash-3.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.6 kB view details)

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

xxhash-3.7.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.7 kB view details)

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

xxhash-3.7.0-cp311-cp311-macosx_11_0_arm64.whl (30.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxhash-3.7.0-cp311-cp311-macosx_10_9_x86_64.whl (33.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxhash-3.7.0-cp310-cp310-win_arm64.whl (27.7 kB view details)

Uploaded CPython 3.10Windows ARM64

xxhash-3.7.0-cp310-cp310-win_amd64.whl (31.5 kB view details)

Uploaded CPython 3.10Windows x86-64

xxhash-3.7.0-cp310-cp310-win32.whl (30.6 kB view details)

Uploaded CPython 3.10Windows x86

xxhash-3.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (190.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp310-cp310-musllinux_1_2_s390x.whl (413.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxhash-3.7.0-cp310-cp310-musllinux_1_2_riscv64.whl (275.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl (210.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp310-cp310-musllinux_1_2_i686.whl (197.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxhash-3.7.0-cp310-cp310-musllinux_1_2_armv7l.whl (241.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (210.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (284.6 kB view details)

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

xxhash-3.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.3 kB view details)

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

xxhash-3.7.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (444.9 kB view details)

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

xxhash-3.7.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (211.7 kB view details)

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

xxhash-3.7.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (235.9 kB view details)

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

xxhash-3.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.9 kB view details)

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

xxhash-3.7.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (193.8 kB view details)

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

xxhash-3.7.0-cp310-cp310-macosx_11_0_arm64.whl (30.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxhash-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl (33.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxhash-3.7.0-cp39-cp39-win_arm64.whl (27.8 kB view details)

Uploaded CPython 3.9Windows ARM64

xxhash-3.7.0-cp39-cp39-win_amd64.whl (31.5 kB view details)

Uploaded CPython 3.9Windows x86-64

xxhash-3.7.0-cp39-cp39-win32.whl (30.6 kB view details)

Uploaded CPython 3.9Windows x86

xxhash-3.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (190.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp39-cp39-musllinux_1_2_s390x.whl (412.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxhash-3.7.0-cp39-cp39-musllinux_1_2_riscv64.whl (274.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl (209.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp39-cp39-musllinux_1_2_i686.whl (197.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxhash-3.7.0-cp39-cp39-musllinux_1_2_armv7l.whl (240.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp39-cp39-musllinux_1_2_aarch64.whl (209.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (284.4 kB view details)

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

xxhash-3.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.0 kB view details)

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

xxhash-3.7.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (444.5 kB view details)

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

xxhash-3.7.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (211.4 kB view details)

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

xxhash-3.7.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (235.6 kB view details)

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

xxhash-3.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.6 kB view details)

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

xxhash-3.7.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (193.5 kB view details)

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

xxhash-3.7.0-cp39-cp39-macosx_11_0_arm64.whl (30.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxhash-3.7.0-cp39-cp39-macosx_10_9_x86_64.whl (33.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xxhash-3.7.0-cp38-cp38-win_amd64.whl (31.4 kB view details)

Uploaded CPython 3.8Windows x86-64

xxhash-3.7.0-cp38-cp38-win32.whl (30.6 kB view details)

Uploaded CPython 3.8Windows x86

xxhash-3.7.0-cp38-cp38-musllinux_1_2_x86_64.whl (190.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

xxhash-3.7.0-cp38-cp38-musllinux_1_2_s390x.whl (412.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

xxhash-3.7.0-cp38-cp38-musllinux_1_2_riscv64.whl (274.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

xxhash-3.7.0-cp38-cp38-musllinux_1_2_ppc64le.whl (209.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

xxhash-3.7.0-cp38-cp38-musllinux_1_2_i686.whl (197.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

xxhash-3.7.0-cp38-cp38-musllinux_1_2_armv7l.whl (240.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

xxhash-3.7.0-cp38-cp38-musllinux_1_2_aarch64.whl (210.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

xxhash-3.7.0-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (284.8 kB view details)

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

xxhash-3.7.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.6 kB view details)

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

xxhash-3.7.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (445.4 kB view details)

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

xxhash-3.7.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (212.1 kB view details)

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

xxhash-3.7.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.0 kB view details)

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

xxhash-3.7.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (213.3 kB view details)

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

xxhash-3.7.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (194.3 kB view details)

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

xxhash-3.7.0-cp38-cp38-macosx_11_0_arm64.whl (30.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

xxhash-3.7.0-cp38-cp38-macosx_10_9_x86_64.whl (33.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.7.0.tar.gz
Algorithm Hash digest
SHA256 6cc4eefbb542a5d6ffd6d70ea9c502957c925e800f998c5630ecc809d6702bae
MD5 63a291c81b74570031b6052210c6820b
BLAKE2b-256 242fe183a1b407002f5af81822bee18b61cdb94b8670208ef34734d8d2b8ebe9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ec101643395d7f21405b640f728f6f627e6986557027d740f2f9b220955edafe
MD5 e703078564ab69712f59f762fda2cc8b
BLAKE2b-256 0f5f4acfcd490db9780cf36c58534d828003c564cde5350220a1c783c4d10776

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a169a036bed0995e090d1493b283cc2cc8a6f5046821086b843abefff80643bc
MD5 a2f433ae8ab573c7f2df7e05388b4668
BLAKE2b-256 e7f75a484afce0f48dd8083208b42e4911f290a82c7b52458ef2927e4d421a45

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48b542c347c2089f43dc5a6db31d2a6f3cdb04ee33505ec6e9f653834dbb0bde
MD5 7a4003903e4945d7f8a855cbfea59d8c
BLAKE2b-256 bdb1dfe2629f7c77eb2fa234c72ff537cdd64939763df704e256446ed364a16d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7fbec49f5341bbdea0c471f7d1e2fb41ae8925af9b6f28025c28defd8eb94274
MD5 1b3c636d3a4187df19f7881a892509f4
BLAKE2b-256 92caa9c78cb384d4b033b0c58196bd5c8509873cabe76389e195127b0302a741

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5de686e73690cdaf72b96d4fa083c230ec9020bcc2627ce6316138e2cf2fe2d1
MD5 55c27ecd710be9cbe57537f7115611c7
BLAKE2b-256 4f4e075559bd712bc62e84915ea46bbee859f935d285659082c129bdbff679dd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ad3aa71e12ee634f22b39a0ff439357583706e50765f17f05550f92dbf128a23
MD5 27f4dc98277780917148a3a54c9bb259
BLAKE2b-256 54c1e57ac7317b1f58a92bab692da6d497e2a7ce44735b224e296347a7ecc754

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 28.8 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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 468f0fc114faaa4b36699f8e328bbc3bb11dc418ba94ac52c26dd736d4b6c637
MD5 d7fcd0c530b9f29677b5d38b8e5cb011
BLAKE2b-256 7435698e7e3ff38e22992ea24870a511d8762474fb6783627a2910ff22a185c2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 32.5 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8653dd7c2eda020545bb2c71c7f7039b53fe7434d0fc1a0a9deb79ab3f1a4fc1
MD5 72754702b78ca3f00c843413c6c14df1
BLAKE2b-256 44365454f13c447e395f9b06a3e91274c59f503d31fad84e1836efe3bdb71f6a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 31.6 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a04a6cab47e2166435aaf5b9e5ee41d1532cc8300efdef87f2a4d0acb7db19ed
MD5 17e329b8ba882cff92376117d1ce7d67
BLAKE2b-256 ad95a26baa93b5241fd7630998816a4ec47a5a0bad193b3f8fc8f3593e1a4a67

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a6ddec83325685e729ca119d1f5c518ec39294212ecd770e60693cdc5f7eb79
MD5 587ec66f1ddbfeb61c5b4393f409c7dc
BLAKE2b-256 17283798e15007a3712d0da3d3fe70f8e11916569858b5cc371053bc26270832

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 157c49475b34ecea8809e51123d9769a534e139d1247942f7a4bc67710bb2533
MD5 708d51d8c3a6654c6aba8fb0ede7c356
BLAKE2b-256 e14ce186da2c46b87f5204640e008d42730bf3c1ee9f0efb71ae1ebcdfeac681

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 90b9d1a8bd37d768ffc92a1f651ec69afc532a96fa1ac2ea7abbed5d630b3237
MD5 39d5edd7835ee609bbb3d5d4ba9271ab
BLAKE2b-256 79a2e3daa762545921173e3360f3b4ff7fc63c2d27359f7230ec1a7a74e117f6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e15cc9e2817f6481160f930c62842b3ff419e20e13072bcbab12230943092bc
MD5 500157e1b03452761ddadb5332145923
BLAKE2b-256 918c2254e2d06c3ac5e6fe22eaf3da791b87ea823ae9f2c17b4af66755c5752d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd880353cf1ffaf321bc18dd663e111976dbd0d3bbd8a66d58d2b470dfa7f396
MD5 b989d1d1b8b2ad62a50d4be4f0aedd2e
BLAKE2b-256 8ad4174d9cf7502243d586e6a9ae842b1ae23026620995114f85f1380e588bc9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05ece0fe4d9c9c2728912d1981ae1566cfc83a011571b24732cbf76e1fb70dca
MD5 b5522c4172943e17e9e192e0f734b643
BLAKE2b-256 0d5d17651eb29d06786cdc40c60ae3d27d645aa5d61d2eca6237a7ba0b94789b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d4dea659b57443989ef32f4295104fd6912c73d0bf26d1d148bb88a9f159b02
MD5 9420893d7a5ee5852db5436ea6b1ac01
BLAKE2b-256 fc6725decd1d4a4018582ec4db2a868a2b7e40640f4adb20dfeb19ac923aa825

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 84415265192072d8638a3afc3c1bc5995e310570cd9acb54dc46d3939e364fe0
MD5 d10e36d9ff7ef72201b5fdccb59546c7
BLAKE2b-256 8defd2efc7fc51756dc52509109d1a25cefc859d74bc4b19a167b12dbd8c2786

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ec1e080a3d02d94ea9335bfab0e3374b877e25411422c18f51a943fa4b46381
MD5 5bded78740719b913dadff60b2518c94
BLAKE2b-256 7b16a66d0eaf6a7e68532c07714361ddc904c663ec940f3b028c1ae4a21a7b9d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3573a651d146912da9daa9e29e5fbc45994420daaa9ef1e2fa5823e1dc485513
MD5 45f2015c37d988c9abb7b5bacaf3e3bd
BLAKE2b-256 b4f6259fb1eaaec921f59b17203b0daee69829761226d3b980d5191d7723dd83

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1295325c5a98d552333fa53dc2b026b0ef0ec9c8e73ca3a952990b4c7d65d459
MD5 c9b7b8aede40467950de56f3967b9af6
BLAKE2b-256 af783531d4a3fd8a0038cc6be1f265a69c1b3587f557a10b677dd736de2202c1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f9fd595f1e5941b3d7863e4774e4b30caa6731fc34b9277da032295aa5656ee5
MD5 7bd6dc365034130d90f9a9941485af06
BLAKE2b-256 27e4cc57d72e66df0ae29b914335f1c6dcf61e8f3746ddf0ae3c471aa4f15e00

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb16aa13ed175bc9be5c2491ba031b85a9b51c4ed90e0b3d4ebe63cf3fb54f8e
MD5 6abf8e8a3c52904f587dce44da45803f
BLAKE2b-256 a4e9006cb6127baeb9f8abe6d15e62faa01349f09b34e2bfd65175b2422d026b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2d415f18becf6f153046ab6adc97da77e3643a0ee205dae61c4012604113a020
MD5 f24ac16f5690ab8620c0b26f83f5835b
BLAKE2b-256 bd3e49434aba738885d512f9e486db1bdd19db28dfa40372b56da26ef7a4e738

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f1563fdc8abfc389748e6932c7e4e99c89a53e4ec37d4563c24fc06f5e5644b
MD5 e2c5bfb14538c7413407e3b76b82cf2b
BLAKE2b-256 4a3a453846a7eceea11e75def361eed01ec6a0205b9822c19927ed364ccae7cc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fc84bf7aa7592f31ec63a3e7b11d624f468a3f19f5238cec7282a42e838ab1d7
MD5 f1766b7f9f20bfa9136e163e040e5471
BLAKE2b-256 45a046f72244570c550fbbb7db1ef554183dd5ebe9136385f30e032b781ae8f6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 28.7 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c7741c7524961d8c0cb4d4c21b28957ff731a3fd5b5cd8b856dc80a40e9e5acc
MD5 329fe4cd83464ebca808cd76f00166a8
BLAKE2b-256 6d7718bb895eb60a49453d16e17d67990e5caff557c78eafc90ad4e2eabf4570

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 32.3 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2a61e2a3fb23c892496d587b470dee7fa1b58b248a187719c65ea8e94ec13257
MD5 07a73e959f52132172c1835edd4a7b50
BLAKE2b-256 644f44fc4788568004c43921701cbc127f48218a1eede2c9aea231115323564d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 31.3 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 040ea63668f9185b92bc74942df09c7e65703deed71431333678fc6e739a9955
MD5 5e1bb939133bee8826598eeac4e0a469
BLAKE2b-256 b8d06127b623aa4cca18d8b7743592b048d689fd6c6e37ff26a22cddf6cd9d7f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ab9a49c410d8c6c786ab99e79c529938d894c01433130353dd0fe999111077a
MD5 fc1d08e4bb373e97f10a651d1526d588
BLAKE2b-256 9c4285f5b79f4bf1ec7ba052491164adfd4f4e9519f5dc7246de4fbd64a1bd56

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bfe6f92e3522dcbe8c4281efd74fa7542a336cb00b0e3272c4ec0edabeaeaf67
MD5 2d7585718ac324448974e006e45d2084
BLAKE2b-256 92e217ddc85d5765b9c709f192009ed8f5a1fc876f4eb35bba7c307b5b1169f9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a2eae53197c6276d5b317f75a1be226bbf440c20b58bf525f36b5d0e1f657ca6
MD5 802c851cb43bace07b87d5067b6c023e
BLAKE2b-256 90c6be56b58e73de531f39a10de1355bb77ceb663900dc4bf2d6d3002a9c3f9e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 05fd1254268c59b5cb2a029dfc204275e9fc52de2913f1e53aa8d01442c96b4d
MD5 a71c7f7986a5596ac6ba55f6422ccecf
BLAKE2b-256 895ef2ba1877c39469abbefc72991d6ebdcbd4c0880db01ae8cb1f553b0c537d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fd17f14ac0faa12126c2f9ca774a8cf342957265ec3c8669c144e5e6cdb478c
MD5 4198e74455d4a1517622be7c060ee1ff
BLAKE2b-256 9aa9d917a7a814e90b218f8a0d37967105eea91bf752c3303683c99a1f7bfc1f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed4a6efe2dee1655adb73e7ad40c6aa955a6892422b1e3b95de6a34de56e3cbb
MD5 4d8e81b28d5c3cc2cfd721dbfd8ee3e3
BLAKE2b-256 50930e0df1a3a196ced4ca71de76d65ead25d8e87bbfb87b64306ea47a40c00d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a999771ff97bec27d18341be4f3a36b163bb1ac41ec17bef6d2dabd84acd33c7
MD5 ffb928c7d94979e22bfe806955a195d9
BLAKE2b-256 05d9e54b159b3d9df7999d2a7c676ce7b323d1b5588a64f8f51ed8172567bd87

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cb5a888a968b2434abf9ecda357b5d43f10d7b5a6da6fdbbe036208473aff0e2
MD5 12f8107df41de7782bb1c67cf392f5a3
BLAKE2b-256 c96e692302cd0a5f4ac4e6289f37fa888dc2e1e07750b68fe3e4bfe939b8cea3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24cc22070880cc57b830a65cde4e65fa884c6d9b28ae4803b5ee05911e7bafba
MD5 cdcbe36c0cd30064f3464817e1ebd826
BLAKE2b-256 23092bd1ed7f8689b20e51727952cac8329d50c694dc32b2eba06ba5bc742b37

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 322b2f0622230f526aeb1738149948a7ae357a9e2ceb1383c6fd1fdaecdafa16
MD5 26f0a90227b8195fb4b437563042dcb9
BLAKE2b-256 a0d2462001d2903b4bee5a5689598a0a55e5e7cd1ac7f4247a5545cff10d3ebb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f1598916cb197681e03e601901e4ab96a9a963de398c59d0964f8a6f44a2b361
MD5 63f9f2cf0528add30588a656d252fed5
BLAKE2b-256 f2748140e8210536b3dd0cc816c4faaeb5ba6e63e8125ab25af4bcddd6a037b3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f262b8f7599516567e070abf607b9af649052b2c4bd6f9be02b0cb41b7024805
MD5 717483367ae6f48618a21f4be3b8871b
BLAKE2b-256 8e0ed8aecf95e09c42547453137be74d2f7b8b14e08f5177fa2fab6144a19061

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12eca820a5d558633d423bf8bb78ce72a55394823f64089247f788a7e0ae691e
MD5 9453ce474b8984e16f3e05e4a1c1e3f8
BLAKE2b-256 e2266d2a1afc468189f77ca28c32e1c83e1b9da1178231e05641dbc1b350e332

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 565df64437a9390f84465dcca33e7377114c7ede8d05cd2cf20081f831ea788e
MD5 5779b45e32c00fb06d20898388b734a0
BLAKE2b-256 61a2074654d0b893606541199993c7db70067d9fc63b748e0d60020a52a1bd36

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3afec3a336a2286601a437cb07562ab0227685e6fbb9ec17e8c18457ff348ecf
MD5 ae88d6b29899661eb47616acd6210f50
BLAKE2b-256 ed3898ea14ad1517e1461292a65906951458d520689782bfbae111050145bdba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ab9dd2c83c4bbd63e422181a76f13502d049d3ddcac9a1bdc29196263d692bb8
MD5 1a5b34c9d188300cc619d4ce3e380810
BLAKE2b-256 0e3b86b1caa4dee10a99f4bf9521e623359341c5e50d05158fa10c275b2bd079

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 fe32736295ea38e43e7d9424053c8c47c9f64fecfc7c895fb3da9b30b131c9ee
MD5 f67839aff2b1bfe2cda13c0652e3c2ab
BLAKE2b-256 b69108416d9bd9bc3bf39d831abe8a5631ac2db5141dfd6fe81c3fe59a1f9264

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 fa77e7ec1450d415d20129961814787c9abd9a07f98872f070b1fe96c5084611
MD5 d6a6f0cf64ea840d84901bfc3b705548
BLAKE2b-256 c272ff8de73df000d74467d12a59ce6d6e2b2a368b978d41ab7b1fba5ed442be

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 ec68dbba21532c0173a9872298e65c89749f7c9d21538c3a78b5bb6105871568
MD5 0152be49f17abbb443aeda140f07f546
BLAKE2b-256 6870c55fc33c93445b44d8fc5a17b41ed99e3cebe92bcf8396809e63fc9a1165

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 35.0 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.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 506a0b488f190f0a06769575e30caf71615c898ed93ab18b0dbcb6dec5c3713c
MD5 be0cf8855100b51b50a6eade917cb470
BLAKE2b-256 bc01255ec513e0a705d1f9a61413e78dfce4e3235203f0ed525a24c2b4b56345

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 8c5fcfd806c335bfa2adf1cd0b3110a44fc7b6995c3a648c27489bae85801465
MD5 f4bf973822d77b26767fee235d9ddce0
BLAKE2b-256 0ecc431db584f6fbb9312e40a173af027644e5580d39df1f73603cbb9dca4d6b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 27.9 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.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 37d994d0ffe81ef087bb330d392caa809bb5853c77e22ea3f71db024a0543dba
MD5 f0ad7f8b84431e6abde00f91fb975ad1
BLAKE2b-256 a21fb2cf83c3638fd0588e0b17f22e5a9400bdfb1a3e3755324ac0aee2250b88

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 31.8 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.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 2524a1e20d4c231d13b50f7cf39e44265b055669a64a7a4b9a2a44faa03f19b6
MD5 31574d75365a909805b1290664ae0a5c
BLAKE2b-256 7bffd705b15b22f21ee106adce239cb65d35067a158c630b240270f09b17c2e6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 31.0 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.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 178959906cb1716a1ce08e0d69c82886c70a15a6f2790fc084fdd146ca30cd49
MD5 38852e965c4ed9241bf900277f96a75b
BLAKE2b-256 c5e0db909dd0823285de2286f67e10ee4d81e96ad35d7d8e964ecb07fccd8af9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abb65b4e947e958f7b3b0d71db3ce447d1bc5f37f5eab871ce7223bda8768a04
MD5 0b85d12c55c4a545dbab817197045767
BLAKE2b-256 35291a95221a029a3c1293773869e1ab47b07cbbdd82444a42809e8c60156626

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d006faf3b491957efcb433489be3c149efe4787b7063d5cddb8ddaefdc60e0c1
MD5 4b62b53631537694c4b18ff17d1f6632
BLAKE2b-256 c586a081dd30da71d720b2612a792bfd55e45fa9a07ac76a0507f60487473c25

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1910df4756a5ab58cfad8744fc2d0f23926e3efcc346ee76e87b974abab922f4
MD5 31ab4d09c65ae9e8fa9c1283c10f61fe
BLAKE2b-256 a17e106d4067130c59f1e18a55ffadcd876d8c68534883a1e02685b29d3d8153

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c50269d0055ac1faecfd559886d2cbe4b730de236585aba0e873f9d9dadbe585
MD5 be880438d444b88a6b66afef7f9a328f
BLAKE2b-256 2d9480ba841287fd97e3e9cac1d228788c8ef623746f570404961eec748ecb5c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d09dfd2ab135b985daf868b594315ebe11ad86cd9fea46e6c69f19b28f7d25a
MD5 685e33249a2ccea2568f7d45a0becd55
BLAKE2b-256 6e1816f6267160488b8276fd3d449d425712512add292ba545c1b6946bfdb7dd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43475925a766d01ca8cd9a857fd87f3d50406983c8506a4c07c4df12adcc867f
MD5 983c2020f6eb6e32964b7c48ff95abed
BLAKE2b-256 0c7e721118ffc63bfff94aa565bcf2555a820f9f4bdb0f001e0d609bdfad70de

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c72500a3b6d6c30ebfc135035bcace9eb5884f2dc220804efcaaba43e9f611dd
MD5 109e2617abb5f0cb3dd259570dd67e2b
BLAKE2b-256 0b0a0793e405dc3cf8f4ebe2c1acec1e4e4608cd9e7e50ea691dabbc2a95ccbb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 503722d52a615f2604f5e7611de7d43878df010dc0053094ef91cb9a9ac3d987
MD5 765627a2757918abccc326e4e3e49b9d
BLAKE2b-256 8a5c0cfceb024af90c191f665c7933b1f318ee234f4797858383bebd1881d52f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b1bde10324f4c31812ae0d0502e92d916ae8917cad7209353f122b8b8f610c3
MD5 b4649713bcf4cb2695aae52fc9851ecd
BLAKE2b-256 748ab745efeeca9e34a91c26fdc97ad8514c43d5a81ac78565cba80a1353870a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 030c0fd688fce3569fbb49a2feefd4110cbb0b650186fb4610759ecfac677548
MD5 b38f169811bcb3e872d4565496adbd61
BLAKE2b-256 4daa09a095f22fdb9a27fbb716841fbff52119721f9ca4261952d07a912f7839

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3bb5fd680c038fd5229e44e9c493782f90df9bef632fd0499d442374688ff70b
MD5 9dfcc7945be6fc02a2940e0beaf3e63d
BLAKE2b-256 70f5736db5de387b4a540e37a05b84b40dc58a1ce974bfd2b4e5754ce29b68c3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c9b31ab1f28b078a6a1ac1a54eb35e7d5390deddd56870d0be3a0a733d1c321c
MD5 82f4d44a37e7efe0c1743a32b186fafd
BLAKE2b-256 8bfd778f60aa295f58907938f030a8b514611f391405614a525cccd2ffc00eb5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc026e3b89d98e30a8288c95cb696e77d150b3f0fb7a51f73dcd49ee6b5577fa
MD5 5fab318916b76aeff9a0b307aa00ad9a
BLAKE2b-256 2229f10d7ff8c7a733d4403a43b9de18c8fabc005f98cec054644f04418659ee

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ad37c7792479e49cf96c1ab25517d7003fe0d93687a772ba19a097d235bbe41e
MD5 c5a88734aa220739fe33ec240cc77188
BLAKE2b-256 0d3f75937a5c69556ed213021e43cbedd84c8e0279d0d74e7d41a255d84ba4b1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f4608a06e4d61b7a3425665a46d00e0579122e1a2fae97a0c52953a3aad9aa3
MD5 4c0e1b7d421df214ff11b62cf65161c9
BLAKE2b-256 07f236d3310161db7f72efb4562aadde0ed429f1d0531782dd6345b12d2da527

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a3b19a42111c4057c1547a4a1396a53961dca576a0f6b82bfa88a2d1561764b2
MD5 c74d51d37e46935ee97056403bbe3720
BLAKE2b-256 1c47ddbd683b7fc7e592c1a8d9d65f73ce9ab513f082b3967eee2baf549b8fc6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 27.8 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 54a675cb300dda83d71daae2a599389d22db8021a0f8db0dd659e14626eb3ecc
MD5 cdd312fa9fa920e3a2fce10c8600ab7a
BLAKE2b-256 8152bacc753e92dee78b058af8dcef0a50815f5f860986c664a92d75f965b6a5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 31.5 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 875811ba23c543b1a1c3143c926e43996eb27ebb8f52d3500744aa608c275aed
MD5 2490450a0b153b75fabfe316597f7cf0
BLAKE2b-256 9957d849a8d3afa1f8f4bc6a831cd89f49f9706fbbad94d2975d6140a171988c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 30.7 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d798c1e291bffb8e37b5bbe0dda77fc767cd19e89cadaf66e6ed5d0ff88c9fe6
MD5 44f9d0f8f545c1b35310e2bdbb0308cd
BLAKE2b-256 7621b96d58568df2d01533244c3e0e5cbdd0c8b2b25c4bec4d72f19259a292d7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 151d7520838d4465461a0b7f4ae488b3b00de16183dd3214c1a6b14bf89d7fb6
MD5 755a2fdcf466119d1016b75783ae5805
BLAKE2b-256 3a6d019a11affd5a5499137cacca53808659964785439855b5aa40dfd3412916

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6be4d70d9ab76c9f324ead9c01af6ff52c324745ea0c3731682a0cf99720f1fe
MD5 8e49fd1f2023a821c9bf94d67f6bc09b
BLAKE2b-256 92fe198b3763b2e01ca908f2154969a2352ec99bda892b574a11a9a151c5ede4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3b6b3d28228af044ebcded71c4a3dd86e1dbd7e2f4645bf40f7b5da65bb5fb5a
MD5 2f115dd98423a84248c30d31f41b4ec7
BLAKE2b-256 21e6d7e7baef7ce24166b4668d3c48557bb35a23b92ecadcac7e7718d099ab69

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6e934bbae1e0ec74e27d5f0d7f37ef547ce5ff9f0a7e63fb39e559fc99526734
MD5 c1c011351b6c44d426b42e1053f25b0d
BLAKE2b-256 612b876e722d533833f5f9a83473e6ba993e48745701096944e77bbecf29b2c3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5886ad85e9e347911783760a1d16cb6b393e8f9e3b52c982568226cb56927bdc
MD5 7c72aee712d8e6b9c3c1bd869cfbea65
BLAKE2b-256 4a2c6763d5901d53ac9e6ba296e5717ae599025c9d268396e8faa8b4b0a8e0ac

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 970f9f8c50961d639cbd0d988c96f80ddf66006de93641719282c4fe7a87c5e6
MD5 478765922a371be11319740c70363500
BLAKE2b-256 aafb976a3165c728c7faf74aa1b5ab3cf6a85e6d731612894741840524c7d28c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ad86695c19b1d46fe106925db3c7a37f16be37669dcf58dcc70a9dd6e324676
MD5 f75df2df3bb5e3493ee37a80d4b57c21
BLAKE2b-256 77d54fd0b59e7a02242953da05ff679fbb961b0a4368eac97a217e11dae110c1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0ff71596bd79816975b3de7130ab1ff4541410285a3c084584eeb1c8239996fd
MD5 616ecb32035c3392753f0564c6baffd8
BLAKE2b-256 b919aeac22161d953f139f07ba5586cb4a17c5b7b6dff985122803bb12933500

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 496736f86a9bedaf64b0dc70e3539d0766df01c71ea22032698e88f3f04a1ce9
MD5 7e304c8fd98642fd70f9aae8a47d1e73
BLAKE2b-256 6559172424b79f8cfd4b6d8a122b2193e6b8ad4b11f7159bb3b6f9b3191329bb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f14bb8b22a4a91325813e3d553b8963c10cf8c756cff65ee50c194431296c655
MD5 f75e2b17aae78644f718ef6ca226a111
BLAKE2b-256 03fbf1a379cbc372ae5b9f4ab36154c48a849ca6ebe3ac477067a57865bf3bc6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2220af08163baf5fa36c2b8af079dc2cbe6e66ae061385267f9472362dfd53c6
MD5 d4c2fd16eedadc4cf654daec49a32fdb
BLAKE2b-256 3404fd595a4fd8617b05fa27bd9b684ecb4985bfed27917848eea85d54036d06

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e64a7c9d7dfca3e0fafcbc5e455519090706a3e36e95d655cec3e04e79f95aaa
MD5 bb86cb89da92f668a97865730e84fd22
BLAKE2b-256 8b911ce5a7d2fdc975267320e2c78fc1cecfe7ab735ccbcf6993ec5dd541cb2c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 921c14e93817842dd0dd9f372890a0f0c72e534650b6ab13c5be5cd0db11d47e
MD5 3e4f320d983733d31dd8d8cb9493006c
BLAKE2b-256 f329a804ded9f5d3d3758292678d23e7528b08fda7b7e750688d08b052322475

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 50e879ebbac351c81565ca108db766d7832f5b8b6a5b14b8c0151f7190028e3d
MD5 c40b6900464228152f2778bf3f885687
BLAKE2b-256 df5e8f9158e3ab906ad3fec51e09b5ea0093e769f12207bfa42a368ca204e7ab

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91c3b07cf3362086d8f126c6aecd8e5e9396ad8b2f2219ea7e49a8250c318acd
MD5 c34e7c84afb7b2bd32649632f07d56ac
BLAKE2b-256 2a6e46b84017b1301d54091430353d4ad5901654a3e0871649877a416f7f1644

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a6d73a830b17ef49bc04e00182bd839164c1b3c59c127cd7c54fcb10c7ed8ee8
MD5 79005c459975987e2274c624b76dba07
BLAKE2b-256 89ccc7dc6558d97e9ab023f663d69ab28b340ed9bf4d2d94f2c259cf896bb354

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0c72fe9c7e3d6dfd7f1e21e224a877917fa09c465694ba4e06464b9511b65544
MD5 26000580ea7f5acbf2c8d9cc92ccaa3c
BLAKE2b-256 f440d84951d80c35db1f4c40a29a64a8520eea5d56e764c603906b4fe763580f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 54876a4e45101cec2bf8f31a973cda073a23e2e108538dad224ba07f85f22487
MD5 3999ff9fb9515d3d9214f095d5dc899f
BLAKE2b-256 2383e97d3e7b635fe73a1dfb1e91f805324dd6d930bb42041cbf18f183bc0b6d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 fddbbb69a6fff4f421e7a0d1fa28f894b20112e9e3fab306af451e2dfd0e459b
MD5 b9b122d0685f6bf4fec69096844073f9
BLAKE2b-256 bf114cc834eb3d79f2f2b3a6ef7324195208bcdfbdcf7534d2b17267aa5f3a8f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 35.1 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.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 845d347df254d6c619f616afa921331bada8614b8d373d58725c663ba97c3605
MD5 cf243fd727361cd9821c2e46aa4a6a72
BLAKE2b-256 41d0abc6c9d347ba1f1e1e1d98125d0881a0452c7f9a76a9dd03a7b5d2197f23

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 4b6d6b33f141158692bd4eafbb96edbc5aa0dabdb593a962db01a91983d4f8fa
MD5 608a5ad932fde8092939f33a9ab6928f
BLAKE2b-256 c1cad5174b4c36d10f64d4ca7050563138c5a599efb01a765858ddefc9c1202a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 27.8 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7d7148180ec99ba36585b42c8c5de25e9b40191613bc4be68909b4d25a77a852
MD5 ad9b49c090cceaa15d6c6aafde75ef54
BLAKE2b-256 98a01fd0ea1f1b886d9e7c73f0397571e22333a7d79e31da6d7127c2a4a71d75

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 31.5 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7bd7bc82dd4f185f28f35193c2e968ef46131628e3cac62f639dadf321cba4d1
MD5 76951e2ba114ddc38f155d67642f4560
BLAKE2b-256 b91b104b41a8947f4e1d4a66ce1e628eea752f37d1890bfd7453559ca7a3d950

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 30.7 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 74bbd92f8c7fcc397ba0a11bfdc106bc72ad7f11e3a60277753f87e7532b4d81
MD5 216a7166d0982e03434d6e5060adfaa5
BLAKE2b-256 d469a929cf9d1e2e65a48b818cdce72cb6b69eab2e6877f21436d0a1942aff43

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b59ee2ac81de57771a09ecad09191e840a1d2fae1ef684208320591055768f83
MD5 93878ed69bc8a5075d922e37fcabfed2
BLAKE2b-256 a0aa5c58e9bc8071b8afd8dcf297ff362f723c4892168faba149f19904132bf4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 31e3516a0f829d06ded4a2c0f3c7c5561993256bfa1c493975fb9dc7bfa828a1
MD5 8a13b692a5bedb994c78c0fe3fde5bf7
BLAKE2b-256 6234c2c26c0a6a9cc739bc2a5f0ae03ba8b87deb12b8bce35f7ac495e790dc6d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 44fba4a5f1d179b7ddc7b3dc40f56f9209046421679b57025d4d8821b376fd8d
MD5 1ba68ef9ef8d9772c5ddc6aa174f5a15
BLAKE2b-256 8a85237e446c25abced71e9c53d269f2cef5bab8a82b3f88a12e00c5368e7368

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 03f8ff4474ee61c845758ce00711d7087a770d77efb36f7e74a6e867301000b8
MD5 15c61b9ddb9084c4d861d814a69e277e
BLAKE2b-256 c6755f42a1a4c78717d906a4b6a140c6dbf837ab1f547a54d23c4e2903310936

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 418a463c3e6a590c0cdc890f8be19adb44a8c8acd175ca5b2a6de77e61d0b386
MD5 d6704ff328673dd3f4959ec17caf714d
BLAKE2b-256 3e5049b1afe610eb3964cedcb90a4d4c3d46a261ee8669cbd4f060652619ae3c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 073c23900a9fbf3d26616c17c830db28af9803677cd5b33aea3224d824111514
MD5 a5f9fe224ce73e8bebcb87b3f2f840f4
BLAKE2b-256 7233d219975c0e8b6fa2eb9ccd486fe47e21bf1847985b878dd2fbc3126e0d5c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d610aa62cdb7d4d497740741772a24a794903bf3e79eaa51d2e800082abe11e5
MD5 aea9f4f0aa7750207fa620aaae845788
BLAKE2b-256 d6f353df3719ab127a02c174f0c1c74924fcd110866e89c966bc7909cfa8fa84

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1d398f372496152f1c6933a33566373f8d1b37b98b8c9d608fa6edc0976f23b2
MD5 adb8b40efb5993f2c4b9b73c01bf656d
BLAKE2b-256 d590aaa09cd58661d32044dbbad7df55bbe22a623032b810e7ed3b8c569a2a6f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13805f0461cba0a857924e70ff91ae6d52d2598f79a884e788db80532614a4a1
MD5 bf26824286324bc078d60229e2a39a50
BLAKE2b-256 4037558f5a90c0672fc9b4402dc25d87ac5b7406616e8969430c9ca4e52ee74d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7c4d596b7676f811172687ec567cbafb9e4dea2f9be1bbb4f622410cb7f40f40
MD5 46e83cbc6ad26db3c602cf48b966e32c
BLAKE2b-256 2e6702f07a9fd79726804190f2172c4894c3ed9a4ebccaca05653c84beb58025

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 31ab1461c77a11461d703c88eb949e132a1c6515933cf675d97ec680f4bd18de
MD5 61f228253bd0211b61964c1271e9cf40
BLAKE2b-256 22c0f3a9384eaaed9d14d4d062a5d953aa0da489bfe9747877aa994caa87cd0b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a6545e6b409e3d5cbafc850fb84c55a1ca26ed15a6b11e3bf07a0e0cd84517c8
MD5 a51325437aad95142027d1f4ff9d13b4
BLAKE2b-256 de605a91644615a9e9d4e42c2e9925f1908e3a24e4e691d9de7340d565bea024

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3e7b689c3bce16699efcf736066f5c6cc4472c3840fe4b22bd8279daf4abdac
MD5 d174093e5fdafd12c4ef6f71cd16b544
BLAKE2b-256 87ee2f9f2ed993e77206d1e66991290a1ebe22e843351ca3ebec8e49e01ba186

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3beb1de3b1e9694fcdd853e570ee64c631c7062435d2f8c69c1adf809bc086f0
MD5 de97724b4a03fb5ed40617907f6e071b
BLAKE2b-256 03a889d5fdd6ee12d70ba99451de46dd0e8010167468dcd913ec855653f4dd50

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e7ce913b61f35b0c1c839a49ac9c8e75dd8d860150688aed353b0ce1bf409d8
MD5 e65c641b67bae175c17b148d0134734c
BLAKE2b-256 b91b0c2c933809421ffd9bf42b59315552c143c755db5d9a816b2f1ae273e884

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 082c87bfdd2b9f457606c7a4a53457f4c4b48b0cdc48de0277f4349d79bb3d7a
MD5 170978158ce38c50f9192d96a98e0815
BLAKE2b-256 f28a51a14cdef4728c6c2337db8a7d8704422cc65676d9199d77215464c880af

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 27.7 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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4c2454448ce847c72635827bb75c15c5a3434b03ee1afd28cb6dc6fb2597d830
MD5 f3846fb915031e4499b6d915987897e5
BLAKE2b-256 7cc63957bfacfb706bd687be246dfa8dd60f8df97c44186d229f7fd6e26c4b7e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 31.5 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a7f25baec4c5d851d40718d6fae52285b31683093d4ff5207e63ab306ccf14a5
MD5 41c8cd1085e983b60734ba895474093a
BLAKE2b-256 0b47a49767bd7b40782bedae9ff0721bfe1d7e4dd9dc1585dea684e57ba67c20

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 30.6 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3281ba1d1e60ee7a382a7b958513ba03c2c0d5fcbd9a6f7517c0a81251a23422
MD5 765e3521789502e4162b23bff0c4d293
BLAKE2b-256 507c8cb34b3bed4f44ca6827a534d50833f9bc6c006e83b0eb410ac9fa0793bd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cc07c639e3a77ef1d32987464d3e408565b8a3be57b545d3542b191054d9923
MD5 b4a9a3c325891ffac92e50ed2da8fd66
BLAKE2b-256 d34efd6f8a680ba248fdb83054fa71a8bfa3891225200de1708b888ef2c49829

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ae3a39a4d96bdb6f8d154fd7f490c4ad06f0532fcd2bb656052a9a7762cf5d31
MD5 c7ca6583aea0e82d8736365533106ee0
BLAKE2b-256 b5ad4eed7eab07fd3ee6678f416190f0413d097ab5d7c1278906bf1e9549d789

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 14bf7a54e43825ec131ee7fe3c60e142e7c2c1e676ad0f93fc893432d15414af
MD5 0dc7cefe338cfe88e61aa218c1f7507e
BLAKE2b-256 498b453b35810d697abac3c96bde3528bece685869227da274eb80a4a4d4a119

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 693d02c6dc7d1aa0a45921d54cd8c1ff629e09dfdc2238471507af1f7a1c6f04
MD5 6d72bc8d4ca39b36adbf3d0f0f4c7529
BLAKE2b-256 5017a4c865ca22d2da6b1bc7d739bf88cab209533cf52ba06ca9da27c3039bee

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f420ad3d41e38194353a498bbc9561fd5a9973a27b536ce46d8583479cf44335
MD5 bcc751705a07302488f5ad1c29b5e4a6
BLAKE2b-256 08e167f5d9c9369be42eaf99ba02c01bf14c5ecd67087b02567960bfcee43b63

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe14c356f8b23ad811dc026077a6d4abccdaa7bce5ca98579605550657b6fcfb
MD5 bbfc92f2e583e73bd5e52616e0611072
BLAKE2b-256 ccf0fd36cc4a81bf52ee5633275daae2b93dd958aace67fd4f5d466ec83b5f35

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acbb48679ddf3852c45280c10ff10d52ca2cd1da2e552fb81db1ff786c75d0e4
MD5 9d6b767919626a3bf1e75a7f102fe65b
BLAKE2b-256 6cf8cf8e31fd7282230fe7367cd501a2e75b4b67b222bfc7eacccfc20d2652cb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 347a93f2b4ce67ce61959665e32a7447c380f8347e55e100daa23766baacf0e5
MD5 eb06932cb7b97e760d54d854ee26cfc5
BLAKE2b-256 4e3aa6b0772d9801dd4bea4ca4fd34734d6e9b51a711c8a611a24a79de26a878

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7d9110d0c3fb02679972837a033251fd186c529aa62f19c132fc909c74052b8
MD5 cd75950760d3ca1f7ab8ba817ccc7130
BLAKE2b-256 f7d03c91e4e6a05ca4d7df8e39ec3a75b713609258ec84705ab34be6430826a1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9122ad6f867c4a0f5e655f5c3bdf89103852009dbb442a3d23e688b9e699e800
MD5 02d327c3e125833c4668d84a16c046f3
BLAKE2b-256 6ad0afeddd4cff50a332f50d4b8a2e8857673153ab0564ef472fcdeb0b5430df

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3e1860f1e43d40e9d904cf22d93e587ea42e010ebce4160877e46bcab4bc232a
MD5 2889a93c9d351f40feda3d5be4476131
BLAKE2b-256 40f181fc4361921dc6e557a9c60cb3712f36d244d06eeeb71cd2f4252ac42678

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a778b25874cb0f862eaab5986bff4ca49ffb0def7c0a34c237b948b3c6c775b2
MD5 5f56a843a2c699529fa617af4de10368
BLAKE2b-256 8289d4e92b796c5ed052d29ed324dbfc1dc1188e0c4bf64bebbf0f8fc20698df

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 363c139bf15e1ac5f136b981d3c077eb551299b1effede7f12faa010b8590a60
MD5 31ca93e08a3e8bb02abe8a6e4ae924ee
BLAKE2b-256 0efd96f132c08b1e5951c68691d3b9ec351ec2edc028f6a01fcd294f46b9d9f0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9e6c0d843f1daf85ea23aeb053579135552bde575b7b98af20bfc667b6e4548d
MD5 cf18eca6389f6e21125568487447b2b5
BLAKE2b-256 822feeb942c17a5a761a8f01cb9180a0b76bfb62a2c39e6f46b1f9001899027a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea6daa712f4e094a30830cf01e9b47d03b24d05cc9dab8609f0d9a9db8454712
MD5 0b5b33f4b75df230dc7c416aa6273b1b
BLAKE2b-256 a3264e00c88a6a2c8a759cfb77d2a9a405f901e8aa66e60ef1fd0aeb35edda48

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdc7d06929ae28dda98297a18eef7b0fd38991a3b405d8d7b55c9ef24c296958
MD5 173aa886518d90da71d2bd795710f911
BLAKE2b-256 3bf47bd35089ff1f8e2c96baa2dce05775a122aacd2e3830a73165e27a4d0848

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 27.7 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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a845a59664d5c531525a467470220f8edc37959e0a6f8e734ffb6654da5c4bee
MD5 d4c68386b9843a8b489bb949b012b69c
BLAKE2b-256 9e7540dbf8f142baf8993c38cd988c8d8f51fe0c51e6c84c5769a3c0280a651d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 31.5 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d41fcda2fa8ca682ebca134a2f2dc02575ba549267585597e73061565795f475
MD5 3160ca162c14d9f0064e9295004bdb75
BLAKE2b-256 86452ef2310803efb4a2d07844e8098d797e25702024793aa2e85858623a43b5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 30.6 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5bf2f1940499839b39fef1561b5ecb6ede9ac34ef4457474e1337fc7ef07c2f3
MD5 2ad83684d681d1828357ae015b7843af
BLAKE2b-256 f40f86ee514622a381c0dc49167c8d431a22aa93518a4063559c3e36e4b82bc8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5cd29840505631c6f7dbb8a5d34b742b5e6bbda38fe0b9f54e825f3ea6b61dc
MD5 32121dd12bc126dee3021b812883cbb9
BLAKE2b-256 506a002800845a22bff32bcf5fd09caceb4d3f5c3da6b754c46edb9743ce908b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8ff00fcc3eb436617ed8556cf15daf76c2b501248361a065625a588af78a0a02
MD5 43fe0779729269e696555661830dcc89
BLAKE2b-256 3dd3493afc544aae50b5fb2844ceaeb3697283bb59695db1a7cb40448636de05

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f1e65d52c2d526734abecb98372c256b7eacce8fdc42e0df8570417fb39e2772
MD5 11f75b40e0249739e2ff1f7b53638e6d
BLAKE2b-256 ddeba2472b8b81cd576a9af3a4889ad8ba5784e8c5a04592587056cdaededd6c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 01cf5c5333aed26cc8d5eea33b8d6398e085e365a704b7372fabdf7ab06441a9
MD5 bf948bbbf17575af3d248682197a3455
BLAKE2b-256 c704fd4114a0820913f336bef5c82ef851bde8d06270982ebd7b2a859961bbf2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11dd69b1a34b7b9af29012f390825b0cdb0617c0966560e227ca74daa7478ba9
MD5 46fbb8a8efe851336ae6cf56288254b0
BLAKE2b-256 d81792e33338db8c18add33a46b56c2b7d5dcc6cc2ac076c45389f6017b1bf37

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 646a69b56d8145d85f7fd2289d14fba07880c8a5bda406aa256b407481a61f35
MD5 637e5b71101c0c7d00eaad9faaf2c854
BLAKE2b-256 ec96122e0c6a3537a54b30752031dca557182576bae1a4171c0be8c532c84496

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4fd8acc6e32596350619896feb372033c0920975992d29837c32853bb1feacd
MD5 c5a2b8f55fba9aaa11fec94ccad78d41
BLAKE2b-256 1f52fc01ca7ff425a9bdb38d9e3a17f2630447ce3b45d45a929a6cd94d469334

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6741564a923f082f3c2941c8bb920462ed5b25eaebdd1e161f162233c9a10bc5
MD5 926b685db267d11164fb68e4a94cc858
BLAKE2b-256 0a861d0d905d659850dad7f59c807c130249fdb204dc6f71f1fb36268f3f3e61

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12c249621af6d50a05d9f10af894b404157b15819878e18f75fcbb0213a77d07
MD5 e66da8bd43493d05c3caac54c47f6b98
BLAKE2b-256 a4db268012153eb7f6bf2c8a0491fdcde11e093f166990821a2ab754fe95537d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0d23fd49fdc5c8af61fb7104f1ad247954499140f6cb6045b3aa5c99dadbbf28
MD5 99844897f6b5b75ccc0baf011eca7e7e
BLAKE2b-256 4224c6f81361796814b92399a88bf079d3b65e617f531819128fcf1bd6ef0571

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e8ff6ec73110f610425caef3ea875afbfc34caa542f01df3a80f45aadeb9f906
MD5 ea680a1f3fa12f1a5b8056b671e46d5e
BLAKE2b-256 edbcd4b039edbd426575add5f217abeeb2bf870e2c510d35445df81b4f457901

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7426ff0dfa76eb47efc2cc59d4a717bfa9dc9938bff5e49e748bca749f6aa616
MD5 355dd41b20959b33c47366d5f2fabe5c
BLAKE2b-256 79cf703e8422a8b52407864281fb4eb52c605e9f33180413b4458f05de110eba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cee88dfaa6b1b2bfadd3c031fa5f05584870e62fb05dc500942e9900c44fcfda
MD5 ad21baafb5adb968ffcbbf44d3816ebf
BLAKE2b-256 48df343ce8fd09e47ba8fba43b3bad3283ddf0deca799d5a27b084c3aa2ce502

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b7ffeaada9f8699be63d639536b0b60dff73b7d3325b7475c5bc8fdbf4eed47f
MD5 081fedcb1e824bb23c3776784a920685
BLAKE2b-256 12bd2902b7aad574e43cd85fd84849cfbce48c52cb02c7d6902b8a2b3f6e668e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85f5c0e26d945b5bb475e0a3d95193117498130baa7619357bdc7869c2391b5a
MD5 2bc00e23ffb423963078dd78f05c97a4
BLAKE2b-256 076140f0155b0b09988eb6cdbfc52652f2f371810b0c58163208cb05667757bd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd8ab85c916a58d5c8656ea15e3ce9df836fe2f120a74c296e01d69fab2614b4
MD5 e890685c276f2c703476971c3da02d6d
BLAKE2b-256 9249e4b575b4ed170a7f640c8bd69cfadfa81c7b700191fde5e72228762b9f73

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 27.8 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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 49a88183a3e5ab0b69d9bbfc0180cbdb247e8bada19fd9403c538b3aa3c24176
MD5 69f2f4c1f71006446da007b07d4d06c1
BLAKE2b-256 9eb97bfd1101466061247e4bd97f6088824437dfa96c0b2048f829eccbb65044

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 31.5 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3409b50ddbc76377d938f40a7a4662cd449f743f2c6178fd6162b875bf9b0d4f
MD5 f8758b7560ca955468af9be5c6ce52f5
BLAKE2b-256 98c225a922f7d74c147d705462b13f482c08671484052e912e5aa84a00956097

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 30.6 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dbcd969178d417c2bbd60076f8e407a0e2baf90976eed21c1b818ff8292b902f
MD5 d8b16c5dea7d1a56ac4bddcbb0996908
BLAKE2b-256 a2d837204204609ab66c719ceb27755ad6ccb3c394fa5ed7ff4501cb818282ea

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1442628c84afa453a9a06a10d74d890d3c1b1e4da313b48b16e1001895fdac4
MD5 ed6226f2fd3dbfd26f6d13b5a1b72279
BLAKE2b-256 14a055cf29a71d0fda110a4508d6e2e2ecf072762794cf1b2a17fe2d1331d8c9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

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

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8e7edb98dd4721a2694542a35a0bdb989b42892086fd0216f7c48762dfe20844
MD5 a037904f3ef67da13a12c8dce7dc624f
BLAKE2b-256 aee5e60dd0466dfab5377e829b52db7acd1cf1647b888f3f96c4652bdff374ac

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cf7424a11a81f59b6f0abdccfbe27c87d552f059ef761471f98245b46b71b5c9
MD5 c1bd1154c223e4817a35cae50fc38780
BLAKE2b-256 0220da47f5b488af2fe3a9ef9fa422ba03831954715fec83f0a9bc8a65d2351f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 49e556558eee5c8c9b2d5da03fd36cfa6c99cae95b3c3887ec64ee1a49ed517a
MD5 a29daa23e95d557782abccd050574ce6
BLAKE2b-256 301c0f4c0d15caf553457fd743038a2c751fb193c5ce8c69ecc0d4c5089c8c58

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: xxhash-3.7.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 197.4 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.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cce1e2782efaf0f595c17fe331cf295882a268c04d5887956e2fc0d262b0fb3a
MD5 970b1cf7959e1b5d0d299dcd2e01ffd2
BLAKE2b-256 af351605ce7fe66460e3e47abfb29621500ae0014926f1e19efce35bf74caf6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6318d8b6f6c6c21058928c23289686fc74f37d794170f14b35fecceb515d5e37
MD5 d548817d1d81100abfccb0d85c4caf5a
BLAKE2b-256 aea9617224d1efe957c88b6fb60d3ef39af418c684f5bb996f556ea368d7f592

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea85a647fd33d5cf2840027c2e0b7da8868b220d3f05e3866efdda78c440d499
MD5 f7436391c61fb11248c2090258939dcf
BLAKE2b-256 13eb30c34af79ed8e4ff380b295aa67f9f33f7ebe5df39ab7ee319ff68115aa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0c36f89ba026ccc6fde8f48479a2fd9fc450a736cc7c0d5650acfcff8636282e
MD5 869e55b4898dee7e439e2bcc2c18cd88
BLAKE2b-256 5a9bd2452f248599f96f24b4fdc7d29a584113c641d0b5bb206ddf65bc10cd45

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 421da671f43a0189b57a4b8be694576308395f92f55ed3badcde67ab95acef81
MD5 9af9ab26e370ad258a8936d8f7f965d2
BLAKE2b-256 5146dbcae66c6536731db7b936318e397953dee9fd6a6f0d50a0e5894250af85

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 da5b373b1dfce210b8620bdb5d9dae668fe549de67948465dcc39e833d4bbe28
MD5 5c3a0b31481c12dbc361dc2a96bb2608
BLAKE2b-256 579fb4ea57fae2f672f5590212ee47e0b0933861214e225554f2d883480ea746

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 44909f79fb7a4950ec7d96059398f46f634534cd95be9330a3827210af5aaebe
MD5 a81a5c7b3f0a05b87b629ec5882be3b6
BLAKE2b-256 4182401c8da883b4cd4f68c78cfb5ef772b45963bb1ba5e620a552b00c913705

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 84710b4e449596a6565ab67293858d2d93a54eeec55722d55c8f0a08b6e6de24
MD5 6cc259280c0f44ac4ddb82effb7cc2dc
BLAKE2b-256 c17b2f9edbfb0a6b8c9bd017d6fdaa4eafa371a2909c74abe7e4255174ef55f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f99a15867cbf9fcf753ea72b82a1d6fe6552e6feea3b4842c86a951525685bbb
MD5 fea99618316405d6d04003617836c794
BLAKE2b-256 402f7343ddb014650d31a2c75bd5dff9225c6d1f7be7028d4112d6c2c0082b9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 646b8aa66cf0cec9295dfc4e3ac823ee52e338bada9547f5cf2d674212d04b58
MD5 a8bf977b37c7cf6d2f66fd12091cf6bc
BLAKE2b-256 f49fff151029809b74b0fccb7c19c4f9feb18f593d2bbba052f7645354d4a81e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca12a6d683957a651e3203c1458ff8ab4119aae7363e202e2e820cbfe02df244
MD5 0c8e0fe352997c7250ff2680e7499f09
BLAKE2b-256 6c02ac813b9ed3076efd82998f58f9e19173d6d0a91d2ec1b836a48cc539657a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f13319fb8e6ef636f71db3c254d01cbf1543786e10a945a3ff180144618e25b6
MD5 828e970ca7fbd47a18a2a9daf14e9c42
BLAKE2b-256 bc2c40556f773a6b539cb1138f5f63c694e3d147c66beb08749226797868569c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

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

File metadata

  • Download URL: xxhash-3.7.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 31.4 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dea2fd4ae84b14aa883ac713faffbb5c26764ec623e00ed34737895be523d1fa
MD5 4eaef6754693725a77b0ea92e6c84e54
BLAKE2b-256 77bdc68865c213918b2545815d1cb5ff1166038683e2cb22f1d21a022c53accd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-win_amd64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: xxhash-3.7.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 30.6 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6f31143e18e6db136455b16f0e4e6eba943e1889127dd7c649b46a50d54dd836
MD5 f74d614f3612d1f4b75df15b180cfef2
BLAKE2b-256 f04d4400282c79efe62d6a99518f85856ab1f9be3df0f5b3f1d9c418f19ad3ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-win32.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f749e52b539e2934171a3718cbf061dc12d74719eddde2d0f025c99637ddbe01
MD5 14a0ffb11bef8e6f07ee60311949dbff
BLAKE2b-256 8cbc0e0fb87e0a49b50eb57bf4fa593ba300daddde0032c2b1fcde67c04772ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

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

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7553816512c0abb75329c163a1eee77b0802c3757054b910d6e547bd0dbd16b7
MD5 76ee74640e6e08b7194764c50bf970ac
BLAKE2b-256 25f7470722aeead7ed65e7e5f492b80691f108ae7899ced798742b40f3722fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b4e6fe5c6f4e6ad67c1374a7c85c944ca1a8d9672f0a1628201ea5c58e0d4596
MD5 17f832945deefee55e5786f82f38edb5
BLAKE2b-256 b7b81d1b536036e90072509c0710273b44a59c5b2dddfc06dd2fb26a491b27f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1061bc6cec00adf75347b064ee62b220d66d9bc506acaad1418c79eec45a318c
MD5 63759e6e6bc928c09441b0d343556ff7
BLAKE2b-256 ba61d5c0e541de9e1f76528ed574ff56e6e1243281f651ad8860fb20fe92716a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: xxhash-3.7.0-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 197.5 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.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d33fcd60f5546e4b7538a8ae2b2027b51e9905b9a264c32df56de32202997155
MD5 cf59c145b9a373a1650c623f05af7cab
BLAKE2b-256 c746761e1e8816237442e047133d722745e6928cf778a0821e59abd7f4d4b91e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b081119a6115d2db49e24ab6316b7dcd74651271e9630c7b979999bd0c11973d
MD5 4d22453b76cddce217bc58ec072b4d82
BLAKE2b-256 7b44fbdcb4327affbc828d6c1de64aaff0f4b9d21cbccbb2d418091fcb2c7b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79f9efdbc828b02c681a7cefc6d4108d63811b20a8fb8518a40cb2c13ed15452
MD5 bf2ed8a28865cde76d2df39fdc3230cf
BLAKE2b-256 c77210555c140ca2f6b9475484feef75a7c24b64a56ff09ae2ffe7182fda9b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 50846b9b01f461ee0250d7a701a3d881e9c52ebce335d6e38e0224adc3369f50
MD5 5d0bda878e68a2c49086ef7503db1570
BLAKE2b-256 31512107236385ccfb92c5c4f9418d90ceba4097d38961bf7863d55c6167d605

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17f8ae90c8e00f225be4899c3023704f23ee6d5638a00c54d6cbe9980068e6f9
MD5 193fffc22edcbc5e4b4d30bfb941f150
BLAKE2b-256 683b8803d5ffb339c77eb9d871f44046a29e78bcc4b706472762e29284a96b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7c76f18d1268d3dc1c8b8facef5b48a9c6172d4a49113afa2d91745f555c75ff
MD5 b9bbe278337ef2af7a89938c4c6a96bb
BLAKE2b-256 d0c20184f266fda5ba308519dc4f3deaa5f9f952ea1bf489c733cc3e802b3b06

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c3c0059e642b2e7e15c77341a8946f670a403fcd57feecc9e47d68555b9b1c08
MD5 343bc50eedc43ec67079595aaaf5de84
BLAKE2b-256 de061db19927d52f8a98f8b949baf1c5f1ff2b457c3d53a8d4d3b3429b07f46c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6e83179bbb208fb72774c06ba227d6e410fa3797de33d0d4c00e3935f81da7d2
MD5 4c17c0961577248492bfcce7cc45c3eb
BLAKE2b-256 7a6d2d721cc5de2347b53a30093e1c8fcef4619a132c769adde4f0b53c5b3eac

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c40a8ad7d42fe779ac429fe245ed44c54f30e2549173559d70b7167922431701
MD5 1b01f4eda8f4b512e5d92f60f16e40a2
BLAKE2b-256 280ebc0e74b1ac18e9de83a84382a2576e5c1f6516bf30f43ee4be3bfebda5f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fe820f104473d1516ecd628993690bc1f79b0e699f32711d42a5a70b3d0f8170
MD5 7764d5096290ecb5852cc2a553d715d4
BLAKE2b-256 424a39eb38fb1e829c464d2e8d4505f945ff680c4d60954d5692941284f62769

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c21625d710f971dd58ae92c5b0c2ca109d2ceba939becc937c5cff9268cd451b
MD5 ed71935a81342f332909e39cb3e806ea
BLAKE2b-256 260070713ca1df7e3c5e0d4f41b7b92f5db920cd99f017808992ad54ecb00ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

File details

Details for the file xxhash-3.7.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxhash-3.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 153c3a4f73563101d4c8102cbff6a5b46f7aa9dbe374eedf1cd3b15fda750566
MD5 b37773a593859721ddf58f3b362df924
BLAKE2b-256 353c194ec3a35af34f339ae90b38b5e1652bf41d28a5d1546fe2b3afa43229c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxhash-3.7.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/python-xxhash

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page