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.1.tar.gz (24.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.1-pp311-pypy311_pp73-win_amd64.whl (15.5 kB view details)

Uploaded PyPyWindows x86-64

xxteang-1.0.1-pp311-pypy311_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.1-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.1-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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (12.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

xxteang-1.0.1-pp310-pypy310_pp73-win_amd64.whl (15.8 kB view details)

Uploaded PyPyWindows x86-64

xxteang-1.0.1-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.1-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.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.2 kB view details)

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

xxteang-1.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

xxteang-1.0.1-pp39-pypy39_pp73-win_amd64.whl (15.8 kB view details)

Uploaded PyPyWindows x86-64

xxteang-1.0.1-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.1-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.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.2 kB view details)

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

xxteang-1.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

xxteang-1.0.1-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.9 kB view details)

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

xxteang-1.0.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 kB view details)

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

xxteang-1.0.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (14.0 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

xxteang-1.0.1-cp315-cp315t-win_arm64.whl (14.9 kB view details)

Uploaded CPython 3.15tWindows ARM64

xxteang-1.0.1-cp315-cp315t-win_amd64.whl (16.3 kB view details)

Uploaded CPython 3.15tWindows x86-64

xxteang-1.0.1-cp315-cp315t-win32.whl (14.8 kB view details)

Uploaded CPython 3.15tWindows x86

xxteang-1.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl (53.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp315-cp315t-musllinux_1_2_s390x.whl (53.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

xxteang-1.0.1-cp315-cp315t-musllinux_1_2_riscv64.whl (52.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp315-cp315t-musllinux_1_2_ppc64le.whl (61.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp315-cp315t-musllinux_1_2_i686.whl (64.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

xxteang-1.0.1-cp315-cp315t-musllinux_1_2_armv7l.whl (63.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl (56.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (52.7 kB view details)

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

xxteang-1.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (54.5 kB view details)

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

xxteang-1.0.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (59.0 kB view details)

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

xxteang-1.0.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (63.2 kB view details)

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

xxteang-1.0.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (61.7 kB view details)

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

xxteang-1.0.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (59.2 kB view details)

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

xxteang-1.0.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (64.5 kB view details)

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

xxteang-1.0.1-cp315-cp315t-macosx_11_0_arm64.whl (13.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

xxteang-1.0.1-cp315-cp315t-macosx_10_15_x86_64.whl (13.2 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

xxteang-1.0.1-cp315-cp315-win_arm64.whl (14.6 kB view details)

Uploaded CPython 3.15Windows ARM64

xxteang-1.0.1-cp315-cp315-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.15Windows x86-64

xxteang-1.0.1-cp315-cp315-win32.whl (14.4 kB view details)

Uploaded CPython 3.15Windows x86

xxteang-1.0.1-cp315-cp315-pyemscripten_2026_5_wasm32.whl (9.0 kB view details)

Uploaded CPython 3.15PyEmscripten 2026.5 wasm32

xxteang-1.0.1-cp315-cp315-musllinux_1_2_x86_64.whl (49.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp315-cp315-musllinux_1_2_s390x.whl (49.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

xxteang-1.0.1-cp315-cp315-musllinux_1_2_riscv64.whl (48.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp315-cp315-musllinux_1_2_ppc64le.whl (57.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp315-cp315-musllinux_1_2_i686.whl (60.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

xxteang-1.0.1-cp315-cp315-musllinux_1_2_armv7l.whl (59.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp315-cp315-musllinux_1_2_aarch64.whl (52.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (48.8 kB view details)

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

xxteang-1.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (50.3 kB view details)

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

xxteang-1.0.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.4 kB view details)

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

xxteang-1.0.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (59.1 kB view details)

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

xxteang-1.0.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.6 kB view details)

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

xxteang-1.0.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (54.3 kB view details)

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

xxteang-1.0.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.5 kB view details)

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

xxteang-1.0.1-cp315-cp315-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

xxteang-1.0.1-cp315-cp315-macosx_10_15_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

xxteang-1.0.1-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl (12.5 kB view details)

Uploaded CPython 3.15iOS 13.0+ x86-64 Simulator

xxteang-1.0.1-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl (12.9 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Simulator

xxteang-1.0.1-cp315-cp315-ios_13_0_arm64_iphoneos.whl (12.5 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Device

xxteang-1.0.1-cp315-cp315-android_24_x86_64.whl (14.0 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

xxteang-1.0.1-cp315-cp315-android_24_arm64_v8a.whl (14.0 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxteang-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (52.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp314-cp314t-musllinux_1_2_s390x.whl (53.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxteang-1.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl (51.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (61.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp314-cp314t-musllinux_1_2_i686.whl (63.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxteang-1.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (61.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (56.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (52.0 kB view details)

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

xxteang-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (53.8 kB view details)

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

xxteang-1.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (58.9 kB view details)

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

xxteang-1.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (62.9 kB view details)

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

xxteang-1.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (61.0 kB view details)

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

xxteang-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (59.0 kB view details)

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

xxteang-1.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (62.4 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxteang-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (48.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp314-cp314-musllinux_1_2_s390x.whl (49.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxteang-1.0.1-cp314-cp314-musllinux_1_2_riscv64.whl (47.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl (56.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp314-cp314-musllinux_1_2_i686.whl (59.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxteang-1.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (57.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (51.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (48.1 kB view details)

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

xxteang-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.5 kB view details)

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

xxteang-1.0.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.2 kB view details)

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

xxteang-1.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (58.8 kB view details)

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

xxteang-1.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.2 kB view details)

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

xxteang-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.9 kB view details)

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

xxteang-1.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (57.9 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

xxteang-1.0.1-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.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (12.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

xxteang-1.0.1-cp313-cp313-win32.whl (14.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxteang-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (48.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp313-cp313-musllinux_1_2_s390x.whl (49.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxteang-1.0.1-cp313-cp313-musllinux_1_2_riscv64.whl (47.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl (56.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp313-cp313-musllinux_1_2_i686.whl (59.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxteang-1.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (57.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (51.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (48.0 kB view details)

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

xxteang-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.3 kB view details)

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

xxteang-1.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.2 kB view details)

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

xxteang-1.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (58.6 kB view details)

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

xxteang-1.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.1 kB view details)

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

xxteang-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.7 kB view details)

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

xxteang-1.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (57.7 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

xxteang-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl (12.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxteang-1.0.1-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.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (12.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.13

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

xxteang-1.0.1-cp312-cp312-win32.whl (14.1 kB view details)

Uploaded CPython 3.12Windows x86

xxteang-1.0.1-cp312-cp312-pyemscripten_2024_0_wasm32.whl (9.1 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxteang-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (48.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp312-cp312-musllinux_1_2_s390x.whl (48.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxteang-1.0.1-cp312-cp312-musllinux_1_2_riscv64.whl (47.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl (56.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp312-cp312-musllinux_1_2_i686.whl (59.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxteang-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (57.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (51.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (48.0 kB view details)

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

xxteang-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.2 kB view details)

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

xxteang-1.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.1 kB view details)

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

xxteang-1.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (58.5 kB view details)

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

xxteang-1.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.3 kB view details)

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

xxteang-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.6 kB view details)

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

xxteang-1.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (57.7 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

xxteang-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl (12.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxteang-1.0.1-cp311-cp311-win_arm64.whl (14.2 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxteang-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (47.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp311-cp311-musllinux_1_2_s390x.whl (48.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxteang-1.0.1-cp311-cp311-musllinux_1_2_riscv64.whl (46.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl (56.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp311-cp311-musllinux_1_2_i686.whl (58.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxteang-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (57.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (50.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.4 kB view details)

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

xxteang-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (48.5 kB view details)

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

xxteang-1.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (52.9 kB view details)

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

xxteang-1.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (57.9 kB view details)

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

xxteang-1.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.7 kB view details)

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

xxteang-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.9 kB view details)

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

xxteang-1.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (57.1 kB view details)

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

xxteang-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxteang-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl (12.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

xxteang-1.0.1-cp310-cp310-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxteang-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (48.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp310-cp310-musllinux_1_2_s390x.whl (49.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxteang-1.0.1-cp310-cp310-musllinux_1_2_riscv64.whl (47.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl (57.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp310-cp310-musllinux_1_2_i686.whl (58.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxteang-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (57.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (51.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (48.4 kB view details)

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

xxteang-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.3 kB view details)

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

xxteang-1.0.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.1 kB view details)

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

xxteang-1.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (58.9 kB view details)

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

xxteang-1.0.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.2 kB view details)

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

xxteang-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.7 kB view details)

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

xxteang-1.0.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (57.5 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

xxteang-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

xxteang-1.0.1-cp39-cp39-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxteang-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (48.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxteang-1.0.1-cp39-cp39-musllinux_1_2_s390x.whl (49.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxteang-1.0.1-cp39-cp39-musllinux_1_2_riscv64.whl (47.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxteang-1.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl (56.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxteang-1.0.1-cp39-cp39-musllinux_1_2_i686.whl (58.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxteang-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl (57.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxteang-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (51.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxteang-1.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (48.2 kB view details)

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

xxteang-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.1 kB view details)

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

xxteang-1.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.9 kB view details)

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

xxteang-1.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (58.7 kB view details)

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

xxteang-1.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.0 kB view details)

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

xxteang-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (53.5 kB view details)

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

xxteang-1.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (57.3 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

xxteang-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxteang-1.0.1.tar.gz
  • Upload date:
  • Size: 24.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.1.tar.gz
Algorithm Hash digest
SHA256 f89e0395ba2cfff6ef1331e73b961f9d22fd808f4d2973bfcbf8a79ff2aa83ba
MD5 c69592afcbcb3180285dbe3b64224f4a
BLAKE2b-256 130f99b4c30e81094e3a3201522d6ec6c80cdd77a0b6dff6699612bb4f13622d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1.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.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a95292e65e225237a81cd9d8e377d57ce602bb4d207cccf88a96724de3e9bea1
MD5 fdac97d7123b4591b3677118cc44ebc9
BLAKE2b-256 85fa4d66b40590fc03364a57ae0d7ae331a15383f98900dc95a11b5ce84fde01

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afd62b61d5cf970072b6d81462b9c2bf288b1880699bf29c0f5bb17141757c4d
MD5 9ed34d811825982d9317bee3bfba0b1c
BLAKE2b-256 c11a5c6ca4345a3b714070b53ed5b786f35d7af6c565b30f313f6aa3da047be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44a1d949bba3f963fb7e450e079671bb23eb856d35e4a1a15c590f787a1ddfac
MD5 2414fe322fa821fdcde782947a0bb2cc
BLAKE2b-256 e3dd010c0968f747959d24fd0c1849a23aeb30dfde9c63e3b02455e5a37658f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5a3bbdd5ae0bb4b2adea3908276b2bfcaa50c1c6464dfb84a03a35d1f435ba8e
MD5 0d8a2167b7ca9c757e221238ececcfc1
BLAKE2b-256 4694a05688b606860e68a1c417c1b142bbe0025f4f5f17cecc1b95d6288134ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d8cb9f38a2a6ce957f9cab9a58d5edab56e4384b34546e63cca3d280acab8a8
MD5 31beeff818c0dec75a585db8d013f2e8
BLAKE2b-256 cf7337feb0492c1a57aa932f0b9ccb2558485422888b422a3925263773857d2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e33d4742f36e6fd04990a9fd5a86da99d823be3673973512b4f187ee6c0148b7
MD5 58cd6514792562cb2d84133ca81df2cb
BLAKE2b-256 47eb2cedd5055efa5cc1e903b2c2b92d0d1efd7c229c62a596d54427f2bd7999

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 db146551362fc1bc7ddfbf571991d1b5a4e2756f60b1846f927f126c86d76e79
MD5 ba2dbd6b5a40573b233a9a89f4bb7c74
BLAKE2b-256 3a151610fdf6572bb68578734bbd42a1705b2cffe9f69ea4b7b01f6d4a16190d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7738aa0f0659fe91108d7ca43de099522669eca63baafd146fa17c11069985c
MD5 8bd0991932231c6e06037ff0c4b00a6b
BLAKE2b-256 1c88a661d0fcd7dd5745b7dc3a3af5d16336fe08b9fc8d23e7fd1f516208bdea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bac7f45ec0a1f3565b00ee1641854c5d6df2d0f60b020eb12c578cc3742130bc
MD5 f068e5bc24ad25b7a52df1afd520a5f4
BLAKE2b-256 deacc2e6aa23ef888073c8b7d4462860bfd4bf81a5f2b44d47218023a52a0c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 54289a32269291360e6e157d9c522b793a18413389f92a8be201236263a66216
MD5 22fbb618d30a2ba8bdc07e1b7635de01
BLAKE2b-256 87d309ccc2ae6fbec056c1649a998dac022de2feb78d70459554c06d6db51c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca90e698e19d1af728483833a1e3e2478d086156c25aaa33f8fdddbf37fa1f06
MD5 305e27c2f322c98e4ae810b66b02332a
BLAKE2b-256 ae7ff644bfb5a60d9c2b11eb0341b412586d500b37662bfeda26049fab629a60

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 51a6f50195b6dd8144d9bdad1f3ee280d210eae3f38c7debf06eef633406a10d
MD5 f35ff3b8701868d740d45c70700fe24c
BLAKE2b-256 7aed1d718df2f3bf3120be36428aed96c6caf21c389f918eebdfe16cb4aa281b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 945255ea87e812e94c15c6b0090db0c1342f8f954688df01ca6eef62151b4f4e
MD5 f6a2ba7aae98f338239d0ca81afb4949
BLAKE2b-256 c295316f1d4803313c04222ddff98be4e4585477d40c7636b82c8932d3354aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5548eadd86aeb692c10423721664e0f81eebfc2e8d4e9bd1cc5d921d467f121
MD5 dde540c23e85330a3c4670428af2e1db
BLAKE2b-256 e2357bcf78894b2760abf8efbf4973d77e7f0e3a0c60ebd791305e3f5f49db33

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cb13d6b71c68ba35ceaa6f5635d314a639de0457c8240a7b6fdc62c70be27cf
MD5 5678519a59f262fec6c39e99740252d7
BLAKE2b-256 32966979a640fff0d4bfcafa908112115276c961d489bb65935fb633987a2450

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b81d286213cf63b846517469d7da7b10f1c2e0b161977c6e294a5740d5053bf2
MD5 95d00e5cd14c1fb29a139513872379f7
BLAKE2b-256 54e223a692ef918f5e4dfbb694af26aeef052199c25c1e1050a31be8ad82800b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0910f67102ebb5510887b2e77f427cd794e8c08c98af57c2f5b700aed072cb77
MD5 2fd89e1c7b0796a18992f81ba42b1040
BLAKE2b-256 8b9ee9ccbd80638b0a0b952cda82444c7fab3a7d5a44710870c7879c2b815f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 010bf3c371c387bf0a866ea37831f9c1eea00d7cbe7944212afb7a7c43df2e6b
MD5 3fdcd47367d4d3a601e514bb5b61da6c
BLAKE2b-256 a51cbb5e065a94a8fb4a7f8485805ee3f3d145ff9b97a04040acb5220c3a3e39

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 128486907e3fab4a6a8972e1e4e19988ed9d997f8561a0fb89131060b409d0f9
MD5 427e22a4f671cef78f2c6914b08618a6
BLAKE2b-256 256a0e07a4d2ebe0a2129e3b57a6f3587e154ebc94c0a0ac77b64247cc999423

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 583166f6d28857137d3da53beb67090cc61bf7bb191fa5b601908f9ab40b4008
MD5 5224b04c579cd1202a2a0e673d4aeacf
BLAKE2b-256 b383a6d9caa41491bf975beb81b4872770422acef81011e121f56971db7db513

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad28826f464e37df2d4f2eacd22835740e2ecee48c433fb2718f4c7bf54f1154
MD5 b8ac2bdb908b1fac30ba7cb1252bc5d3
BLAKE2b-256 5dfed16135b90cc6c467ff66fa2d6802b63bf4605e55407768535db89068ee83

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3d11a7a8f8759b76faca1b7c8ec0b048fa1ba71c50275bbe08e05664305dd75
MD5 0bd00d9e40d3d47f1ce23121df037677
BLAKE2b-256 653114261e6554c79d134734605e2555c4882ccb342dcea241254148ccaf19bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8beef2b19326aa460e134283b0ebb575082e62ee34d343efdecb6fd06fb7fd9f
MD5 c673ee302e4613479ad3327a5baa22e2
BLAKE2b-256 b0d095ec485be482c673a290f67123370243f97af0f6df3274440d2391832300

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 69afaf38df542d79b02c8765fdcf977afdedd19462c6b177f992f69d3c0ca581
MD5 f00521ba4d3ba72423cd90a9dc1a7cec
BLAKE2b-256 3507a4e94991a668391bf1631f738d1f8f7f4c6b01d86ef5f4382b3d51dd04f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 16.3 kB
  • Tags: CPython 3.15t, 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.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 26306c6638d70cd92914ba4ccfc53e6566e6912510f8f2880091e450227c1195
MD5 ed5ee2dba69078d0fa87df522d96546d
BLAKE2b-256 5aaecebf52beadbd8ce13397d5a4ea5dc3e090fb794a2a6059ba43eb45e10d16

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-win32.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 6e29e1f36c76bbcde24a514c453036a33e39848750828a8fd6464387060a5f13
MD5 cd3615a4bf215f21d5b1dbcf3d04d2e1
BLAKE2b-256 ece1d273ea9dee564b2c9d44573b07030feb27e33afd68cd838a5d666bbdf271

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2921f19619dbf131802daaf3718654315fd697f6f766820cbbfb593b9859e1c6
MD5 87335e8f7a8d9f3eee84766169ccec12
BLAKE2b-256 29c8da6556a26e0e750ccae808f9eb5bccd15284d2ea699c457f8a831822f0e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5327b7fc943c9f7e5765320b78cbe9166db893f2b25dcff0ec3433a0c7161afd
MD5 61691e5739dab155174b196a56e855d4
BLAKE2b-256 8bf89747ba37efba2e0b8b08df30b0f9b82d4b1328b58239e5989fcac975dd41

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1ce7c882fc1b35aa3ef02006c855e45ccd2f9d8b3cd65d58ca63dca287036111
MD5 3c33a71fa078559fd69507827415ee90
BLAKE2b-256 b1502eebe392dd94d74cb4f563c96df5c8245b32c5dcbe1c488aaafd00eea68a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2a0cd06f933d40dcaf93df193bb7c4e1e9a1a3121d3448ede663e512a4701974
MD5 73a8ceb2f7da7d616ff66faec078b966
BLAKE2b-256 7a3c2dcffedf34e7929313e980238be0ed1c0b5bdb27662de104c233177481f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 069a4c742e6a2d3afcc82b2721aceaf0c8e39f6cc0d1bf445726a93faf3fe3f1
MD5 391e73e9a86c808cdbd7e98bc87b9f06
BLAKE2b-256 32ac910cbeb021c03174d09a05b55a4771ea128b7b3df8f1666072ee109d7997

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14d6c15e9b293fc7a85dcb5529de1cdd44c4f836eb85ec065e027cf1d5e50452
MD5 cdef2f711490a316add5c8dfc638bf79
BLAKE2b-256 149a6e0c9be5bde8b396d591d116a8d5db22f8ed5145fccae33a42546566d8f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73f2c57ec752eb3cbb2e2bc12d0b1675de19ab1ed1f23f4103bc9cb782b6662f
MD5 37c37fae0db603e627222827e355cf75
BLAKE2b-256 5f7d0fb2c633b27ef2a1bebb708031ea3d5bff08f465cd984bb99715dd19ae1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cbdbdd4305c3f7369441f0e7a00c40f3b53a703b0c9ece2843f074d0e0a11d9d
MD5 d058ad878ded8dd92195e0d761fd58d8
BLAKE2b-256 dc655f712c44567bf8bd2bfb9b37d4ba47e6d88c8f5040142d3e127b97ab7d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f02900c9b5dea3ae73d4af69e9eb57ce7fadb8242b0ca632aa8feb8c734f92e7
MD5 b695170f4a4c6ba4cd24c181b7bf7713
BLAKE2b-256 227b311ef261771cef66d0c6854228ad40f8d7807ef57a41fb9590c1a966b573

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0b875aaad6156f9c0b71f4b33c9fbdcf68fab0917ce2952c6c4abe36a4d9b6fe
MD5 7f7256ccec250d3d228e053392bea333
BLAKE2b-256 9ae610fedb4bae65247a9666abc61cc8f6faba72d8d36dc68bdc524d340e2bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6982cb5176e1d82f91d14d5c86499c911815d1a7ea7af86555f0dd374cd49394
MD5 1612720dc7827e0f2cfbbdc70b0c8490
BLAKE2b-256 51141bc392a445109f014fdcde42e6668b22a7d8962085b6aab978595ece1f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2f9c01e1e118166c50b987380a44b42fc0b773969a7c92692959de4806dea498
MD5 45afab4cf35c9304244449b5b0a1763b
BLAKE2b-256 1d4b513983ea44d8429646fa4e92703359c449513beccc66652b2a2ce1325b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19ea46c48f2753af44e6c6dbe5552069fa34129f0322e8a6b36d1d94c4a4e75c
MD5 763c3fe15246b273c0bb78cde8a8ae3c
BLAKE2b-256 43ecc9e26af504b93036181bac60a746391b7c032daee1f259779ae98f33b6dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5b0d0a847fff68a115e2ff487523b2c2147c0801fb77a32d578840c5491d995c
MD5 e1980d19fac53f1c166c046f34f7e4be
BLAKE2b-256 1506dda297206ef7898a07ef579138a924e0cec5ae5fc074df4eca8d056aca9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dd28c313ab9510e7022306d8c5c62259cc3fdf6cf9e6d1b37ef60e615faa532
MD5 0f8bd995190b1136a779b0ce399e4da6
BLAKE2b-256 ec7acc73bae70911fb4fdab1c8df3c76298519d72f93d4359d50054ceb515204

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a56c7fde5729e50f422a2c3ded7d81be7a76d73c836e04b135bd4c3376e7bc07
MD5 717a69ef3b65927fd884d9111c37648b
BLAKE2b-256 2eb25f8d05351bc5f480dc5299c0e8eb3593f94164baee3edffa30b965efd5dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315t-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.1-cp315-cp315-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 5f4bf95a07515e20277658a1799b4f2eee59a3a77a93a9c85b3884681824b987
MD5 99bc8c1078d0faeafb41d679c9506d4e
BLAKE2b-256 6a3d6fa84e3aa430079da23261827a0916d04570dd038228e03ac32139d58db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.15, 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.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 dd96fbe5998a4a11ea1a46c244d05c9710656eb580c8bb33843b9c60e7f1e65d
MD5 95b472b1bdb613ba5cc6ac1f15c70a14
BLAKE2b-256 6b49405a57eb6b9d9298c3d3929123bd10f3c5c04fc129755ebaf01b7229b86a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-win32.whl.

File metadata

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

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 868d159c23e921f3b58b72e2fd723bfd714fc703edba8ec97f2f3a1343387431
MD5 cb54e3964fae4677f3ff7e51c93d0107
BLAKE2b-256 a383821d37daf8a699bf611742e991c0db0cf99817385e8f86c0c44de1f40590

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-pyemscripten_2026_5_wasm32.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Algorithm Hash digest
SHA256 3e5a23157841355482960c207ca2f27618fa1ba6388c3261eea540d774209392
MD5 bbe5cbf4d6b0fd995f30e7d6cb154ea9
BLAKE2b-256 53c743e341df57d065406bacb3f75626dbe9b58dccfc723649262f6a3ff12459

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-pyemscripten_2026_5_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.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44071c0cfb2678254f36a89b24fd0330fa019011f71d58ec93232267efcac4c2
MD5 e6cb034411e1bda89e4150f26b3e98ed
BLAKE2b-256 e8fe651b664e58a301fb56988edbc76264a58cff47f8fe24fc939385f1db1b37

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e09a90c816d74c4ae2c54cfa9dc33afa34598c07bf83951780cc0cc15e0dd6a9
MD5 01b58a1fdad72ae348792fa1050bda72
BLAKE2b-256 a5aa1edd0d8181aa2dcd8fbd4cca651b8edebd426d02781d932e98c7a0f2da20

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3f936813c479edf3a328152dc1aae8dfa56c57bbee73557b22393c889cb73fca
MD5 91d50297813f6e47f24fe94ea611a818
BLAKE2b-256 fe308cb67f80844222df725cffbc55e362af89e0816def0c2bc8d708f903a334

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 10efe9af89a3cc7ea10cc12d3aea4320c5e12a6ea2abdfee80d58eef70503841
MD5 8f0e5af9fe8cf0e30ab8a07f46538049
BLAKE2b-256 d9746796bc9ff0af4570801d3064705d537db4121e77ec449d1aa9a2047d66e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5292b62dfa32c5f2aeb3723dbdcd7734b4145bdf7087d934faa2cc15c81e04e9
MD5 154dd2b62013b3dfa99d4c99f453f5f0
BLAKE2b-256 9b999c6f75a63802be9807e3af72199ea8ddfd4f403c07f37330045bb97a6df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f470f3c70339ecbca73ba5852233435fc966ec976e205e975fdf2e4195574c3c
MD5 e5a8b107b5b2fde0a01df706be0ac4a5
BLAKE2b-256 58ccb0e83cdca10d2b10b4f760c83e0a6ec5b6644b0f87ee2a93537bc24634b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 394d23a5e298ff8c79b3fb4c72fdc010b0c3ce6750d92ab28fa1c2555219b8ee
MD5 d764026a96467566312f0cc9a269ee53
BLAKE2b-256 a8e3ce1bc14863b24334302150c7d21405c86a9b7bcc8dd1a75ca3fc52d09fa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e9506ac9d1b8ecb54d59ae2c4fc1cc73576a1869500c85f8dc2dcd3f5ee98f00
MD5 148cc425d0f36f6d6dafd2580aedaa86
BLAKE2b-256 b2e407a9acf5a7ebd8b8d2e549eae6152e13d0916f4fb447b50335177a4c3887

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 075fac8d2c179bf740634bcbc7ba25753bd3822f89baba404e181b9b7a6c09c1
MD5 6b2331cd3c85715d98adfe6d135799db
BLAKE2b-256 25c0c7f5e6710a8309e403721f30d208b1c6472e76a4c92cf67851b1a923fe28

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e46ae2faa0a8d9281b1a3594a3d023f18f7247fb07b0fcaad26aa86c5f45cd5d
MD5 041a7fcd4b7488b2095e09fd0a950124
BLAKE2b-256 8db578310abada98f0d3f7c04fbbdc07b6c9b9879f1bef5a42a33299ee43aad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e48c72ae94aaec9b8e1819b6253bebf9a40fb1103ee5a6f319a2d32f75be7693
MD5 7135cd01e2ee467e42d4e9700b674068
BLAKE2b-256 744af9c0e81425317c183520295e1a8fb50565330ac7dc262f600aadcd9bb086

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0beb9cf010f2dd72bc83d4d0cde35cbd25d39d059f5a122dea59e243d43021e9
MD5 ddae9528152b36a015fe964ae95fe5d3
BLAKE2b-256 bff23c8527221e35eae6b2c2f863db8dd4dac47cacccacc446fcbdb65fd526f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5749315157900a910d5b2505a08487cd7918f4115c354d1f25b76a073066a9e3
MD5 6c8c4775533b9db4803675c0fbaccd28
BLAKE2b-256 4a4d322a701425df229c6ec70d7d365667869886b19669dad705edd0e4413097

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d9a06156270145dbdeefb431ded56c31131714c64374c3b55cb65e8351defa04
MD5 bb561a62700028b1cfe142627184a67d
BLAKE2b-256 7ecc8b02bff789bc33617456ddd65118b37569776bfa51955bddea12fa0bf061

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aae23fa55e6b4f9c874418ea726c4f238acad386ed5bde14f22246803c38de34
MD5 05eb105f2400c78ba8e3817d2aee1539
BLAKE2b-256 b46f6221354cfa9b2fa888d2f2a7e90f6e68da14190b3e9f41b3526cf8653cad

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c2bebe26bd7f65f36784e3edeb23f44bdb645461ae3ebc97f296b251f0acb0f1
MD5 1ff089bdbb8496a0bb580f91b87fb9f0
BLAKE2b-256 679cd8f546bc6fe2a331b1e5f05788af4773d3c5f7861438f6a5052521286ebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 e4f65c38841afbdb379ffdeb5125eea32528b8dc087167a9d00eaf6f5f4804ce
MD5 a713179e1aed5ba2a98f96c93f779719
BLAKE2b-256 37b559d5d690ceb79ff19ce60604d13719fa864cc2746cbbd48870fed22870ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 eebeac229ac7b7868bdd45eda6f0827cd8097e7059da4098020d39dc98b2818d
MD5 b6d603d9c1b501890503cfcea086cc79
BLAKE2b-256 3a5b21fef9069e85786dd42c95ced7f55070e4d96d8f54507b78a21f4d63b43d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 47f84cb7a911f88eba06ebdbec1789ccb8bb13d5133e188b781a0db0669405fe
MD5 57ca4ff6a4bc35ce46b76b54cd9bb6f2
BLAKE2b-256 2f631260a54bb847c32e8a85381c167a8f93879ec9d97ce50a796e60d83c86c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-android_24_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 ff1a2eb556016b38fb34e85f35df0fc6d7097439694cb0afd5dc334247fe735c
MD5 2ba7306f929b64ce81844f788f90c5a0
BLAKE2b-256 e1a2e7dc58aaa43b3d427b59a941cfae9fa2723bae10bd922e8ebb82b7c16677

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp315-cp315-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 3ea9123ad668b4eb820a492dca5c7d9712a9859bdf5eedc17176c3b23c79fb5a
MD5 00b84b0188d81cdcef277f5958858290
BLAKE2b-256 9f3e4b9ae036d59b0dc83f1b1b61c48cf0d7558cdd7a935d49f4ff6779cc0f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-cp315-cp315-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.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8b70b25e8e6de9ccf8bc23589dd4dfe1e15de919e0860e6595803ea5f649fe5c
MD5 05e9c4899ae5b5506d91dca3bba3cad3
BLAKE2b-256 a015dc1a4635714720785a7af31313c7511d48f373010db506027b34909e27ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bd5a4bdfcbbaca3afdd941f91a75006d97e8f23f8bcdd58e62a93ce751ec793f
MD5 45ba98d6ced107aefe345b0cc46b4872
BLAKE2b-256 98fb8cc04af55039c84ebf104c194f8535f6863c539fb85f64d65da5226740cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fa50fdf79e34aada2ad61142cb2428c8438f2190b7eb5628cb2b193a37c9a8bc
MD5 d4284f0b756d67d8be27fa5a13052f2e
BLAKE2b-256 2b6a51f09e367f6ac1c4f66efb1ab2d4b6373ab5bd76896fb06f51f29aa49dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87acb04cd1e89ba6e9fb57e23639ca36e955c62a83f32e609ea6322da32788ea
MD5 719d95aab2a104fb06177686d779cfc4
BLAKE2b-256 47fdcd81e86c9a8903be25dbe56beeebb3a1e180afc96a2f61f450f7c1b94671

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 51cc09d24b9c075e1e7aaea4695dda014076aab3219e891ab9858ce82fca9b8f
MD5 11c81c47bad93d4d2677511ed5dcaef1
BLAKE2b-256 feaa4ea603790ebcb8754e1fb27081436cb7c8bee5ab3248989cbf06721cdc4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 025a3a3e86b3504f57f48f007daa557d53a0a76cb8c0a1697b81cf64c8f80de4
MD5 4413c50d4b5bd173f810891eb39158b6
BLAKE2b-256 f6f83ee7483fff56aaa4a84378aa08ca7f965f966e697c46fed39fdd3ed20336

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4db949e748806c640f1464f0a76fb4d537858b80e7f0cecf46a3b5173e28fe4e
MD5 e33c3fcc4890914047ee826018721994
BLAKE2b-256 90307557e262ccd5f2ca18110238c0208a9da3345e87a1590670246043f05141

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba64cca0143c88c424f4446aff56b880d7dc604797299871a024dbbbed7f3669
MD5 35a9f1f39aedcd9d36376a3347f872ee
BLAKE2b-256 51f9a53c0890eeb325b8f2db83bb696d1c7c4eaadec56364fb37d7ffed3ddb4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a38a10abe7f7052490521bf8f161619137d57619546623b03b7930b5b258da50
MD5 b203789f56914d953f5c7d1daf5e83b7
BLAKE2b-256 edefc9577888f1dac420eea419e9c2939997f056ea49784575e7b00d277c6097

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fc7283e86d6c2fc3013abb423bb56347aeab1a1e0d5f4fe57dbe4591a3f76a3
MD5 8e58cb3cd3bd9e69cf0de34fb4d1b02b
BLAKE2b-256 54834dacbe7d96b50d50dda9efeb0745b9ba3bb1cff04108ce8406d3d3754dc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dd30890adfc6aa40b4d0f4102a90c7dde494fd1153a3aa043f8aa1f5d99c1a66
MD5 7e9f9a05a34e0e8663b6282dd6007b23
BLAKE2b-256 ed9df2f3b4db187ce691f21d9200120c2c64acb261d1825ba12da46b1d656b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8d8405f8fb194cd83e658327aa16ff830d1de80064d120485ac388bdc1a4b6c
MD5 60de813b77ae489853a8832ff43cf957
BLAKE2b-256 5716e34525a99dca52dd3c97666dd1ff965b958a6fb2de9251cdd1c6ceefac1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 395b9c0210e66fa5366dd9858d14e58a06ac23877659047ec12fef913a8a1e1d
MD5 2fbbc97ab2877ac6585db847f70f871e
BLAKE2b-256 652637c686bb066dd990ec3ce3028afc2412e274677d01c7116f3154d3e41dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e851fcca356ad358a44f2ef716280d1667649344e10b8310acd1ffce848ed467
MD5 c9ee55b30ac3483f5b8bdbc64161b56e
BLAKE2b-256 3cd820fc602ab487bbcbe2b1bda7ccfba2d18779ada8c66bd24ae23095ba7a8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cc8b327053cc05345ad6f3900a3077f7159bf5b8efa4f3d43d01a185ad48aa6f
MD5 e358604ea45d3445e9b7457f96631287
BLAKE2b-256 d9f6e6ff97610c464c70f78f044959e843981a84480ed8534bce1d40d488ec1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f28367820cf0c62335fa78552e89113f348396749c66d1a9494001cbd5925704
MD5 e21c69ea7c5773902adde53db1197e46
BLAKE2b-256 2acc78deec92c795df043c16aa05647da373130cc28acc82edd2ecaf91bb6c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 de2bb66eab1cca49dd68ced26ed6015e01e5d395ca001e24027d74a7a8214378
MD5 c416e7747f9e466ee8eac9c682eada0d
BLAKE2b-256 f6468cf131802813b45a1d4cab3adf19d1541ed637613cf7e5bc527249245538

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89e5cda24c22e532493a7c7f3df58b4c6d7b9fbe0a332e2fd44513849aaf1696
MD5 aaff073dc200c8e09b898326bdf6231d
BLAKE2b-256 2c2e41e4251fa858415a56c5a4223b3a74b0fb447a36658ea27c79c15eeea94a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c65a207a064b227b3a25e82e2174b32ac85b9debcd5e5cebfaa45f96008a6e82
MD5 50d7c59c54acfca20d9f857040295a18
BLAKE2b-256 a4a5cbedf699f59ceb4626baaff4512cd91fa613740c9f26bfe4c0bd101b531e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a829b89f6ed5b06bcf33b5c15d6bf75f227c2a8d671824c22ed417f42096f626
MD5 c57d60de9f28b9fce18686e86dc4ae0d
BLAKE2b-256 562451897d45e6d03d256024b3c2578cb95d06839536e3c43a953d55b3b2ea4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e8406b13b302d941fe44b48415b384416481a0eb351bb31860a24b07074fd0e7
MD5 bed3aca959b53c443c1cf33b2069f67c
BLAKE2b-256 08e68d089c495fad8f2addecd34ce57386942a474b56b780f2df9953a42b2691

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 474ad528229697a1f67270456aaaf8d6b84c133f6f642ec1cbe2044314b1a16c
MD5 86be06b58a954c51433e86e95518802a
BLAKE2b-256 f64be81aced8962fde5eee48a050053c899264bcf5da6620209523cbf16b1cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 699a858aee2007c64e8ae52817ed544c62ad2b624ca794e8f3bb76f40b8b4512
MD5 daaf6758fb9d708cacff72ed8544ff40
BLAKE2b-256 196d657f2e1022d5a56ffaa0ad220d9fa421540dd38261a1e475c3af3410b62b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27aa561090d163dde92b691c3f855c328f6eb96b8db76414e1509da037f0c955
MD5 0f050915a786ec57ef8c110b58397c7a
BLAKE2b-256 654250d97e244a625d360dc191f701f354f589e5a42ce0c1f1265d254cfe32a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d6d68fb2bc2423a0f24e63f08638f6301905846cc08c69d5e7f56f76c14e4637
MD5 5148cb7b54b2502b3b76d8e902fb634a
BLAKE2b-256 e86a366a7a9b1186d7c6c4815c674273b239d123ffbab4a741d10c02a77f23c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 571dfabc85714d0f635b172a9f2923c135b5b041b46b8a97149ab54796a722a5
MD5 2746c81186497456c0d05acf256a9653
BLAKE2b-256 2b944fba0a30c0a67a3d9d8bd547662d13eb2355936bca1983f3d051d162040f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c68d631e4d7bfbb3907c4897d562ba7fff69fdb4583bec84dbe009a2a2df07d4
MD5 de68f3532dfa740cffc5a7fc16af557a
BLAKE2b-256 7578288c74dd493c66d970854090d72e2456b93e4d35a363d5d2eb493c4375af

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09fac95ebf5ce9c67e5b3704b36b7ec09947d81939a6e089da08ae955ed47549
MD5 dcd1d42a6423cb52efe4b70925625ec0
BLAKE2b-256 21a2c69522b81550307a4d8dfe42b31444c77151f765f08bb0e6d5c94b0647c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66ac226ac41ade40ecfb831987aeff84b065510eb1279ea2f5df6aa39085b7ab
MD5 edda275093ba27516185a1d1a4142fa5
BLAKE2b-256 0f5528a61949f7506ff9ce74b85f269ee8b9913f9a0f0344e31af9cad4b5466f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6293ce5ef2eb543f1bca4eca411baadf8cc0d395ed2eb67298b367996ca328fc
MD5 513ae16b1c9a1c9ea929940a65de5b63
BLAKE2b-256 d45e0f027233ed9bab39b8fabd0f0a84f1f3807d851481b792a00e7323291d6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bdf0494e2e0432e17003483a2953ec0f83fd51507290d6156b1453e93ca81879
MD5 38687488407136b479790457f1ddad2a
BLAKE2b-256 1dee704a580abed82928894512126072d2801efd4ff65c17e5cc2f820d012269

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ef364836399f6a26380f4f97b6a9043468bb54fbe6f4e338b8cb2ee6e559cea
MD5 324e091401183d82d894bf4c5e798a91
BLAKE2b-256 776548d8d855ed02c0c1fe1b214e97f419d261cc4d848a3bebd4599055666561

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e86f2949f84d3cc572bf4d4dab3403c76464e694aca4b43c8e509afb25687391
MD5 8785b077742ec394110b50de8dcf0e4c
BLAKE2b-256 32bcb609d01756a0b6989ba72a51160f23a99b6dccdc73f8fc361da62821529a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 968f51ec9fbd868c1ffcca2adbab90f9394d4686ebe8befb3f5dfcce9eae7e60
MD5 2cbd315363cd2c1a8b2e8de3a50562dd
BLAKE2b-256 f4c9daffc2b8ea05e363f61aa9b0944f33c5902300d5684f7b1a9d87afdcafc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 71a4f36d3e777d429f76de417dcf146d7321c53680a52761c7839d241155464e
MD5 3c1960069df66806f277e65affa6ab0b
BLAKE2b-256 55b708b445eed89213c87b0e114d5d68297aa4eae7123de0692872a6f2384d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71cdb640f29e17721e9867c307dde122691c3b18301849a0717ad63edf078883
MD5 81b9d6fd0f5186ffe0110d9a8e322ffd
BLAKE2b-256 94ae6b5073e8d8717a9c6a195b3e5bca9f5bd5d7785b0292f29a35eb50987d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 426588efa2e329b3a6fe0a1870a3d356fe7eede72d763272902cfbceb442b7df
MD5 6a687f81254ee5b182d5527b72cbc554
BLAKE2b-256 6867ffd11b7bad6007192ae93f98c0bea7f6a0a6effc82f4c418fd9c3bd5dcb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4715b41faaacf951ebb497d77ccd60eaa0d0cd93f9f5e7be0b3b33a4a5de5e2a
MD5 52bdf037278a799c058d1e3dcc9cdc98
BLAKE2b-256 ad66d32b79876d5372c705e83ae8aaef12af89921f19dc2890da757e2923ddbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bf8e2d930bf01ceccec418eead603a3d71d68ff319fe2eb3ddb06f9aa0898a6c
MD5 80fd778fbbb96b17737abbbedd036910
BLAKE2b-256 e00e7e4ca713b9e059d0540e649679b6dcb58aa4c19bf810fbfe5923a200c59b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 407d5ec8807320c66c1aae6f64f0ba89220f41e9f3e50e883f82b17a22eb1149
MD5 48036034a273403b6ccb737eb83a9e3f
BLAKE2b-256 357a0072c0d54996e9ad6604945a6e5a602c6686ee302f1b72cd81d100561762

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 8abeb38a9f3ca05cb32d6fe8386710c611855878f67101829d6cebd15d137db9
MD5 793e695c31bfe488327f05be97e0eecf
BLAKE2b-256 bdf64ef8d59e5037465acc95aa56334fba8bbee3132272120e95aee77e65c06c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 6366396ea3c5c2b2c4733b25f6b103456ae69efd5a73fcdf7670c202999c9454
MD5 d787cbd95268c9ea72230ca89f1772aa
BLAKE2b-256 584584855d6b7541892d3e2eb03a5b61fe0e99e4f5233e98fa7788c0342b4a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 d03a7c78ee8f47d644d4e7c3b87627b0c5ed8191fe84ef879f70f22fe871bfdb
MD5 df2f5b2532f090cf642bed1238e3b3e9
BLAKE2b-256 94f8e9591066234262c7da51356c9c57fee06d9d5b44c81833d9c96d679a4bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 dd88f16873e4cc854423218a67e33e50ae8c20245fa6834edfb840230e84423e
MD5 b590a6c42b3931bd010f383640472d8c
BLAKE2b-256 b19f8de30755f8dce5357ae2ec68acc6e5fe994d62903c0a55d61df30c0ee6a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ce099d24879cb14dabd55dcbbb53d582b2bc2fd55291fb50818d3483de79d51e
MD5 9ed84719c22525804d2a8fcf635e39d8
BLAKE2b-256 ffff116e2a631550fddad4286bc914b8956b0acee36588b0751547361010ee68

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8de6f350300d0d5cd93d76182eee24c7666f5ecb3cf2c3a60d767237e0a2f597
MD5 f0fd433b84f21264f4a377cbbf1013fd
BLAKE2b-256 ea24c282d384e76abf8d3b83ac6c3a90fca9d69359465fc024c80e0acc91e592

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 14.1 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 41b7bbcd8da9c3387c4d1d7a241b573f5ac47275b791369094031c3e11d55bee
MD5 9fa4b03728bf90d21c1b0940c8434955
BLAKE2b-256 974e4e8c9049238cd9d58c5b15d0eaf4ebf6bd0cb51f692b382a792b2d58337b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 20cfe5a5c700f10c5f9fabf280e3dfc0687d86cef00d35b3143e250f9ce034d7
MD5 97d20e9d44e259f0ee079148d5b9f165
BLAKE2b-256 ae819e814e3f3732db1a316fe491fdae099158fe88fec4447665c883703da540

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ae8f2a4ab93958ab07e700eed5134b80a3459403e0902c1af3e4ed8c8741383
MD5 9d297049088b5c34bde08542c2d20ef6
BLAKE2b-256 417f16b6723df09d723edad24513840eed35300a69af11352691b739c1091efa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e7aa433dc43b5aa63ed688cba625860bac12eab0dcc898ec40f2365e85f901d4
MD5 776d4fe46b5e60f54018aadb94ead46a
BLAKE2b-256 aecb2ce6bc9a064cab9449d66cf0253a99b359e1ff9061e3d1a51e5ac9360289

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b17aca2d5e171c2ecbaac698c1c9975f8b9e3f7adc93aa830ecfc270ffa319b8
MD5 6cc7b53f051d5f3022b59c11e6497e8d
BLAKE2b-256 ba579f56ed356864e4789849dfb5eb2bbb323085868f14ba91932eda631a1ba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d68ae049b009ef695a3547030a2d5c8e28087a497fef7522c26fb3f83a34092b
MD5 7347ab81eaa1f310b7c429b4bedd0c98
BLAKE2b-256 9c622ebc45f78c696fbc00cf75128256e40e76b5430da6609fe6d7ea2f64f46f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8ed891e2be4d3adad003cf8e77288adde3366cbb13cece0727af898550e2c5a
MD5 5fc49081384d7bcb8b66bec153d8f54e
BLAKE2b-256 5c3cf636d607207bb2c71b70ff837475f1e7d59a9b1682275af2275aec6f093e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3cf1bbae160278f190053f8baa6875709773766702a28f8da3ec7e41bc0d3f32
MD5 13f6b0bdc462cfe045c715b685fb48c8
BLAKE2b-256 5e8bae5b7c4acd4d8cd0bdbbe3769f1c50257bbb7add60b066677cac10c87b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eed9b3b2724d61d986be8b0e5f416499aa7a42c45ba2eb5662b9e989ef1ba643
MD5 5f0c54618c99a896824ee2a920fc7976
BLAKE2b-256 93f3b9cced175a54d340fd18a158d1883c291d51337a1d09005f10b79452043c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ea705c1f1310ecac3c754309e7b7d22ceeb75a9610c87fdfbee4fead71a2b7ac
MD5 acf9afc5853bf6f58d5ec7574fd11930
BLAKE2b-256 cc8fe9cc7bc7cd42aca500afd2f5386ed77a1954c8449f4005401feda1414d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b81b45ce3b940175d6e638f9d9d346db7e691c6a31c2316fd7082fda4a7cbfa
MD5 2abd6bfd4ebe0cc1ad7bb2fcbd73fd9e
BLAKE2b-256 c88205031fa9e778cb78de97a304ae7b8e114e8618a5fd843b1737f9ed19e1a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b7b534ac6bad438bfaf914e83812b003fe64a4e2a78358ccc1f5aca8748376d1
MD5 10d7ca10f2902a527ca8d1db881486fd
BLAKE2b-256 483f5f3faf16e4a126523ac091d724e141c408b5f82eb9d535a5a96ceea29473

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b479103335383d26f281b2d3fe8bd7293d60572584d2c5d574a624baba0dfbe6
MD5 9e5b7a10eae32644e651353ee1cdc679
BLAKE2b-256 141d1bec6d79ec3530ca4f9d3617fb73974eabf66fd949de33b34aa81fa9b090

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bae789eeb122b68486bb4005cba38875b778aaca0337afcea7fdc5f0559643b0
MD5 258271aec63af03b179acfe61cbc1f28
BLAKE2b-256 35bb84dd7da8814d888a45f3a1b4d65c275b6cf6bb3f716c2a2cfb0fdbf50729

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7d02d45e98b5fc4544fa409492d8552103d05611473f0170819566f30079d09
MD5 c9bf5531281c1c4faa2ea7ad29a56338
BLAKE2b-256 c08b27b3988536628f182f759c141c753942f03a9753fa765ffc1daf3c90a77e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 39c63ffea22286dea7dd81ce8f452c7ca84cebb3f3f6119858cc141d1d9a9f26
MD5 d84c028721c80d5c81b89cbb786f1f80
BLAKE2b-256 2e5f9d78bf9b1a36dcd4a364c77b2e9d985c6aff7abc20ce6a7a905cc4992278

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3d58607adde09f262384a3c88a4dea05b6b6d7d2043731f92f7a82b3c304e5e
MD5 a85255068d74b6fe7eb6cd115eaba237
BLAKE2b-256 8e126ebacd395a340d35ae8b6ade8fb53680e440b4c80414f6b9f247caa7abc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 861c61dbcc0312a8ede704832b0b5eecbe3f42be1d0dc8c06d8b049576640eb1
MD5 dea5b3bbdc31169ad36ee7c4ac6772d9
BLAKE2b-256 c3acc90be2aa85541b2b28aa6675f33195e325a61661888c7a0c6884c5ad02dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 69e341706051b7086228325c625f7dfff80d95b66513aa453886cb43aff2b7f1
MD5 30814f835651f76e5ed38eac5791e430
BLAKE2b-256 63ef0cc4bc412589dbc2bc9b5d0db081eb3ed12f5d784935eaf6fdd1a1e9d282

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 b895630cc40e304ecf6ca09522bd6c875ae5d21e58de53e00c1a2eac9a36a04a
MD5 4435328c84dfce94e7e8af1e0cfbbd0d
BLAKE2b-256 de769328f3597ca1a343cfb6e68f8f74dbf558adef5f549ee0e070c67d47876b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 3fb4a0a808d95ebf7561e2297f24fb746b2b8c0f4d629b6c8741ace2457525c0
MD5 934bf0933da257b3184cdb838a5dcd02
BLAKE2b-256 8cb9f67681dd0f4764d4fa4eb9aa706e8728886d4a18b7ae0617f1bebede542f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-android_24_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 3d1ca7dd0fb9c766b8930ecbcaf6c8fd800df1eb8f95f3d5f87d4363cb2aa0a7
MD5 62b4d09757ddd3d7045d71be4a8e0d56
BLAKE2b-256 47d0065b060d8994de29a06114a50c20e978be8b2d96adcfb6e7148c0a34f08a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 ab031c88cb9894fda6163e313b5daff659f21ab4b050669a6e1c9ac8bbef43c8
MD5 0b02d2eff9d9e3b10cde12ede451c5c0
BLAKE2b-256 02b2b99ed7b7e3cb4ef991096513a9ea698740d0444717b2d1a520828937f1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3ec1b9f55048700ca20875685a98b9b604360a4acb3c1194235182745864c67e
MD5 18b2f193e49e2ce5fba71c0ae14b3b16
BLAKE2b-256 5f9868adaf1fceb134d9929385717cd11ff5be7cde6b70a79ce340b96eba6f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e7c6935f5b465fd61eda02e9100694f3d78128346f269668fd843cb93190cd15
MD5 53cb38ff2a139a187fcfda200bc401da
BLAKE2b-256 09ca09fedfec6d70f57545e271bde2c1b85966cebab404bdf1f1eac8d4dc7123

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 14.1 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 343a00888fc99c28eddd2b65b6fc91cf19e678106b17508269f6a27b3725df4f
MD5 be16bb75a01f79b3532d6a335c6bb71a
BLAKE2b-256 3ae2b5438a5642647a52aef31aa2bc0ec2a4b11a40331d047420df7d4014414d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-pyemscripten_2024_0_wasm32.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 b35e14f5e8287e08e06e85be59fecf243c37306b84704ead3300c01a99f80c3f
MD5 e4fd19c6cc3f8ba8176c447b1b4a8653
BLAKE2b-256 a96400e935ff437525fa2fd4897471f0b8ab857470e7458ba9a3ab3e574d4805

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bd73f2186e222a9a38e5e99ec3c118b3a8866e04784d343ab139906dd1d7b86
MD5 e1bd82eca0249ce5fb1b9a4c0674f58d
BLAKE2b-256 a0ae99ad0a1d650cef131343c52621f0e4b7d56596daf2f92d37411e39a592b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f2281dfd8251aadb485b590ac6bd3c3bc252df9500d6f1f971f8ccd530b30df9
MD5 59dcf9904b2dd40bd2ca39796091fd98
BLAKE2b-256 eb77f0d673fa9868c8c944b578b0528adf3a90899a4b7df0d6984a4b46bf2b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b53a603ab2bdc167a497dfea232cd2235639bf49852e072e57f93df0d1a85404
MD5 6bc05de3050613c3221667d413f4124f
BLAKE2b-256 60b5b8c17833935d17d8cc2d55c3dccf2a9f84173b09dd05ce64ece3537fa2f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9fffa9591436911732244f8a7eb88575b39b0450e77b8143661e618a8787bd89
MD5 24d061539aa2d2801efef08cbbc0d6dd
BLAKE2b-256 23d55ea09ebd352c4a4a6659ca23cb83e5c413d5c609d5369edede72f722c9cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b77d2a603470550a00af4be9bcf247d18a993dab1c1235480708483fc70fa9e3
MD5 e70b22a21db4fc753948628a3f34abe9
BLAKE2b-256 ffb9f562fb4df3f39c1f6f3a342ac184f883add330277f08b3fcc07cca70f8d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d99626127e1ff4678a90e08d65e136c9f2bdccadebbe2a8e53a0c355b248c8af
MD5 9b14933bbefb37e0e54a592bb0f26780
BLAKE2b-256 2df226b0418e9c807f06451b313d218b3b03ed513c882144eb1e4c387bc9f52d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9b691da06474750e582fc3b4098c0813f8a97b8e8330122eea438fc0ef066cc
MD5 2f9a870188e44835905f4d6e772735f3
BLAKE2b-256 e17fb3081288422ff46795f901ac97394b58e69957779d1d75c95c54082c89e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e1433888a177fc4e99c487c93e0ed0d41ac7ab9534ad3a91ad65473f40ea32d9
MD5 9698c6c0782e86a31565fa122b78de46
BLAKE2b-256 7192d2e05a11ec6f3e556d94f1d80669bc3847644494bc761f65d57823374954

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54a99e894bc9021bf38d263b95c69a18fbde7176134643971e3edc68c5bb4373
MD5 8a0cc44123b719d508ddde15c2c5b0fb
BLAKE2b-256 1475227ea649aef79ddd0cf669dd54df29967332a0c53f30d41c0341f0a9dd2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 01e9c1aa57d914b4930450b5904ae5424da90a0884a1db9c9c42a97953c35ea3
MD5 f8f0e53a11514b0e5b072344bfc6a308
BLAKE2b-256 e49fa8d4b36226e22e872c268ee4160d7535710da444bb4dac069d28eb6eff1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fb46c734d6884b0f11096d8e06dad88cceccb3214a33418a1dbf41767d3801b7
MD5 9ab00d31b2fccad50df5244b6e27e220
BLAKE2b-256 1d62bb50c29b47a4d430329553e11b56c0943d73962ba90e7fce3ccd4018ce7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 86516f422b7663820278cc21e5dadf7675b038b71bfa7a0f089fa3f846601104
MD5 4408ba91dcc15d6ab4f011e3ee67bc3e
BLAKE2b-256 39fd0c35ae0a7847bd5e0a243caa062b81b5569424e7666270e9035f5488588a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf9a43cf7546b23063ab2807683e77947451b28329e3a5aa333d75314e9716fb
MD5 064c73733c9f46f72d9e030f2a93f2ba
BLAKE2b-256 c86da1e7136cf09e8321cf697f9d81c05a3275d2b5c60359c5b5f45656bbd4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ae464b447168d5ec1e8002081626c3779429c3801bfb31bb9202b670fd958be7
MD5 34bf3db4246397d4bf551a0562dd916c
BLAKE2b-256 1991dc13c1f4018d6cef3f743f57dd7bcdbe6f0b0280f63daf7cbca4aefb4c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a43704057dffd0286e883bfe37eecc7af24ffcfe661ae251ddc98df0cca1042d
MD5 0a082b0ca3bf65fda0563ef4de0d35b1
BLAKE2b-256 7e467fa4729c4f3f1953351b552ca335ef7c50de27c7e5ef98d7872d1d65dab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 17069452cb69c68e9e8b508c2e9174159d99cd1bbe610d0ad59794c6dfc10800
MD5 22453d1d05eb0073e95890f71c73adc1
BLAKE2b-256 96bb211c8c369a7af11a05d0ab1ef00043b197e3d19853e21eaa43214dec7c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 14.2 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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c686ac17522a592cb6fad6b655bd588016d59e30dcfc6367aa24ccc22f2eec14
MD5 2892d28f3b02b7b404a347e77c3506da
BLAKE2b-256 06563e73ce6e20a4acef33777d14d8f9393d9dc3ca0b83bff00ffdf8e3dd727b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e2f78c853e20d4fdb27d4a6730f7cf01766c597951333212d186dbfe5c7d8f24
MD5 ee0a83f84892cab206f5b52f1ace67a0
BLAKE2b-256 bec6c301d043d59edc904e90730f7bb6afeaf536c1b729122762d3b942dc0e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e0a28c2cf32464e02e4500d93f9f8a886a159fbb48d50250f6cf0679c8ca4bf7
MD5 7678ef1a6f8f9cea40a0dfa88e9a652f
BLAKE2b-256 634af814e88740256ecb48ca29891b6399bdb9c82fb10e09a3e2595fb704a3e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcd888d0b605b41a3d3ef1d90ff3bc11a8ad987af21cf4410469cbeb247daaf3
MD5 e61d491a95eee442825196d92e76b6bc
BLAKE2b-256 b03ddfc2e1e7463ea9ce03457db85c945ea0937ec38dcae1a35e2fcd621c8939

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0a9038d96f742c1c4e54ddb74acc7ace391b0c3b7dbaf3fff418d5491ac96eae
MD5 13fedef4f56d48b505d2b4d4e4319b38
BLAKE2b-256 813a96057b6b5206cbda24a06b139e7c52249f90f55744b9ff719430213fcdba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f9fea22f92eac59624a488449f1e424a1e23209ef966f20408973391c4295ed2
MD5 011a2d08550e685186622827656c90b2
BLAKE2b-256 6eeef63e3d37fe1d47d6e9fabf4179930936e5fa5d93d03d9971130e99617234

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9186a8ead51b6eb66add648056a8ec53d4d2b1bda1ddbfcf4812dc4f835e57f4
MD5 477df36b146d4ecfd6d455250434a8f6
BLAKE2b-256 f7dc398d7336ace69c71369efc0fd9386ab0d64e07e0e7bd65b84cde7c177704

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0584cecce6bdc1ee723a20d2569ac1529b5b6e77dd954c258dd912d75f95092
MD5 23285cb781e2f1a098410565e59542aa
BLAKE2b-256 dd2be3bf5302fdc4b6dc16a317e28fd41119d49313752dd41e53018835d25dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea7ef1fd29b63d03073ed1c71f9b3b27eb7f5b63777a6be4618880763c5cafda
MD5 2d8f450e9fa17331407294b55691b97f
BLAKE2b-256 a4d49aed9256a91bb83820e9cf2c9f23d28fba3ea85d2b39103ed70a5d7a19be

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b5fae68c39d0966d8906b82980b1bebb8a87633dfa0a412e908ac72505e547c
MD5 5f3e984b0788d36833f5aca114369691
BLAKE2b-256 69dc5a38643f49f4abdb45339a60f1f39a69df3c3bb80c2e856e1ed6b011ed90

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 94486b71c011259156f4a816f6ad9ecac943b5de6e8126bdeae9c43e0b25a52f
MD5 f588dabb4da07ade705a329f2b131b01
BLAKE2b-256 f8b2c98bb5130dfa328d4e89c32e8754c43a0c6a2f1d34ea6530e327f26eafbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98606dc45ead2ed030f916f40cc54cb591dff7a394990b15bd238d51d8772c20
MD5 d28716915324a77a8c53243f0c68d49c
BLAKE2b-256 4c9b1413e6351042f62eea67b487889e69098631b0abb82fbae1c0d86cd4eb52

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 15f49289ac38b01b23cd5b86e1e221b3749a9f40af0b518d6b0f2eaa4e30b7ee
MD5 6fde3eaf153f637e9ae3b5484feff355
BLAKE2b-256 ab987c02849fef1b5c63102c9224d1238c24ac3ca095ed8408f7de62646b3170

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c576e7bd05a598f7154804958173765a466255725f8ff36722ec62db580ae11c
MD5 2a0789889fd96ce046d5a9c56cb49804
BLAKE2b-256 37de4e8e4fb9b3edea2c65c5138905563a71d12a212aa17748ab9c6e9190fc54

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3d04d1061514cd4c1e245011e801fdb6e440444ef807fc463027180cc1cf4235
MD5 1cc4eb410f423e592fd44365cc396804
BLAKE2b-256 7c494df46142bb52a797036c0202308f61f4de8c60ca48438da5e44313d81708

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c100bc65fe0293993987f6f3481768d75d3a5a4cf68a7cf2bc8fdb22c5387f7d
MD5 e5c11d36331655bc7ffd015a3e9dc07f
BLAKE2b-256 35a65a664661f2470851bfb742b4a77ff05067f6d12e32f0cbf2aa6e4cf14066

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 68d92ed8b97a78f567829f04e28bee25a0fffde7076035d30a421e14587f2442
MD5 e56d375fad2adcd2814e9cea12a0ee58
BLAKE2b-256 af3feafc4ae8a0ea54e7943d20de5298b7dc8d857145fd77e3fc96bdf2432687

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b090227bb0865bef769ced58b5616cab51b51931abee550bee549f9dceaed4d3
MD5 ab3e79b148bab5778dc44fd1c13a9f58
BLAKE2b-256 dbd87e45cb6dd92e7df106fb4e6014ce4cd37411a0c7650d251c41db97972c85

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4d638fd83f384776c0ae58e6315d779c3a527163b9de61cfeb22568a4585fb9
MD5 fd8d8e38efa7d41caa4beb2b24754eae
BLAKE2b-256 0ca123a6ee5cc212621f316b49c49018bbed958afd8a071d5d0c3f1b16076eea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 15c0ddf4368a85927c161c55170d89096eb5e5fda241df50ea900e63ec8bca51
MD5 200d132ca7556e0fc49274afa8add6c6
BLAKE2b-256 a278202acdab858e3320b2fa67d6734f4108646880215b958aa3e9ba36c10b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.6 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0028b617881a78dbc52f4cb2cf3afa63dad381cebe3053466a23fcb54ed74af1
MD5 df5aa8ad178ae6e87f218606d7e8667a
BLAKE2b-256 913e0d99ac1cbadc9638eadade8255c406bb1c90d60e3c118aeccd299218fac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9fe198a9f5135358921ecbf8cf03030ff992bd6a54194bf83dfa9a0d87a1d0d6
MD5 fa036a93146cc31a663afb23e263df1e
BLAKE2b-256 1a3be5ba0997ec7b282cd080f006aa34501f5063b5b6d35452c384adcd9594ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d34fa3713cef327b608bb06f068ef6978b0430c18d3c05851cb7859c88aa592c
MD5 5c161e6660500e9348fdee435b29908c
BLAKE2b-256 4931ae97c42ad7921d58587bef959a87c296db59449087958d8fdd3c8dc52d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 036cabe7d84d78e7b19613eb9eaaa59d57d68abebe4658e85c14bfc79cf76bc9
MD5 23bc9852ca087ab502929dd463b5f2d0
BLAKE2b-256 8879da2b7c71c7fc8a79595c8c41a06ee355ed9815c3cba7b69265545f974f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a2e89e601478bdff763acc15f5492e0382fc58dd640697880c351096a70abc85
MD5 1a21b2169e35537ccb02438cbb022f58
BLAKE2b-256 a5ff162e4516a3df95b4bdc40f96b81eee33608529e4c3268feac1203bf24f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9811c8f4f05435388b005500188cf262ab350a15d9ffd3809042be8ddd0774c4
MD5 7db379edb94afb8f3ab7eec9a9a4b0fc
BLAKE2b-256 7453645427b4355a7cc5c8c27994286ceb57d5fdbf0ceb02dba3f54d5e5756b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d80b3e7e8840bcdae771bd6aee83e381d79a7114351d5d192d501af087f3736
MD5 b2def3ffa9a4c8d8358d84824d329792
BLAKE2b-256 a21eeff42f88de3471252364836a2073025313a5c10836f79afc5fbce239143d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 475bb0836a797fab905f1e0883d56e0af921de3ec73ff30ea73238aec55a68ea
MD5 84cced6986da2de4dfaaf2317e145bcd
BLAKE2b-256 6bb8c9ce5fb99f6d479dc603bf8fff0a6c21201ab37f02573e39d16e4513e569

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdabe96cdbc96a2370306bfdcc4a17a365f748e06011855032d4d9cd66497423
MD5 8c34c218d9f10e1e932faba6332edf75
BLAKE2b-256 fd13ec67085c647e2097f2954eae2f2bcfc883a099caa598d1dde93335abf21e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5a368c1d2f16ddc7e44300cc6581f4a8b9bfdfb094343c0344a9331029c8ba06
MD5 b8130d367d4b92cd340cca43f0c567da
BLAKE2b-256 b6f25757148a11e9873c20e43c49599fcded29d6b5cfc3980056bdbe50ec5830

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f5bc62ab4b9724309d811636c184bb7fc1cc313ce450fff16b4fe99d1330891
MD5 7f1bbe1550b7a43679e7d46d4fb7209e
BLAKE2b-256 e1c098d051db4f1859baf5dd9ba6b23099468ea044943ede7d62492848973355

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 250a7c52ea704422a9e45b98fa23cde6f788cede402f6701b4a2f62a6960f443
MD5 6b1c569c5e0ee5d2e49ca8f7fae45423
BLAKE2b-256 925bce59ca8712c93d0ea8899a1ac16614f5fc8c1c25eaccd494c1f42c59b786

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 54f1b62129db2c3f7fd68f3a9a4de2dba0b1d9a1fc3ad7ba97add917174c175b
MD5 adc31f8a9cf58071c36ddb21dbe3bd8f
BLAKE2b-256 9e6affe369a43f349a57b5b6b44966566e2914e1ce61d17571b165dfbf0346d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 80ac4059222fb6e16fc706a22aa53c045d56da7ffe6560fe6c5dad216c330bcf
MD5 acd988d3c496ace936ac40b133141af7
BLAKE2b-256 4484407db2bcb8bbd56261f839c5e2bc04520d14736993145ba599afda5b4444

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e2c2fae7b07ee1785132a9dc5e14d12a993640f9b13d5efb9a8d9a1d72caf97
MD5 25b5c396ed92f21ab73834197f7d2546
BLAKE2b-256 ba8ec76e81b2404ed94094db21f66b9bd8d6bd2e97a13cc04970824262d20d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 deaccf45c9fcc7cfb5a6d89c9fb34edd847a1c5acc042c4717aff58dd1878818
MD5 36b426bc4653fb8a92eeece4c6c1aab9
BLAKE2b-256 3031ed28a518c31c4fdd15b80a0a3df1096e2a75b1e49ea23f7b445722b50d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6af8da125d2f5d5a68715645b3e0373a3c2d60db2df59b3016402c2240ae3cc4
MD5 273ab86fe21b308e1ada59c0cae3d43b
BLAKE2b-256 0e5cf1bd25e1f2cf17c718809c9c8d4b89bf601b1f55f2e0692359834b8b4b35

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e2e4fe56e0fd311d77e97cb9906ce9772b063e1a0861d4d5c2cf882eb363d8e
MD5 acade88e37f4d84aeade0a25f14120f9
BLAKE2b-256 9dd8f14617f1e2d2e18637c0e7f6c85836c25b4f1abbd5e7906de02ee3c487a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4f437dccb7964cbd985572dca273227e1413c47d2c7835c288bfb55052085516
MD5 f7126adf2a9615e8188511af1d8c52f6
BLAKE2b-256 11440f28990c009a4dab2594bc9667476570dbc308d13a6ac60c92f74fcf3e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxteang-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.6 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 92d271d12879cfcaa904ed1c6cf537540b9fb5f132cdb43f20f56bc14c165b70
MD5 0a5c08af0bea25950fdc1acd96fae961
BLAKE2b-256 962f30bd8491c6902a3b97193f58feccd98db30d6d7ce5091c909e62310f5a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxteang-1.0.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f9902e7af3a807c2d3a24acccc825a73c953141dc0cb186854a07555414d76f6
MD5 89fcd5b444868898d6c2dd98e1c693ca
BLAKE2b-256 b30821ff38f0adff0115984d1253a7fa69b282bccd2d0cc66e77c82ac5b053e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a698067252c3f7e2bbd9c939f0a8104595e6c252ff64e0e42b2120edb41067a4
MD5 ee9c12804b1366a02f0fe88dfd6e4225
BLAKE2b-256 0575a8c8dda8769a7d05c3ea9909fb22ace9b9add7ed0c53769c21d8bc7eb834

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6ac25523633e1c3e8acc9668a71826f5d7b4dda2e2c783306d6b7d0312cec11f
MD5 b7555e61230a5f98cdecf9788914f5a7
BLAKE2b-256 cfcce5c9299266b794e46d2f5bf3a8cb4616d7e13e7ec23fea6eeb6afba05a87

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c16d6f0505ee41fe8e5a2963ff40ef50d536839e34591ff5bdd99269fb7d3caf
MD5 118d5324543024f5a82fec3d27a7a7cb
BLAKE2b-256 e2d888cc7d033bc44be3b96bfd9aae380574591a51d57bed945debde78f593c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 172a6a1c48ca47da79f7ce55239ba2d2c9b101861bc01bed1f62979cce0cb7b8
MD5 1d00e8cefe8641968d1763b35632f953
BLAKE2b-256 8d2ffa1c1a6cc06386bd2145e570ccf6bc968e3dd6965a9a90d7f87353f151a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b5e473f7030d40d28be6e5b90ad0d5d09b7ff923426efffbb5788fee4b46fb2
MD5 5e0d8c8b254d8b326165e17dd62d0a90
BLAKE2b-256 66d49f916a2d32fdd7e43232a77b90f7ae4956d5762eda71d33d72d58394637c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4ea4b2f0d986ce0f9f22554bbd24d381a4f0190a43afd6223dc6f04d188ee4b
MD5 6aa049837a5280231a3e584d1e124f2a
BLAKE2b-256 668f5bc4e3cb07649f8be8a95f4ba6d316e83a0f775d159de5b88b233c6e3006

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0aa3e3144551a528eebbf62090850f5c6867dc310017f5b2d51621a835b2fb1
MD5 976b77e48b3deb9d43642970191642ee
BLAKE2b-256 66f9a589c1cbace12149fcfdef7d1229c563c060bd4bfde6026ab88945e3d18c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8da3ea269bfb9fff11c1635c4293d3689fbc7d7043cf665b7045c5bbb5676689
MD5 70b3e81e56600dd97696d8c0e279902f
BLAKE2b-256 a26692fe925ee6e4398e78334313ab5420d9cf9e7ef0e4c8e588a9c9f0152a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d58b52d85572402aebdddf3850de18d990911ee0b43a5f8a21f3a00143e33e1
MD5 7b318b817fb54ed745772a29a7029614
BLAKE2b-256 a3159f249c9ab1c8b9d66eac2a58183e673bae9de1b4a6f7b1d22f8c3828f651

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f690e858ea8ade206b565cd80b8816ef7b598c981e63ae1afd891b152a05af21
MD5 448f9cf559cf8c1213204e3ecb53c605
BLAKE2b-256 f789b49b943e7c1c7148f82e4fcefd8bce60386b68ec471a1ca4bed1cb1e3806

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ab3db3f4bb0c88bcd2599db6858a34556c94ec5980fb02da73744e698d4fe722
MD5 ab4b8abe56c4d86fa6c923bae7ebdb4a
BLAKE2b-256 0089c741a254f73f7df22da49b3c3038cbc029f82228f03d1d7285a77da96028

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b4adef3118ab752027f66546fdc37eacc517c04003605d0a4578daa9983dbcf6
MD5 2af17b2c52401b7c5f9e3cd388df9388
BLAKE2b-256 1381690eecd1502814623ac1c5bc2fc9c16af530d7a31fec997ae65bdf9d0f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7ce4b4551cf783647b0b64eeff05ed7d955f38fad519ae3263f19fd3dd65974
MD5 69d7dfc6a3063c29e44c09bfea17c805
BLAKE2b-256 47540216e9dd39e9dd75103ea49f34168a9beb79418e8782b0a0797523152f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d4f4ab4d18e917d6c5e324de9654a9cb6a637b6a757943af8811bf9124faf173
MD5 d4c2087203254d7134a54f2e95c3179a
BLAKE2b-256 ba29837a900b6e7a9b6fc2159ac13a2ad7121d825ce83d0589cd9f5f121c0bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b648a871508df69679e7d05006fb468eda8963775a2b9944ded1b4708a0718a3
MD5 ecfce8f1a7ec7cf3e1f8de516653d18a
BLAKE2b-256 631c8982e0def923c864f8406b5539105054b00dcf4365992604f687787d7d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxteang-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00480a70effb41bb6257a24d14ad0ec62b0455035777a2b8fef90bb6f3837f11
MD5 ff4ce4c9176af8dbe7eb2ffaee607086
BLAKE2b-256 94970f02360afae8a3873723b158eef903013daea87b420b05214831a2ac099b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxteang-1.0.1-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

This release

1.0.1 This release

214 files

1.0.0

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