Skip to main content

XXTEA implemented as a Python extension module, licensed under 2-clause BSD.

The XXTEA algorithm takes a 128-bit key and operates on an array of 32-bit integers (at least 2 integers), but it doesn’t define the conversions between bytes and array. Due to this reason, many XXTEA implementations out there are not compatible with each other.

In this implementation, the conversions between bytes and array are taken care of by longs2bytes and bytes2longs. An 8-byte block PKCS#7 padding is used to make sure that the input bytes are padded to a multiple of 8-byte (the size of two 32-bit integers, which is the minimum required by the XXTEA algorithm). As a result of these measures, you can encrypt not only texts, but also any binary bytes of any length.

Installation

$ pip install xxteang -U

Usage

This module provides four functions: encrypt(), decrypt(), encrypt_hex(), and decrypt_hex(), plus an XXTEA type for reusable cipher objects.

>>> import os
>>> import xxteang
>>> import binascii
>>>
>>> key = os.urandom(16)  # Key must be a 16-byte string.
>>> s = b"xxtea is good"
>>>
>>> enc = xxteang.encrypt(s, key)
>>> dec = xxteang.decrypt(enc, key)
>>> s == dec
True
>>>
>>> hexenc = xxteang.encrypt_hex(s, key)
>>> s == xxteang.decrypt_hex(hexenc, key)
True
>>>
>>> binascii.hexlify(enc) == hexenc
True

XXTEA Type

The XXTEA type holds a 16-byte key, rounds, and padding setting, so you can encrypt and decrypt multiple times without passing them each call.

>>> from xxteang import XXTEA
>>>
>>> cipher = XXTEA(key, padding=False, rounds=128)
>>> cipher
<xxteang.XXTEA object at 0x...>
>>>
>>> enc = cipher.encrypt(b'12345678')
>>> cipher.decrypt(enc)
b'12345678'
>>>
>>> hexenc = cipher.encrypt_hex(b'12345678')
>>> cipher.decrypt_hex(hexenc)
b'12345678'

rounds defaults to 0 (auto), padding defaults to True. rounds=0 means 6 + 52 / n, where n is the number of 32-bit words in the data. They are stored on the object and used by every encrypt(), decrypt(), encrypt_hex(), and decrypt_hex() call:

>>> c = XXTEA(key)                          # rounds=0, padding=True
>>> c = XXTEA(key, rounds=64)         # override rounds
>>> c = XXTEA(key, padding=False)     # disable padding
>>> c = XXTEA(key, padding=False, rounds=42)

encrypt_hex() and decrypt_hex() operate on ciphertext in a hexadecimal representation. They are exactly equivalent to:

>>> hexenc = binascii.hexlify(xxteang.encrypt(s, key))
>>> s == xxteang.decrypt(binascii.unhexlify(hexenc), key)
True

Padding

Padding is enabled by default, using an 8-byte block PKCS#7 scheme. The pad byte value is 8 - (len(data) & 7) (range 1–8). Inputs shorter than 8 bytes are padded to exactly 8 bytes, which satisfies XXTEA’s minimum of two 32-bit words.

Because padding always adds at least one byte, encrypting an 8-byte input produces a 16-byte ciphertext. Use padding=False for raw, unpadded XXTEA.

>>> xxteang.decrypt_hex(xxteang.encrypt_hex(b'', key), key)
b''
>>> xxteang.decrypt_hex(xxteang.encrypt_hex(b' ', key), key)
b' '

You can disable padding by setting padding parameter to False. In this case data will not be padded, so data length must be a multiple of 4 bytes and must not be less than 8 bytes. Otherwise ValueError will be raised:

>>> xxteang.encrypt_hex(b'', key, padding=False)
ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> xxteang.encrypt_hex(b'xxtea is good', key, padding=False)
ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> xxteang.decrypt_hex(xxteang.encrypt_hex(b'12345678', key, padding=False), key, padding=False)
b'12345678'

Rounds

By default xxteang manipulates the input data for 6 + 52 / n rounds, where n denotes how many 32-bit integers the input data can fit in. We can change this by setting rounds parameter.

Do note that the more rounds it is, the more time will be consumed. rounds must fit in a 32-bit unsigned integer; values exceeding 2**32 - 1 raise OverflowError.

>>> import xxteang
>>> import string
>>> data = string.digits.encode()
>>> key = string.ascii_letters[:16].encode()
>>> xxteang.encrypt_hex(data, key)
b'90f829f7271461d1d47efae4f5fde383'
>>> 6 + 52 // ((len(data) + 7) // 8 * 2)  # 8-byte PKCS#7 blocks, 4 bytes per 32-bit integer
19
>>> xxteang.encrypt_hex(data, key, rounds=19)
b'90f829f7271461d1d47efae4f5fde383'
>>> xxteang.encrypt_hex(data, key, rounds=1024)
b'd391e3e5396fb34d86863e4521363269'

Catching Exceptions

When calling these functions, a ValueError, TypeError, or OverflowError may be raised. Note that invalid hex input raises binascii.Error, which is a subclass of ValueError:

>>> import xxteang
>>> from xxteang import XXTEA
>>>
>>> def try_catch(func, *args, **kwargs):
...     try:
...         func(*args, **kwargs)
...     except Exception as e:
...         print(e.__class__.__name__, ':', e)
...
...
...
>>> try_catch(xxteang.decrypt, b'', key=b'')
ValueError : Need a 16-byte key.
>>> try_catch(xxteang.decrypt, b'', key=b' '*16)
ValueError : Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> try_catch(xxteang.decrypt, b' '*8, key=b' '*16)
ValueError : Invalid data, illegal padding. Could be using a wrong key.
>>> try_catch(xxteang.decrypt_hex, b' '*8, key=b' '*16)
Error : Non-hexadecimal digit found
>>> try_catch(xxteang.decrypt_hex, b'abc', key=b' '*16)
Error : Odd-length string
>>> try_catch(xxteang.decrypt_hex, b'abcd', key=b' '*16)
ValueError : Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> try_catch(xxteang.encrypt, b'x', b'k'*16, rounds=2**32)
OverflowError : rounds value too large
>>> try_catch(XXTEA, key=b'short')
ValueError : Need a 16-byte key.
>>> try_catch(XXTEA, key=b'k'*16, rounds=2**32)
OverflowError : rounds value too large

Download files

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

Source Distribution

xxteang-1.0.0.tar.gz (22.3 kB view details)

Uploaded Source

Built Distributions

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

xxteang-1.0.0-pp311-pypy311_pp73-win_amd64.whl (15.5 kB view details)

Uploaded PyPyWindows x86-64

xxteang-1.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.5 kB view details)

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

xxteang-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.7 kB view details)

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

xxteang-1.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.0 kB view details)

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

xxteang-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (12.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxteang-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (12.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxteang-1.0.0-pp310-pypy310_pp73-win_amd64.whl (15.7 kB view details)

Uploaded PyPyWindows x86-64

xxteang-1.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.6 kB view details)

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

xxteang-1.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.0 kB view details)

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

xxteang-1.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.1 kB view details)

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

xxteang-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxteang-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxteang-1.0.0-pp39-pypy39_pp73-win_amd64.whl (15.7 kB view details)

Uploaded PyPyWindows x86-64

xxteang-1.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.6 kB view details)

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

xxteang-1.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.0 kB view details)

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

xxteang-1.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.1 kB view details)

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

xxteang-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxteang-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxteang-1.0.0-graalpy312-graalpy250_312_native-win_amd64.whl (15.7 kB view details)

Uploaded Windows x86-64graalpy312

xxteang-1.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.7 kB view details)

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

xxteang-1.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.7 kB view details)

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

xxteang-1.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (13.9 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxteang-1.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (13.0 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxteang-1.0.0-cp314-cp314t-win_arm64.whl (14.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxteang-1.0.0-cp314-cp314t-win_amd64.whl (16.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxteang-1.0.0-cp314-cp314t-win32.whl (14.8 kB view details)

Uploaded CPython 3.14tWindows x86

xxteang-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (51.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxteang-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl (52.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxteang-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl (50.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxteang-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (60.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxteang-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl (62.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxteang-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (61.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxteang-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (55.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxteang-1.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (51.1 kB view details)

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

xxteang-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.9 kB view details)

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

xxteang-1.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (58.1 kB view details)

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

xxteang-1.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (62.0 kB view details)

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

xxteang-1.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.4 kB view details)

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

xxteang-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.2 kB view details)

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

xxteang-1.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.9 kB view details)

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

xxteang-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (13.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxteang-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (13.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxteang-1.0.0-cp314-cp314-win_arm64.whl (14.6 kB view details)

Uploaded CPython 3.14Windows ARM64

xxteang-1.0.0-cp314-cp314-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.14Windows x86-64

xxteang-1.0.0-cp314-cp314-win32.whl (14.4 kB view details)

Uploaded CPython 3.14Windows x86

xxteang-1.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (9.0 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxteang-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxteang-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl (48.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxteang-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl (46.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxteang-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl (56.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxteang-1.0.0-cp314-cp314-musllinux_1_2_i686.whl (57.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxteang-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (57.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxteang-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (51.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxteang-1.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.2 kB view details)

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

xxteang-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (48.8 kB view details)

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

xxteang-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.3 kB view details)

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

xxteang-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (57.8 kB view details)

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

xxteang-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.4 kB view details)

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

xxteang-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.3 kB view details)

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

xxteang-1.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (55.7 kB view details)

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

xxteang-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxteang-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxteang-1.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (12.5 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxteang-1.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (12.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxteang-1.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (12.5 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxteang-1.0.0-cp314-cp314-android_24_x86_64.whl (14.0 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxteang-1.0.0-cp314-cp314-android_24_arm64_v8a.whl (13.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxteang-1.0.0-cp313-cp313-win_arm64.whl (14.2 kB view details)

Uploaded CPython 3.13Windows ARM64

xxteang-1.0.0-cp313-cp313-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.13Windows x86-64

xxteang-1.0.0-cp313-cp313-win32.whl (14.0 kB view details)

Uploaded CPython 3.13Windows x86

xxteang-1.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (9.0 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxteang-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxteang-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl (48.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxteang-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl (46.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxteang-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl (55.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxteang-1.0.0-cp313-cp313-musllinux_1_2_i686.whl (56.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxteang-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (57.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxteang-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (51.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxteang-1.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.2 kB view details)

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

xxteang-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (48.7 kB view details)

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

xxteang-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.3 kB view details)

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

xxteang-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (57.6 kB view details)

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

xxteang-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.2 kB view details)

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

xxteang-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.1 kB view details)

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

xxteang-1.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (55.5 kB view details)

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

xxteang-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxteang-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxteang-1.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (12.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxteang-1.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (12.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxteang-1.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (12.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxteang-1.0.0-cp313-cp313-android_24_x86_64.whl (14.0 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxteang-1.0.0-cp313-cp313-android_24_arm64_v8a.whl (13.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxteang-1.0.0-cp312-cp312-win_arm64.whl (14.2 kB view details)

Uploaded CPython 3.12Windows ARM64

xxteang-1.0.0-cp312-cp312-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.12Windows x86-64

xxteang-1.0.0-cp312-cp312-win32.whl (14.0 kB view details)

Uploaded CPython 3.12Windows x86

xxteang-1.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl (9.0 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxteang-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (47.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxteang-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl (48.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxteang-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl (46.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxteang-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl (55.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxteang-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (56.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxteang-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (57.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxteang-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (50.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxteang-1.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.0 kB view details)

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

xxteang-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (48.6 kB view details)

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

xxteang-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.2 kB view details)

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

xxteang-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (57.5 kB view details)

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

xxteang-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.5 kB view details)

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

xxteang-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.0 kB view details)

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

xxteang-1.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (55.4 kB view details)

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

xxteang-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxteang-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxteang-1.0.0-cp311-cp311-win_arm64.whl (14.1 kB view details)

Uploaded CPython 3.11Windows ARM64

xxteang-1.0.0-cp311-cp311-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.11Windows x86-64

xxteang-1.0.0-cp311-cp311-win32.whl (14.0 kB view details)

Uploaded CPython 3.11Windows x86

xxteang-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (46.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxteang-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl (47.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxteang-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl (46.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxteang-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl (55.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxteang-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (56.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxteang-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (56.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxteang-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (50.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxteang-1.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.5 kB view details)

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

xxteang-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (47.7 kB view details)

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

xxteang-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (52.3 kB view details)

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

xxteang-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (56.8 kB view details)

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

xxteang-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.9 kB view details)

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

xxteang-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.2 kB view details)

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

xxteang-1.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (55.3 kB view details)

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

xxteang-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxteang-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxteang-1.0.0-cp310-cp310-win_arm64.whl (14.3 kB view details)

Uploaded CPython 3.10Windows ARM64

xxteang-1.0.0-cp310-cp310-win_amd64.whl (15.7 kB view details)

Uploaded CPython 3.10Windows x86-64

xxteang-1.0.0-cp310-cp310-win32.whl (14.2 kB view details)

Uploaded CPython 3.10Windows x86

xxteang-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxteang-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl (48.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxteang-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl (47.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxteang-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl (56.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxteang-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (57.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxteang-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (57.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxteang-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (51.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxteang-1.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.6 kB view details)

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

xxteang-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (48.8 kB view details)

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

xxteang-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.7 kB view details)

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

xxteang-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (58.1 kB view details)

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

xxteang-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.0 kB view details)

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

xxteang-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.4 kB view details)

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

xxteang-1.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (56.2 kB view details)

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

xxteang-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (13.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxteang-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (13.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxteang-1.0.0-cp39-cp39-win_arm64.whl (14.3 kB view details)

Uploaded CPython 3.9Windows ARM64

xxteang-1.0.0-cp39-cp39-win_amd64.whl (15.7 kB view details)

Uploaded CPython 3.9Windows x86-64

xxteang-1.0.0-cp39-cp39-win32.whl (14.2 kB view details)

Uploaded CPython 3.9Windows x86

xxteang-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (47.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxteang-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl (48.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxteang-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl (47.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxteang-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl (56.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxteang-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (57.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxteang-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (57.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxteang-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (51.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxteang-1.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.4 kB view details)

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

xxteang-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (48.6 kB view details)

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

xxteang-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.5 kB view details)

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

xxteang-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (57.9 kB view details)

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

xxteang-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.8 kB view details)

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

xxteang-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.2 kB view details)

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

xxteang-1.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (56.0 kB view details)

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

xxteang-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (13.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxteang-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (13.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file xxteang-1.0.0.tar.gz.

File metadata

  • Download URL: xxteang-1.0.0.tar.gz
  • Upload date:
  • Size: 22.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0.tar.gz
Algorithm Hash digest
SHA256 8ed262bc53b0b933119d849f306d452a39a21558176c2a377fb7918192a5f2a9
MD5 234aead7173ef20632e86cef7fded364
BLAKE2b-256 9500a1a32e14bc7eb9b830a347fc34138b58312c1c0630f7209d10f7c830196a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0.tar.gz:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a03d845e0a26e77914c44468f4c444198ecfc0006c81cb7a6fb8a4fc49e69b0e
MD5 02ddda7735648316d73436e929b1be70
BLAKE2b-256 bf4db7153213108942b63ecb8a320fc80546cd129263ea9fe939f8deee7c9348

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2da9f8a7733a0fe846cfb360322d0b2121356b832bd928c22410f01a3d5f98d0
MD5 4a45976902a110e0f920c9582846e05d
BLAKE2b-256 a82cfb3e545f01d00f65f41851f4ac5113ee930fcb47c91dd1565d1109e8d55e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50b15bf64673581b432edba6db83200391be8a2b12c752533faa80157c53674e
MD5 1f53342562fdeff2cbf18c39b5c4b9ca
BLAKE2b-256 37b63ad002e3974c7d47b15935508750fe2d088bc299ce6165eecb85833cab70

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5c3f2f15b240f63f7b99d56bf69852502eaa493ba8ad8f46c0f94d02111d3cac
MD5 58a2ba308e105ab91689bfcbd298addf
BLAKE2b-256 7d0b9417193ffe949ece855b7af9e34d4e95ae2c4857823aaabb433e51ea02d3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fa1819e87441f3dd8c3c4f885d05043d1a3d2cbb0e1814479a1ac8312187259
MD5 0fee9576bd5b840779c4746ac4a800bf
BLAKE2b-256 80f533dcc771f7036676cb52b6de3d4d0745e4a75fc7025b8e016421b157bca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 58174c43317e2caf703a31f5c2ababb340054faf604fd6bae0040a06646e944e
MD5 7815763a8df60e447f7b227db999b85c
BLAKE2b-256 b63b2b27f8ce34cbb0dc95dbc18e4912f1e2875e6e6348d61df95b84a361881e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2a95cef97856c8c59f9a864c74e59f69e94ac099e7aaf07f569abe64bc10f688
MD5 5226ddc47cd9b51e81f3f55c46ab8408
BLAKE2b-256 3ab257ca208c6e175433350abfc428e2ca52338c4672a689fee781f636ffe156

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c305231027daaf7e02485cafba17cefd35b2284a99b31ebd5c2be70a0545242
MD5 6f51ba3d350a5af131373dd264d25132
BLAKE2b-256 bd942967b6e7bd6370aed49f56a075de7eb3ecbda6bffe1e5851a78a7cf5b2b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 444351be06a1d73c1362b2d113c471f1b6b7245880b6b0268deece8d60a4a3b7
MD5 b6c7e6f5b26cf35fd058c51fa40a1a92
BLAKE2b-256 2f501471ce1eb11c06f051077d7949aa2dd467e7ff567b715d6c299e11f77908

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 01023f703b41f90387cf28f112b170ac23173373118ac4cd52934dedde212587
MD5 0e8fdd7b443b4d982e879b82dafe39b5
BLAKE2b-256 536f7c3fba854909877104599c3b611f51b9a084248a81ed4e06edd657dda6a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48d2f7e3658f07a1e24ac1eb5098095596ddf8c417996dc99befd8d172f0a36f
MD5 e856de5178abe9969235149e3a22e67d
BLAKE2b-256 f9cd9e8d49e02cd176ba6c5838a45bcc4023d080c38f7eabe638827bc15e67e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 473129fe8d45af1a36b0826c47bc1803b5f1eaa6794d1b6fb6267611b563bcd8
MD5 f8dff1cdc0a2ebe6a1ee7a477b0808ba
BLAKE2b-256 f1f023fb70f8b36d1b6c5d4848419e6872aca894659fc83ee29a749e7483ecc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c27f2b85bd2660b4ebc824572bca4c2babe8c940d728958097091c59034d681e
MD5 2c566338a3d20abf2b09e82cf39f716e
BLAKE2b-256 0be54d89da2d7019aa9b816a3373340544ffac105f6dd4a260cad7fa84d6de2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c01925c8122bda6a90dcfc1c480e1bec927be72696433598cb600b5cbe0c47e9
MD5 c716c3acf2f8a9ee6fcf0e68cc3054d3
BLAKE2b-256 ddded9440907ea2690b0fb7f5827863c6d6e62b1dd3e46f9d6c49dd7de152d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e130ac4fc4efb5aa05396c9a49b26ea0f8091c9e78bd59ff24f0acfcfcad434
MD5 34a3b7e95ec2148eb2ee113f5fc3e8a2
BLAKE2b-256 3a3ac245bc2e5731f29ba9b5d6a9471dd6d9da2e2f63a95a0449231782e2fb26

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ce3347b894cfaf6f86ccd3e0155c5cae37f234bc9909b4139db5e213c108f113
MD5 1c668ec71b71b5333cedfef54d9c795e
BLAKE2b-256 c7b7113b74f8d49e9b1f657d70e4673c8794baebb4a758bfc0d6c9b0a64dc997

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0461294638789c748d2f576d7e853674e0a87eaeb466639370b893066f83bf02
MD5 21c7a07ca8961a3398b39a3f56c9909d
BLAKE2b-256 f01e1494c89b6c35ba540e12df46e97a513ec7ab169dd5c735e3c56dfb7b0c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 94e230e8afc5b615b6577c6a41edaddfceb2d4ef912228c75b8bcf9c4caa46bc
MD5 dd240748bd00be00a6ef38a3e6604db6
BLAKE2b-256 ddb71d25f163862f93af70b2407888ae3e6c9b7bc0addca5ea1754c1958cba70

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 2236e5c7c4bab6d7f15bd1660d77c5bb066e64606dd28df17ce7b92dfe08d91c
MD5 6786b5543318367ee5a70b2a387b4820
BLAKE2b-256 8535cc59c4684aa71d740877a256e8bc7bd9424577809fde73a2d41cefa8bcdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-graalpy312-graalpy250_312_native-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 961ae4672d070afd87419536e3fa99917df2c46c59e496d097cf6d26119ce821
MD5 2aa1779fd248e9203cd2c2d58ceae1f6
BLAKE2b-256 d2fcca16f4c82f5a7ec0f75057ee73dc48d21d1d2019c687cdf0d885664abdd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c865807ee23d77dd1121136c36088ca287c6886e141eff8d35bcb2c063acd72c
MD5 92dd6faf0fe6181750d83d4bbc536b50
BLAKE2b-256 d18b22ed23f1f736e859cc4610d9bdfedc163bb1b06c62554861c5104e881bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3fae172065ced10ac0b20f78827621b213d5f3eaabba88e8013f2457a69e84a
MD5 a0e7aec25fd0e3bed28d8f8b374aae6c
BLAKE2b-256 54de3c4c81efb3b6de1746a6bbf57410e3feedb74e5f740d512541fd77943fd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ae80e8a18137e033016d4c8f35f9bf363d2fc437ece03627bda286338bf9069f
MD5 9b1df8a185ada722e7677d4369c75857
BLAKE2b-256 a6ed51c7549199456b0b4473d772e160b51a626f72ae6ac5582aa7bedd895100

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2efbbf421836cdc4c89867ff87b5633a52762d260934e29484915b25687ede8e
MD5 0f0d7df0f39117496fe23045daafa577
BLAKE2b-256 9b94719c99173e40a71e2bd2f3a72e520f62f9f9a3ac0ebb91d9d4fcbfbd2c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-win_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 16.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b7ddad61e74ca5ac5c6d3bc7c0d63cacf580fb3a060f7e046bcd26161f5011a1
MD5 82b16d26ba977b66d9aebfcf715aeb70
BLAKE2b-256 f23228af0defb062b0c182b9e44621c6ac9c96485d9c4ce089b69f91e9075801

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 44be3d4d502955f7549cb35683275384cf8cc1e446d44d554428f5cd263171ac
MD5 f41f92df6eb3398d645173c5348e801e
BLAKE2b-256 b7963e935c5692049326a02bad37c25211e9aeb3d38d73f46fc1d7ca47ea7963

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-win32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1d4a026b11c40ea30a56d8a42160e88a31d8c5e4da01ba46fce647825a94019
MD5 30f65af2c9eb6dffe2725cd021e720a8
BLAKE2b-256 3948ce416baa829d17c6bdc7bb72599281990df2d0242fe19beed3e329473ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d4b8af00d1e4c8a116c5d75f75ac750545f6ca9b145b7e39636851d22dfb79e2
MD5 027c81b3e84e9de9829d544df9da9e36
BLAKE2b-256 5f755257bf23ca835ccc9db5b0919ab6b3962f2cdca8dd864f825fb1e12cd4bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b19ed19b7c883e91bdb95faa1418017c2826948365ee3f9ec1cafa5a7cfe0055
MD5 8d0b5622da0367d33a8d6df1342f181f
BLAKE2b-256 e613995387b913229adfbb7d50e3d3331757a32b4536d57a7ba4458a593f4940

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5ff08c69b34d9183951ff474f749179521734af3273e282209508f4518cfa78b
MD5 71057624f79f73982ba10013d4537b38
BLAKE2b-256 e879b1ed7346a937a32b50589cdb520d3bd38bfa3628cd475e525167b567102a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cf231624ee3d9784eba09c6df808220ab02e4a48f8ff822e8264810f2254513
MD5 cdb80bacb1eeb7e270efdf42ac16968c
BLAKE2b-256 ae2d771822a5316ccd5028c0778e4c17c27353f7f7e39313835b81e7b3de09a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e47339eeaf8d2d65d5f133390d10d7f2f3db4c3c039f3eff015a4d4525065763
MD5 1b185948c5479efcff45a24b6d1129d2
BLAKE2b-256 96d62e3bd444eae1df67e1955274e6726b962c5cb7bf975757111b8e6a844754

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 880a6393c1f66fefb4c7f16247ce60d40f2f984da52f9ba3e4980565cc015421
MD5 4a0e737b9fc75e389636957648ebdad0
BLAKE2b-256 3b8ce1f56612343f8897a05946089c67a623f7fce7216070f65c3c4f3de3d49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 37f248eb37a3faa65ea7bc81cd53a38d0507580f315b59a971e800433f88ac50
MD5 7a1083207f41d07376411a649a4449e3
BLAKE2b-256 084234c79022b7467e2edd0a544b9647ef876e99d84ac8e83a3ce5e0fbce9c6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ae59cbae4e8fcc22e6b8de6fad519ad2c0a9c1818ccffa1900d8a037081fbc9
MD5 1344fa7983cd255abf7e607146d7de5e
BLAKE2b-256 e117a585946df9b1ca506744a44b1e17aa47488d27f095d03dc993b3cdbf2179

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 49febbd2494b3183606dd4fadced248d06fb6168dfa89b2daa10d43a6e7ecdca
MD5 cf7d4473ad3d21194f90b5828fe80486
BLAKE2b-256 8da9a7a436898e0473e54fb524e89a349ac3638a4478d31d99a37f1154dbb0b5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 953a4ab31d9ec86036c810238c94ffb8cc0fc900fc1b8c76abc2e259bb4f7172
MD5 6d6f67368f2daba28c00049fe6597a91
BLAKE2b-256 ccb12462decd7c8bd904559747a1dd36709b787d18eac0a218ca525c6d6bddca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e58f84a83187aa7a6e5b026e2d0d65dd8878054bc02040dc43ded2eb7e49829b
MD5 bc8f21633a974cb15c02b31f2a353f6a
BLAKE2b-256 5bb54e93a0822b055d67f0556660054f8cda87873620b0514f82d9eb1b0681d6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4699a9793aced1a675458752e3a1290de91133cdc09cd3843ad05ff390d700d6
MD5 d3e5ae278a4e6a5f944980bc285121d0
BLAKE2b-256 0c915906da4d03201ea37a15ee98f87fc70ea0bfa67275c3ebe6057f1c9cb34f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 04dcb576353d731c047b84baca8ed056efe89797c931c8f0ae059b4dde565a8d
MD5 e6b19d2de05395aa370272455aaaf4fa
BLAKE2b-256 7ebf175c7dd4f9463afe5e8d1fdf890ede41777c0ded3cce38e36dbad24bf718

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a535a72aaef0d2b18d0828104f40f6684f8e9340e8d641f53583645e212b338
MD5 c2399492f39e506edf3837112f99781d
BLAKE2b-256 92e69a42d5bf77370f4a1c9a9f8444bacaa8df4bdbf1694ff4f830445446de1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 64616a81aacc1100d16ef3c6e1fed09dc64546ff4c65412394af8518d6e56a03
MD5 ad0baa33f5d659e59ab4e88dde16b8a1
BLAKE2b-256 41e9f4973dda4e5e2720972eb291ce62c6ba6ec170f90b69eaf25755c4243477

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7d2c7543977e513dd0c7d2de8be16129bb293e4e28da22484be2e9f12192795c
MD5 4cabe387b59dd6697675dcb4e7b1a065
BLAKE2b-256 cae938a88514239696e1f07bb40f815c168d219da80e055940075e7606274c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-win_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 115218787368cc1dec62060a0f5c70d0bf8dfe54640fa204c21fb643e6f21e70
MD5 20bbd15140690462d2af100908d107b2
BLAKE2b-256 427714d78a5c4f3cbc3d0f6743797149653254e76c93f6b6d4f0a8d61ad6de30

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 30f1595bdb9139192325a1d452dcdfe10d71d7127018e309dddbbb3d48ab7b8e
MD5 e5ada8d6bce6e75cfc7997339e9cf36f
BLAKE2b-256 062b73d6b750b3136ee5854c130caaa45d6a7357f8efb49b48d564972253ed7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-win32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 9967036a9c7351156219e8ad7075a596710d5a51e8e96d3a9899cac9c412961c
MD5 33b8938665a4fc796579d2aea817c615
BLAKE2b-256 b5f5857565500775e61f99b96686646124041f8fb03aa26f754624ffcdcfa264

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b530f55adb1c74aa214a0cd714fa17ec99a11e6e21145a352d0964e611f35c0
MD5 2e1a9e4ba52d70de2d1e9bddd7b365f5
BLAKE2b-256 176af3726db4dd0346ab68785ccf3bc3f1d25e95c10eb51e460d4f951f31316c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d02329ebf51ed50cf2534272cf4b2572dbb33dd6794cdd77cd9b562c05e31c48
MD5 3deea0365e392429a4c33f9df0056b25
BLAKE2b-256 e300f4908a70eb2566b3521ed5f68605340c51a141df4f0d43d43be58dad0bb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b80c310b13806952a2ab29f264eba29f2938ee6f421b3b02befbc91489ac081c
MD5 88a00f73212b1fef640c8dcb951dd50a
BLAKE2b-256 225235fe4025c2600f0bed0a91961a668fdd60c13ce6eb30e451099784bb0d53

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 51e19871fa1e2b5a34804ad4da4c7c06f339eda42371e1fb3ea068a8d7c5f71d
MD5 30f2950f3f87733013993ae3bcdcc682
BLAKE2b-256 531732a8b9be5dd8198f195288465138a9283e7f218d5c340adf5286275f5f89

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8dc22f0cf79c6a572a35216329533ef3b0a08a2163c3c09233fe8634adf11116
MD5 59ae7965a2da7c3fb689e38748bcc628
BLAKE2b-256 8dd612592e8d70636cd2a09bbf6ff114dda1a04ef9c28502df3dc603503b1124

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fec66cdedbdf9c05d969cd6f13454c4e16100cdee0b53e45adf66a06f1a49243
MD5 43f87e71392d8f9d8b074ed7ba912300
BLAKE2b-256 0d7f230f13bbeb3ea2806e255093aacda7daad0fdb1233167e6170f8d37fa374

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35331219f8af71558b44fd53aa1295ba5e3ee53061524da9d8f48928d2792d11
MD5 08e0e053da0c1e7bf435e357c88d661a
BLAKE2b-256 7a0b5bdd40068193b2c68d950045bd2078b007151c7388e1f86ce3510e71504c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 84b847f2ab084d1b1ac249fa6e688e2bae00c95991cd575e36fd349fb4c9bc26
MD5 3e5715c2ca1b52281b6ee8a6d514e271
BLAKE2b-256 d1baf833b975279c4877267b3c53481e21c577d1553bd5b0d0f46ccbb6dff132

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e195f2213b385246760ce1be9a1d2a562d4252f9ebef31e090a2f0f53e6eff73
MD5 208dd2c82ac9b29f8d57dbd8c7f7435d
BLAKE2b-256 f5fb9a4658154d021b7c8d158281be95becc7fd16da7a4cb5e245f52fd2912f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0eb6f3a9b33fa6671c51fe91cad0db4216edfe5859f7bc58756aa6af9bf1f639
MD5 0f1f6d1c90c49b3abe80c38b669b9fd2
BLAKE2b-256 bd41c50927a79c7d5f733dc87f13cfb6e88a65254d6ca3799e99e1e322119a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3f677190f54a321f778bffbd300bb52fd66d174c003e344f6902414a85d5de4b
MD5 ffe9286a503d54d280dc5a2e350b7efb
BLAKE2b-256 46ec307db4374a2e72f0842de607791a580b5bc1c873846f3424a4a9ee978567

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b5b7555a9da1ca0985da3c24ea3cfd939efd32d6fe3068a6ce04cd736f4179dd
MD5 12eff5c329446349965975ede85d1a83
BLAKE2b-256 40e3767960a94daeae05d2993fd4fabe89867c2e9b3536170f0344727fc2d236

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e15696bc13af6a2858f49f77b67c32b5ba554bf8b926e6f42421d5b99ef5506
MD5 8d78e946996d82e0387db46ba9e28a5b
BLAKE2b-256 9e1daf818a050575f8b24b5038baa4e3dbe61874b194e5ce1bfe3aa569e6daaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d5fafc14fa03cb8b8640b0cbbaeb6bca1dcd69f9faaab9aed3333e1d6bcd053c
MD5 1b39b7703a1230be764657aa645116c2
BLAKE2b-256 4ba053cc24d7948f70b9e3a496fb707d4efc404e3283afbb8eb1a345e4022a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff80f70a1959ef74d2686c6608679036f9a9e3276dce812467088c8e93b09080
MD5 e35ed700b2a1c62297e59e8f2aed8667
BLAKE2b-256 40e9b847acea8444923cac1197d06e347054f321280fb371d90ba1c02f89557c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef2978228a86e0b52ff01c3977aafbdbfcaecd86b8bd39d6917fe81964d563ac
MD5 d74feb15662a9d4d6770449de47a55f6
BLAKE2b-256 32f1bb62eb323fa786a51ad5207790da5dcf9ff3d63e50128c82471a1892d431

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 2fd40e1badb06976af0a72514d72d2e3b676e58d686dc4d33198330baccefd19
MD5 408514cc3f38593e35c6cd5c00913c91
BLAKE2b-256 8a8b5ab4c2e8691dcbe86df88491ae74746dbce56511e8cfc6702491f496783a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 3c5d5dff82357113afb7d43dbf84083ba423b280548674af579d9151d2075964
MD5 5fd2fc93fdd832e72548c3d06221ab15
BLAKE2b-256 d6b45bd4874b946c49f877bf65c00cfe86a920fc3234b8322eeb239a054a29fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 ed9df1fe934855ce162d91672f66e6830257b4b1d4b3c6c4d0e9e991bc4ddf1f
MD5 1b0d8558751e65c6e331ce447a037c74
BLAKE2b-256 410fb88da152f0428e0f762fd668d678034602e55374f23b31b6d01791d16aee

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 d068f6d85880598b1aa9153b44da7ced69a2dd43f3bb671ed366dd3a8d69649a
MD5 5c83a52b804fc57c85644a9b64e7234a
BLAKE2b-256 e848d74f95dcf5dcbe8fc4e0776ccc68f595bebd2ca8109099b60c91a25f6774

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-android_24_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 9ec1fd519e5f56749dc402f557455dfa898c44d8d4ab7adeb3a74df337bc46ea
MD5 6746606c1d737aa268ce1c79a29e5ec5
BLAKE2b-256 ecf176ae79c76b7e1e6f3bb4b8c61cbfe0f93d2a1dc8492e1a8ad05c01e88c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9d5754b2a96f4391c390a29ab022a3b32bade88967ed4ea555b8b41678a08e3f
MD5 da72d30416ee27bd53c7413bcf58f180
BLAKE2b-256 613d7f52474169156aec40805750f9e7e309cd8c58d831a409a058d7a5d06284

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-win_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28c42249efe55638f9938631541e46c88710038701edccfc9cec6c401e372d22
MD5 05fa3aac6ecbc810acc84fd59e16180c
BLAKE2b-256 8aad484ff9365401df1dded1369e661c5bd0b2ec8af2373e413dfbf104f58b4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 11f1bcfa2e2ba681ce8f415ef5c0f0f2ccac9035fafcef89b2530f01aecd923d
MD5 9687287306929077079c1fde2f21e079
BLAKE2b-256 fc3181576ddde36607c6b13b9da4bfc02e542a6d5f3b21976a6c7e7a04b45828

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-win32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 418423487f89380bf496fd2938155feacbcdb6b1050fd0de52ac6b06e99941cb
MD5 1de9cc93cd8c6de166e33546d8624d90
BLAKE2b-256 3088f86d5735e41aafde09a87f82355bdbc11493a225d3fc7f23ce042be91440

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4527e2a67c29ea3ad796dd57264240602950bcb9cf0faae38b76753aeba5b110
MD5 88d2f8de128d70854c35cadfd8992e55
BLAKE2b-256 e4a85b739bca6f8a4d3cd590254c1e42b54951c6ba9293a650186a3b38eee993

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 465ea97278cbf35a4df9d4acd7fcb783e134f795ce655e70c0370c04bea82fe6
MD5 12db987b14cbbb744be8372ecc00959f
BLAKE2b-256 28a4f200dbd169e415b96138e1d59cbb981c058f9ff9cc2b99d167ca9510fc15

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7093bb751594d2d4dabff323f0a7ddd36f4c892987816d14d6ad519e1f30efe1
MD5 c85c0924cac6be07ebe29ea5d3ff9194
BLAKE2b-256 4a9aff900c584fb708f8dca47ecba7817f8a7b376443acb66398a18f14f5cec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3ad234a45a4ec332f5db769a65151bd891e3c1ff083c97b33b21894933e8e98d
MD5 0d7f966a928f9ccdf577d9cce7830616
BLAKE2b-256 184421e4ec9b5974020910e7191f078c7aa2bcc853e0582a998a046d0bf3af95

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 008db1c4ba449e9d46b4b8921954ed38a152351b223efc067b0a2163279d976e
MD5 12f8d52b892241f45a895fe753feda43
BLAKE2b-256 9b60cba60efc37c280631ad8e8cc8f729c4f5bbd7e2364893db3d8b37ca74f54

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e944e4f3751916f7ae5438cc1f32d94b9ae3432a5511bdaa1c49d6ddb651cd6
MD5 a33aaab4b889aa964e5d140956ae14e7
BLAKE2b-256 6a7acdf53ca48856bbab8b46e70d9012ac92fe9a5b495e2ae0861458de3bdbfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50bd437636677342e2979de78e91eb78db9e92c11860196dc17e5b032b0fc8e0
MD5 15bb9c5b7e6c48b67aab2720367a451e
BLAKE2b-256 386f3b678d72b68a592b29919e6e03d117cd33ca25d09ebf47ae08e9f414c730

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fe692b88f4e94e3876ae9f2cd3a0b237f3cbece1702103826a5740a3bcb56b7f
MD5 317c3bcfdf32b80f806dbe8f2a0a791e
BLAKE2b-256 c8e27a29ad00c7962833a93c30d8f3e44e502fc5a14994a8bd09194d6daeb1ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4db3d0fb45470b04f954e46acf96d4b9bb5e1daf8dd6a9d748ab57402bc91181
MD5 eb696cec10378b523a967ed74e013a63
BLAKE2b-256 e284f3ae5bd21209f5c32dd139261e128a1f55d43e843819d6cc38d06a7b2587

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 22c1f4c4f9bfdd4853bc1ed81ab538875edfbe69d6667fb2dd117ef85260dced
MD5 fb76006227cf65e2fd1b3790a8af74d7
BLAKE2b-256 f691fb2fab6c66b17b47bf3b66506a55deecd854e2692e1aa05c7af4ede05046

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 61401cb6add64edfc386e3e28a675cf430b87d0034870f9d05c9c14d58e3c8f2
MD5 8523c09192074a0d2b4f47c0cfd19f15
BLAKE2b-256 61d3204f2547c7e75b1aedb9bdca531290b6b12f9162a9d2ba7940b87186bf46

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 00b63ee4d158b8982b19e80b558a1f2c25d451a1d82411b1bea7ebc540f711e0
MD5 78453465b1c451f449989fb3292dfce4
BLAKE2b-256 a635b65c5d482d81e76bffa86dd213f6ea48e99257846611799e0df72f15c645

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da2f69f2c76f53a8cf25ba39438fd54d873c91cba09710476c33574cb134d084
MD5 b81a91f2c933aa04f4a0c0034af1b0b0
BLAKE2b-256 b81fd4832a3ddea82377aea7246fe019002fa8ad7305441786cfff13c4838bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cd7487136131e7e6a1162879770f3d918434c94e3aa301eacec0bb9216619c6b
MD5 5f924dd7e672f11ed4cf1885b9ccc965
BLAKE2b-256 13359cd9c50f4cd952534979f122d2f9db63d5ea53167a764a1cfe59ecf38d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0f2358250f3bcb42fcdc708a151d4787a20a231027eaebe00655667251dcc12
MD5 2200cf6d8fe7eefbd889b33c748ba00c
BLAKE2b-256 7e3de97c8e61048b76f0844ffba27082b439970ca3062dcd00f2ce39a475c34f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 53e318d4452fbaf465ce28422c14cd71e6a70922bcba6112b69dbbf9144b6bca
MD5 d8ff478abd98e3a0c855a3711edeb937
BLAKE2b-256 fdca7a4de65a32fc5c7a35cb7cb7deae76c092062426276f153fcc764c905ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 e17ddd95d1300affc49436c18d3de939ab95d26ed849c427e7b16f33e8389a10
MD5 f451f9d90843f92d2d2c080bf76d2bb1
BLAKE2b-256 b99f6197b3da0b78ff2828e7f55915bde420fb34588ca870aaea6e61016cbe28

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 cdb37854292646f38884ca34e0633375b8349ca5b4b0c522bcb099fc544cecbc
MD5 0054ccefb14d6e4489e9c484e104af67
BLAKE2b-256 e9508ecdbce789c14069839ed58a368ea65604ba8e03abd858ac1023cf7fefd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 ebce4bb6243b71847e5d350636a7e086548ea50cebc38ad6434ed1cec421db4c
MD5 a79cb66e33e31c1ba97f78d15f6066be
BLAKE2b-256 578c0768b9286dc32b933b494df90797d3b7037d50ecd0c829da55130a54819e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-android_24_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 91ac9ebbbe58126cf594f6510852cdf5915d6965d55f011c9b9a2bc4ac89ca5c
MD5 417e833e462b1f2ab161b6f7e95db1ba
BLAKE2b-256 9c2ae2ab8740874fff3defde6ab67b98cc5051921248f507dcb8609cf4015ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-android_24_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 a0df419ce4eeeb130125b3be4ec9b5e7fed56beeaaf238ff512375e7c09b22bb
MD5 4ff4313c38e5f079cc88151a36345591
BLAKE2b-256 52b7359aacb0ba53e86643d66111a1a92a5957296ba390a2a1a5f21e3acd7bbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp313-cp313-android_24_arm64_v8a.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 31490f59080a04d6d49ebf60367d4c8d56d591af2818552f6570b0c8e5f02ec2
MD5 675f0e5a459a9f4c31a89fb468fe9aa2
BLAKE2b-256 98aa5710a14e813fa489b83ff10a7b0c81fcba2796f535be2ad6973cb026c902

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-win_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a39b1faa123d49d84f95707d94282dc4be1383170294f097880d3a7afc11591
MD5 83a1a429c4176cfce26d2f8d28687618
BLAKE2b-256 c508525e826da7ffc6af48d658f6313e038790e7c611dca2617d71dc697dda51

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b32be9ab74abd6e6909cbcc981e5e90162c1a94286f37caf8be82fe0a4c17f27
MD5 cc74c6fb79301c532bbf494e7c0131fc
BLAKE2b-256 b2383c6689ac91dc7860e20087bb6ce48988942be7eb380d4f8f1dc0acdf7f34

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-win32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 83f22ff60122441aa34e2d72bd7ec3a2c2d2cd046b5838cd37385f38570cf06d
MD5 5b55c304ffab89f3e9e05d6223c28910
BLAKE2b-256 8483e962c16e1cb2d5e12b038fc8c471fd2e78c8b1344897c4f62be87e52998c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8d90793ccf289e65a3d9be519cd26d7367575bf24bb337326adee34e70e1b09
MD5 acc1b80f054a2b273216ac80b4c94588
BLAKE2b-256 9bc19f93467ccc0e68027566326b6ce92f993a7172d62a261bdfe75181fc1cdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c4f4e2088ac232c9c9e45afd679348d0fed455ac0b99c24dea42b2a294e6d7a8
MD5 0b6e28c16f3751c9f0662d58d819a95c
BLAKE2b-256 d7a22f722489dc0b28732cf15fcb48e00c40e95dc27573c810bea7842868beda

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cc657bf797c56674d121ebb42c1d55bb17f5f9b5a9cc1f7df10daafb26199172
MD5 31a1724fc6ba088837be0cf89120be27
BLAKE2b-256 d64443e31187139592a270e7e77b110ccfec22fdd3130168615c46034d28479c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 228a1616e2687b25959a7e3d341c391911d91a186f7b6147ccd7fe655d450b67
MD5 cddc1a26abc1c26fe07ed5dea4e21376
BLAKE2b-256 8ac8fd18d29ce37f3fd10ed017f7ce91241d5096eb962470ff425374042cbbf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff3e6ad2316fc304ffef0e8011e1962ff3c370eff7da024efd175322d86a8f4c
MD5 87c2649ea1023f965c0f6f866b70f109
BLAKE2b-256 bf305fba274c73d7a16282042313a00d1eadd149605eced03cda54cae946ce22

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 34668002e61af2bbb4f8af05fe9047d53da8d2969ca404de68fa5bed947bfcdb
MD5 8c9fb2609d135bf61e12a9e662c59db1
BLAKE2b-256 3b17713052f13a60bf071e958238f639e887e82074de5b4e0561454e8c09b494

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e57231c7cf65409eda87c4565aa500a05ec73f764867b9ad5aa5a7416f40a987
MD5 efb37cca58475b589d740c65751adcc3
BLAKE2b-256 5875fa99336ac34f81179db43d33a9ee16e05610b7c56e89207b546ec105fb2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1e22c517101abc6b027a4dfdc4c54ae71f1285178b818152091356381c910cac
MD5 307f814b5f10517fa8c00e9bc4ca49b9
BLAKE2b-256 d4c89ac263318779426e2176e0be0779becec843a243d4262f141df14c440728

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e9a3664b62737bd654ff3b4ff5e4f3929fef054b43c7b67159abf12d334bcd7
MD5 7325395773398e66ce1c8017f380ab99
BLAKE2b-256 a4ed6013a54c803370e52be63cb12780262f357afc17354786ede0b5e067f637

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a100553281ccdb898321318c2a9ad05f3c25fcb9df79c48b71f4db59418b55e2
MD5 29a4cba85b9496d94a9a37981e5a00d5
BLAKE2b-256 9d9fd15ae9f866e5316ebb7d2318f3bfe7f4e1fb6fdb694558fbb44248cac6be

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 379708ed923dc479c559e580d2587706e073301654e551748f63a28513df55c4
MD5 036e164f1863e266d5cc14e755adbc47
BLAKE2b-256 9429d808e837903a173c7e06e830aae0d3f73de7309ed7e758af8ca5fba1355b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4ca4d6c475180d11502df34b208e28972af3775a8ff646053865b583ce2e03ef
MD5 c6efc5540afca1861db4a23d34547d77
BLAKE2b-256 74fa38e85007e4730a207b276c482cc949fa16a9c07655551877776f37369ceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1544191e9fded4cd0691417b3b5a226379289bedc9af0227fbc5d589d554803d
MD5 741f437dd9cf4e44af459546b5d6dbc5
BLAKE2b-256 d15ba9f8458464d74bed164ecedcb753113f1cba05abb4656488d98cb53fbd9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5c448693a99d592b07e17e1c2e0498413967f864339bd9368453eb1f265d4b48
MD5 61b1c2fe3e8536edac865f31767b483b
BLAKE2b-256 a31bdeb498a25f4a537ceb6eff9d3e7a90b208b4c9f50aa6e6c6bde2926d8ebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccaa9fc7e92f39e7ad01ae96087c1a0ed40a52f804cffd0ff92be74af2e76c2f
MD5 caf4d14d5cf04947beeb1364681c9d3f
BLAKE2b-256 f9263142fff052cacbf80bdb6151b4555f9b69a8fd6d7408e69bcfe59c9b57d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a99d2109e2e4251d2453193cfd2455bdf49fe4175d9ddb156eb2c779e87e2ac8
MD5 bbbe3cdade23cfa9b10c370c1aec7a0b
BLAKE2b-256 0bc67ab3880b82c269cdd68d25e381392bc530211317d3ac5e5f5a4c9a917a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 14.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 604c8d78a7f1435b61ae48c9facf1d15e7adb64c7c2845b143f65ce0713e41e8
MD5 6e753328eb3732e4f521078c9e71ceb7
BLAKE2b-256 6a5ac0a1606ab195c1837eea96d2cdeb48d4a84f7e69b5225d450e949bf8e38e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c7210e4db47276a58ce006bc187273280f228d8ede0d97d9bc75b67e9d3d003
MD5 5d52b6584267a98a2b3c927dcefcd002
BLAKE2b-256 7034541df7084e119ca6b02f4c4c308b9ad0159bb72be8fd67d851966ff8473e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 92c7081adf1475f60eb3dd077b0827bd01a5d65230ded00d8b4c01e5d592cba4
MD5 f8ae1958223c7b79b2eee857191a8b4c
BLAKE2b-256 73211005f927ff96420103bfc590b3e8d13a2837c8f5aced58f98330078a409f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-win32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e3133fbf84d413ede905cbf299cde8289e9eea28b996081ba52751b829e28e6
MD5 371b67d6f652e8186ab05d741476b5b6
BLAKE2b-256 5f044e9427b9b921cb76e5a8f6bf0c23fb35b0405f00aff351d9179270e3564f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bf3772b9357835f5188827c5e9ad2ec77d0e70b97c96b83baf8de9616be22d02
MD5 38123e01cda71bfa1e05c7f0ebdd85ab
BLAKE2b-256 c9e3e72cbf7cc0b65019c95b3ad7edf4b8986d2995cb4fa36fef21733c28eb9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2a4f0f4286a4efa3468809ac2250c5321be230a3f4d6af24829c85031a1f288d
MD5 fb20046cd05cb29de8a8fa78d1e3feea
BLAKE2b-256 289c6f12324514147ef55c1ea8ffa4be9254e8b0f778d9c1e7f45d2610cda8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b28efb84d5abc31659b1da4c4e38312087e3f8728baf20d9ddf0ef78ffd24ef9
MD5 39e166a9905fc15d8a560b4fe839747f
BLAKE2b-256 aad29eb0602fcf44dc01bf04557f8d4d054c75d474f6fba67e2a39640f9a16e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b32094bf5ddc7c3b9cb84e5f4ce47753c2c753141efffa86c149b9b2d4a7705
MD5 6b632716442288fc2f934b30408794ab
BLAKE2b-256 69fe85800738aa23ba0dbdd41781fe09beabf216d2ffd363e4c31b502a9dcd8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 721bc10940a9c285444fd60759e1fccc426bacb1bd7f681dfc99b431941199c8
MD5 6177d12b4c504845be79f5392aff554b
BLAKE2b-256 b359b87b3a41ae9c911c57e30f441058991558a2db7297bc4f1bf669bda739b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2789a531b944c0b57a20aeaf95689896a74a5e52bff1fe22e61074895b43ac3
MD5 b571d8f463f1c1e70180728c90be350e
BLAKE2b-256 ac01d19447ff5adf3832546dd33f219538d8e4bc11d7cb70077d0e404374b54c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c68482423ab0dc0a24aa1946c7cf35069cb1e4f9034574e42fefbe58b3937054
MD5 1663a73f1b440fde72d6ce802196867a
BLAKE2b-256 0fb7b10440af37093c6204c841503f7a9a518007bd601cb73f996b1eba30e75f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c9ec7a56a4be75b30739fb2cb97be3f01d62b8ca52644e8d00703ef75c562b1
MD5 750d03744591db4258711f5766078537
BLAKE2b-256 d805616e8feab3d7d2d1f38e177dbdf6f1b3074716f61dd58f3dc2772ee76858

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 de328c05103412c6162fed43c1fcac2d4d584b9e0292bbd13e33d2757dcf1f0a
MD5 f121816104e03324a05eddbf2aff7bbf
BLAKE2b-256 4bd589cfd4b150b5e811b911aa0f230c3829eacf95850ac707e4b4042872924b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e61bbcdea4cdd21ae8e879bb44f513a8e2e220d845fc41ddf59b61a411a92ff8
MD5 da0fd0dbfb8677bfcc7f474ad63e2a82
BLAKE2b-256 1456dc300dac3b3f99f0694b54cd14af0dda2704e9195478a43ac1f24c0219a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 648f5f8a855caecc12cfa192665a1b4d74ddcee1bc7f962a4617e2d01e74a62e
MD5 25b5543ba6aa9bf9ce15b8c618dff8b3
BLAKE2b-256 6e80944e7c5b9b0e6a6fd31921205bf381115d072751ce574b6cad4b971eb78c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1971873bd2580c912f6d12d656348a0d2b189574c4f328490387a60420097c6f
MD5 3fba1502c152997482b1e48b5cd87340
BLAKE2b-256 985c01b72c946f0ca3cec78d0fb8fe53ab4d86e93fa9837af9b23b8b702b33cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 22c9a919724900e598746efb7d9a0cd51fd8f005742212cfc9cb5c8bb086e24a
MD5 5c2e356e5709f697931ea652b05566d8
BLAKE2b-256 f5dd063abb345c3d7e74402b01087a9f4ff250cad6dd6f2b3484b89ee22ee2d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34629a2fc53a6429958ad7c649b8d1f2e1ad8cb5427b5f6c3ef4fa5b1e747587
MD5 839d72b3362e63c03b2af83dd83114af
BLAKE2b-256 b51110021acae5f0a4f4243d9883fbb01932203bca0d23ba8a93e6385118f9b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3160743cbede9850c24bc1dd1c07b50e09a8ef60f714f44e4c5535adad7601dd
MD5 9f457957994e8397f9ce8c763b84e97e
BLAKE2b-256 0a31eaa3837bb38ca0bedb5a3f197acc2aa2e21edf9f21360b144161236095c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 10ced61cf889fb601184176150efdde97bf6509f63586ab23025e04b3f011fd4
MD5 9ba11dd4c020c808409a66a5fbcf51a8
BLAKE2b-256 c64286f82436ec18b3944cea99b60f5287b5e9898fc19731fdaa153fdd109662

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-win_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 85d3644cff75071db469b12da1ff6170fcecf3749c31f0537ae192bbceedabd7
MD5 d17c081b15c98293c6dc870397f2a131
BLAKE2b-256 817f26877832ed83ca1d43e07f687bd85949a2040c7bd266082a328c4bdc9b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8467603a1127806adab63d9b2527209d5fdc217eb21bfd99b44b86082421e015
MD5 86923569c4ff63878393d0029420f2ae
BLAKE2b-256 93cdae9778d1a47afd976d57a9cbc5579be3f1a5d4a22057045c8fb192e350e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0104491c10fe14e598fcb39f29509edd6402b78c39ff0bed7a561a467caff381
MD5 1cc78efe60bf51dbcde01e0e48064ba7
BLAKE2b-256 bc0acb6556c3893ab31242da3642e9fa9554f6c635b969b2d11553df6ff57749

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ffc4de13600a38844a8fa6b56b635fe0712db0fc29da8185615899bcf23e530c
MD5 f87c71fa59e5eb71994c210316ba03b5
BLAKE2b-256 223a2a2255b0d38db1cd6556238cf473ab0e01b40e8fbde81d45cf8fa856820b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7227d8ee4c76b1c6527bf0eb15dd20fcd650f35d7784f538db705fb13d329521
MD5 8c04fc9d947c3572c2f7e55e2c0cdf0a
BLAKE2b-256 0a7965cbb2ffea8d5bdd1f276da9daf800c5fb4bd42673c2b63d7dc88c957a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cb2a8e574ba0d8eee485c70e0f073899d39f01ddd21c09ea4f8efd737ade5110
MD5 13962ca3d160a4da7a438feb72066aac
BLAKE2b-256 99ff93788ed12fea99639a68c397f10afd2027885eebbc23bc1b6060f87494d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36da73fbc7b287c3aaa8fd95a6c186772c5432581e6bc4d53a9fdda10c6e4318
MD5 5a4ac153f7a67deba5b1ebdd8fa471ae
BLAKE2b-256 f3821fa8783ab762fd2206eef4ae197c16e96d97e42e131b1039068f8e3169d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55f928912ba56762afcf93edd882188a800b70ac4efe486fa1056e130dcd9acb
MD5 912d78564d20fc1886be40e0f0aaca99
BLAKE2b-256 173a353480bb7d14793030c7be54c3a36fccf78853352efad97f3e125844fbec

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 511c3dc472c98e83357115903e38a5e0aec71f7e8554def4890fe569cefb08f5
MD5 730f0375d97cf6751b530a13f5d25f3a
BLAKE2b-256 b9eba57b7285abbf752d2fcfab26c3556942f8dfad99a3ea9f44ed4f71387ce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5604af6072e6945c7eebb3af120db49a092536e8d425b5fd05976d481ec4a261
MD5 a3f7b2d51e91614ad47d7a5ca6300c74
BLAKE2b-256 aef3dfaa423fd705f492af2d2c405731b42c0b4f1b08242e490f0acecacc7bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3130d1bd7e4974c115041c7fd32e3d7801d49917369ecde7643889163b325a7d
MD5 c3ae64476966bb4bde3d892fa8488518
BLAKE2b-256 cd6929ea4653f747506ae36f7979f8b397236877ac72552f0e39089b523b226d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9c79e4efe4fa4c6815c0ebbddf36fae9f7cc37848134087a5c3c3f0c375b3f74
MD5 0a7ac7593486cd3819fa526c21b56a4e
BLAKE2b-256 20925d35d506be58e93c9ba34a7c92f5f862cef4e59665d58cd020f18f661760

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 479be434cdc6e9cfcfbdde5df6d1c27040cfbf5462446cb873f40ffc24a5473b
MD5 018c23238547786f4a0ebb13ef62ac36
BLAKE2b-256 c6ed40de96e7387e3e58db402131b4fe1608512744027fc8847707e8788e7f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6202242655b838034b0f32d46f3ff21b6645db015aa1091eefe218fe77877ea5
MD5 6ad43c21fb1fa597b555e21633f91afd
BLAKE2b-256 733ab2c5bf8b9495498cc64c4954f66f693c0a3975e5ae028a1e008fee6c2854

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63263e8ac6ee56618c75d3449d06455475b0485fecf62119e37138fb2585b234
MD5 74bed5f50f283f1d5bf147e0c1320ed9
BLAKE2b-256 21663952345b6639dcd65dbd38bb8ea4051d3485eb743b46411445ba655e634a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dfa36d2f92c6483eaee95fa8d49cf4482818fb0e101cd201e942d56fb0959f11
MD5 01db18efb8db0feac8d6a75d4deb6e3a
BLAKE2b-256 c2a88f0ca3d37642e3ddba93b3013d60ba5aae1cbab5036fe2948e7b03e493eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8e65934eb73bc8f0a4e771a0633a1fccf9e2b95c7b867dbd599f5f907b4325e
MD5 4f84bfef53f3e2dbc61e1623f5347589
BLAKE2b-256 d19dfc9d520b664c591eadc138c3ac314fd0fb5254232b483e5e7e663f369b90

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2066e56ee3e8d35dcfd508b10a85460b888bc20d910814f2c88a2c4349d2630
MD5 82770ec6ff1a0523ca5e7e7f8cd2be3e
BLAKE2b-256 f0b507a0c666221e7f117aa7aa66694e8f7a1e4f98b978a3d3182934b2de1784

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4bdf34b0ceaafe1450d2ac93573bbeb8be69aa06e269724279c645c07a751cbf
MD5 1ddf3bb1a266acc346805124930b30cc
BLAKE2b-256 ec16ff3377a4a9faee74f5497199b5e1b6c82ff5125e5371fb940e0e387be388

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b5e0f0a794c068da990c99449b77b03c31119b452587bd8e29e8580453d25c5
MD5 4ca82b50b73ca69af5aaf8a3f9868a5c
BLAKE2b-256 3de2216029129c804ad5c68733c02a536aa3a258685f897b5d8185406aee2ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxteang-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 80cf6c7e12ad0abdf264516593d41e8502332296ddbd1c9281d79af54584dc2e
MD5 ae8d6ab00dc0eb0acd8fa67e6a4f41d7
BLAKE2b-256 93c164a09fd3418b79d1ad47cd60807e0b9eed0f8d4fe6db0035b70e57693749

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2559399a3bfba946b4f8aa6775ac93da9f6892002aea9a6d4b6a1a9537dd49b4
MD5 6eaa1bd22227ac33c9336ef4998d675b
BLAKE2b-256 ef1f6e3deefdb22d1c1fb7dd14a6b3f0887fdfe33037046f3cf2bbf3e10d632a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 862f53c906324067b7c1a5b60fbf05935b156c0a8d10bd5035c7de667514c774
MD5 9c16c538732263d751225be7d2ca823a
BLAKE2b-256 3b0c86c9672cb0f744fc06f378d5996ed462e27e57446288b6b64d1c848332fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9cd64ad9fc6bdab61a9b560fbf5ed11e37c5fd3dc4283d8089dddd9b68d5a8d5
MD5 0c26ef91ffc930f0bf33bf220395fdfd
BLAKE2b-256 f0216a03de63fdd71a3a54f03ed4d06511caadcf5d2421276556d6c89f9e4a3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d59f0638cbc7138cea10fe45a572d5b49fcd20e75b389988e44be853841c66a1
MD5 96ae54bda0fea9de2a7242c9d377dec8
BLAKE2b-256 ea200413f4361a74bbb7ea37eca631945e944ff59dadfd1ba792468443c4893e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d350f49ed79621f95832b3fff57588f4a4f91a72c17d17ad8f4f58d2d0d5209b
MD5 25c47784a792c5f6fb6a671bac88ee17
BLAKE2b-256 83e56807cf559d53819adfe84fbfb19f401c070520048a8544aaf822147e1b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6734d4e9018de9f71e81d8f905a103ee9c78363a2d65e2ecd6de35ff3f430291
MD5 cb40dcc52ab2dc58cb349ce9b85901b9
BLAKE2b-256 8c417e97b31ea35fe1de72069250227d29a7cddfb7c66d2b09f0036815bbbb70

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f2cc282741e5b382b9c4663c8ffca37d31a4d9670849692d597e5a61ddf232e
MD5 0634c8409635a8eec1aa4d591d035962
BLAKE2b-256 0f5840828cb6e6df536736a8de5f6530d9c67c4a0fc7967602c10b87b983e1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c29117088d0cf2aae54c5958c0fbe18ce476df44d7ece7e37039cb9b7fddcdf3
MD5 7ca56f832ae9e630bc50784f4b615a21
BLAKE2b-256 dd5278f8ca784a5c3faf732b54c50e4fb5c4528539f4a017865fc62930dffc9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f25663b4b8e7531160d4502d79628916c5206d6301dcdc7a601dbf2a7df6dff
MD5 e0ac069bef7e20387d95ca282976f0c9
BLAKE2b-256 0fe6406cbf37f39f8db580f907fb33297743d794ed9537907c6a9988771a52da

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 75f57cfa22c2a78000a1bd5efbbc41acb20c5e416c5018fa37fdd9d3cf50e7ed
MD5 c0318bb656aa23017e65c8f65ff0b010
BLAKE2b-256 60a77feb1ba68f8a8d19efba3dc6a4f5536739b3c04d08e15189141ac8fc6ba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 17c7b8f86825ff9fc19fca9b5e7ece09ffa328abb23597b520862675767f9088
MD5 3c9cc65d9f2a67f53fe48ab4d2d6f621
BLAKE2b-256 c75e965b2f10b3e3ae2200c281e617c0b210e2f91a4caeb74541376b61fdefe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ce190fefe380cb6c2adee91c2b4b22769c1dcf5b79eeee018a0a5b5c147dc7d8
MD5 0c5a2625fbb4899ef4b84eef018e1f9f
BLAKE2b-256 51d46bf71ae709003422468943d92ceaf05d78e7cb680c258474f827128cc079

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbc9e09f6497dac8237dc9c7dae986e6b1053bd6f3f2ae86c2fb04ddeab02706
MD5 939c68699928c8c086d37c35bdd410c4
BLAKE2b-256 6ad96730d156b0b5463a5dfedc2cb649f4570d5790d96fd459b2a048b1621e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5e785570e82aba0ebb3815a05d40275ae33a03fc6913310d84066c4526f8dca3
MD5 a49eea68f4822f79775f89fa7305fdd1
BLAKE2b-256 eeb105f09082ae6997a6e8a0a87b090fa873d649cd7f3e4b50c503f9950c2aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf83e9388b3481e1ca184e93301ea5e60ed0e953244de8485a00e4a3656fe006
MD5 fd9d7e01c44d414896098ddd6bf6b515
BLAKE2b-256 0c63b33745968aa57665b36bbf8d739abe6c6587d0912c9745c6fc02321e8dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxteang

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

File details

Details for the file xxteang-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d35655c23a1121fc885252feaf2c12591fd8c66793389a4bf06762c41f579e32
MD5 9807e071da60a6bcc04677e928d2990b
BLAKE2b-256 3af1f19a57434818baf9de1639a9d94ecd3dac160bfd594799499eb39ff950d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxteang

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

Release history Release notifications | RSS feed

1.0.1

214 files

This release

1.0.0 This release

170 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page