Skip to main content

Fast Tars/JCE protocol implementation for Python, powered by Rust

Project description

Tarsio

Python License Ruff Documentation

Tarsio 是一个高性能的 Python Tars (JCE) 协议库,由 Rust 核心驱动。

核心特性

  • 🚀 高性能: 核心编解码由 Rust 实现,比纯 Python 实现快 10-50 倍。
  • 🛡️ 类型安全: 使用标准 Python 类型注解定义 Schema,支持显式/隐式 Tag。
  • 声明式校验: 支持 Meta 元数据约束,在反序列化时自动校验。
  • 🧩 灵活模式: 支持强类型 Struct 与无 Schema 的 dict (Raw) 模式。

快速上手

from typing import Annotated
from tarsio import Struct, field, Meta, encode, decode

# 1. 定义 Schema
class User(Struct):
    # 显式 tag
    id: int = field(tag=0)
    # 未显式 tag, 按顺序自动分配
    name: str
    # Annotated 用于约束, tag 仍由 field 指定
    groups: Annotated[list[str], Meta(min_len=1)] = field(tag=2, default_factory=list)

# 2. 创建对象
alice = User(id=1001, name="Alice", groups=["admin", "dev"])
print(alice)
# > User(id=1001, name='Alice', groups=['admin', 'dev'])

# 3. 编码 (Encode)
data = encode(alice)
print(data.hex())

# 4. 解码 (Decode)
user = decode(data, User)
assert user == alice

文档

完整文档请访问 https://L-1124.github.io/Tarsio/

License

MIT

Project details


Download files

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

Source Distribution

tarsio-0.5.3.tar.gz (174.1 kB view details)

Uploaded Source

Built Distributions

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

tarsio-0.5.3-cp314-cp314-win_amd64.whl (393.8 kB view details)

Uploaded CPython 3.14Windows x86-64

tarsio-0.5.3-cp314-cp314-win32.whl (386.7 kB view details)

Uploaded CPython 3.14Windows x86

tarsio-0.5.3-cp314-cp314-musllinux_1_1_x86_64.whl (711.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tarsio-0.5.3-cp314-cp314-musllinux_1_1_aarch64.whl (655.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tarsio-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (498.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tarsio-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (478.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tarsio-0.5.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (523.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tarsio-0.5.3-cp314-cp314-macosx_11_0_arm64.whl (452.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tarsio-0.5.3-cp314-cp314-macosx_10_12_x86_64.whl (486.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tarsio-0.5.3-cp313-cp313-win_amd64.whl (395.6 kB view details)

Uploaded CPython 3.13Windows x86-64

tarsio-0.5.3-cp313-cp313-win32.whl (387.1 kB view details)

Uploaded CPython 3.13Windows x86

tarsio-0.5.3-cp313-cp313-musllinux_1_1_x86_64.whl (712.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tarsio-0.5.3-cp313-cp313-musllinux_1_1_aarch64.whl (654.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tarsio-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (499.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tarsio-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (477.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tarsio-0.5.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (524.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tarsio-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (452.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tarsio-0.5.3-cp313-cp313-macosx_10_12_x86_64.whl (486.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tarsio-0.5.3-cp312-cp312-win_amd64.whl (395.8 kB view details)

Uploaded CPython 3.12Windows x86-64

tarsio-0.5.3-cp312-cp312-win32.whl (387.7 kB view details)

Uploaded CPython 3.12Windows x86

tarsio-0.5.3-cp312-cp312-musllinux_1_1_x86_64.whl (713.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tarsio-0.5.3-cp312-cp312-musllinux_1_1_aarch64.whl (654.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tarsio-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (499.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tarsio-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (477.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tarsio-0.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (525.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tarsio-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (453.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tarsio-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl (487.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tarsio-0.5.3-cp311-cp311-win_amd64.whl (393.2 kB view details)

Uploaded CPython 3.11Windows x86-64

tarsio-0.5.3-cp311-cp311-win32.whl (386.1 kB view details)

Uploaded CPython 3.11Windows x86

tarsio-0.5.3-cp311-cp311-musllinux_1_1_x86_64.whl (709.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tarsio-0.5.3-cp311-cp311-musllinux_1_1_aarch64.whl (656.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tarsio-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tarsio-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (479.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tarsio-0.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (520.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tarsio-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (454.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tarsio-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl (489.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tarsio-0.5.3-cp310-cp310-win_amd64.whl (393.5 kB view details)

Uploaded CPython 3.10Windows x86-64

tarsio-0.5.3-cp310-cp310-win32.whl (386.3 kB view details)

Uploaded CPython 3.10Windows x86

tarsio-0.5.3-cp310-cp310-musllinux_1_1_x86_64.whl (710.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tarsio-0.5.3-cp310-cp310-musllinux_1_1_aarch64.whl (656.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tarsio-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tarsio-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (479.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tarsio-0.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (520.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tarsio-0.5.3-cp310-cp310-macosx_11_0_arm64.whl (455.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tarsio-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl (489.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file tarsio-0.5.3.tar.gz.

File metadata

  • Download URL: tarsio-0.5.3.tar.gz
  • Upload date:
  • Size: 174.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3.tar.gz
Algorithm Hash digest
SHA256 b7b0cff6ebc031e4ef5795c8e8dfe7752b53e091eb9563c6cf47df15ab7e4a36
MD5 7954c73757fce7cc145883dc18acc862
BLAKE2b-256 0f034fc32abae993c3a1026df174d33cb0114538f08f10b4a4ac88f8de214e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3.tar.gz:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 393.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ce513d6e6f4140e7706ac398b86e797927a54775b7f70cdd205bd9733f11214c
MD5 ca2bc33718550fa0cb77d1fbf4537ad8
BLAKE2b-256 061032a87fc3fb6f94bd890ea10b48f1eab9a01a45a5c734feb65268b904dddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-win_amd64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 386.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fa6390e4cb37da4d5ad72a5c77c56a681d6e278919a3f2a3be1305414726f6ba
MD5 f8f5463bbd9f3668cba18fbfd5608e26
BLAKE2b-256 6c0fa5781f7183479f61ef2adc92a0dfcd2efa7ba1e601d223e00bc775fbcf04

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-win32.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f55253d8b5a3ce61c2f46d84536b396e0b5f426ac4097893631134229b156816
MD5 df396095acb22ea104aae25f4ae61ec9
BLAKE2b-256 81c651b033294f9c8489d6ef454799fabf13217fe9cd51b296fdcb82a5ab4fe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4eb4edc535403f705e4b8267889a38888111f2d99eaaa690a7907848434b9a8a
MD5 a923c9938a7a9bda5b15d00997a1a1d6
BLAKE2b-256 3039c00bdc95702b2ba58c7796c473909320ce43de7166ec030fa39a93ccf4f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d93f6a4ca4c0fc57fef946d8e94fbe3cfcdbd6841e4be0536e5d5fb3e7433e7
MD5 6a89ba6b8146db5a5c79d19fc67ef54e
BLAKE2b-256 4d40a4429bb088db6c027b23a269e029225c3c2e403ff75cdbecae5d222a81c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46d01f91f6d6163e924d5f57cdec62833eb33b6b665bf5be16932ca23611614d
MD5 c2975411e1ef255d577b6999f7fe995e
BLAKE2b-256 baa9e15f97459b25bcd01d1b781bb8e363bb56348b137fab714e64fb4fb00a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 645b882f0f947aecc39f4178455759e2d0ad57e469c979aa1524d1d2d3341225
MD5 2fa9ef74001339c4f4f3ea465f8056b1
BLAKE2b-256 108953c7808f851e9d63fbd431037a35fc73def758fd8437f6694e9c015de616

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57f6b6d40de022f39b6aaa2e4637383c494f5c97a2fabad47709851a07a3c135
MD5 2881af5ff384a64c807e8f4b107fb28d
BLAKE2b-256 8199807bbc33049e3e0ad76d888098e47e73b276c2d6295e73de83f899fbaa99

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b18a54dea25449e414393ed16ae94fd9aee852617afd91bacb9dda6a40c14a84
MD5 e79c1656782b72d8b517381f1dd363fd
BLAKE2b-256 ee4dd60b04a697474628f4c6b64cd4b93bfabbbd4f54fb840edaf6896d823444

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 395.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8956360b23827e4fe78258ae0b062124466a38951e3d99c6da86bd2da9d80a29
MD5 8865488cb7d410a754793f182fd005c6
BLAKE2b-256 0bc6fcd3255e559d3dc6ff9e347d2fc1c02ff5de56e30a00bf8050f56bb1acd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-win_amd64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 387.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 db7e62f9eddb2c208889cc9086e826abf034aa6eb160161462450b8781e7c541
MD5 549906ec16a818e04bcb2f673d229051
BLAKE2b-256 eee72f0e900db314d42f5f6036437fb35075b55c8a07b5df593d3633b0d2e14f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-win32.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e5c6d5080bc2726e1f1c9a337e50cefd58015512b97d51f26ef7eacf69b002b1
MD5 0669642ea259f53397e77f23e7134be3
BLAKE2b-256 8a39ec91c8803f48ee684bd5227878d2061075f629e3234dcbb3d25c3349655c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b99eb7768a3a648d447c2f48b8b3ed2a38341064c63c97f80d20fc66502e3779
MD5 28741773c200dc5b89d190d8646d5e85
BLAKE2b-256 153049bdd719a9e4924928bdaa8dbac6b5fce7395cf1f3dd293c74aa81d0602e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcc5d751e81225247972fbf7fc6fd9f1c513113c89c466598bcc0f969a66a13e
MD5 757e66c36aff58d552d8b8e0b423db38
BLAKE2b-256 dc4d9f6dbd1df570a3cb8c7a018eb632e4760f63191be83cbe98f0932fecede2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 090e97d007b6d93e71d516e7dd42923ee1e0d883b202670dc266c7ff1343e06a
MD5 bcc0bd406340a84a6d8f954ae6c387ba
BLAKE2b-256 9a3b95353759ebc9dddfee9d2f5e7c653cec65a139e80e9c4b0d853e7131439f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fcecf5dd75f528eb6e8f4f049ba393e4a71275e1d11ecfb2017e9eb02a72343
MD5 1c632328c8bbc9929bc3af237202be6d
BLAKE2b-256 c0b8a2c818d0570dcbf055f8e1696810b4479a76600aaef91b4306d3ec3050e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc397b21fe63a5b0050355f78bf6e2f8759ae278a65ac336fe6be9d20be038a3
MD5 6a4803fffb9d89c4250132dd4ecbb526
BLAKE2b-256 a559d159c1645e3d90dc2a418de6c1a9e3b5bc6a8e2bf803e1603b6a35172b09

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1fcd769a945076b7fac0eaaaefe075b41896649ebdb2509fdc7c0d84d6893b5
MD5 b23107b11420916bfee463c358d1a37c
BLAKE2b-256 99dbc9c18bfdac4d87b61db0a65572110ae7c5d069cda9bf62293f10380e1fa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 395.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a825b8691e42b4f71a3002c36c362ad379e4bf0b267d33ba9e964242a8f88ce7
MD5 685bd6c40c8fba5d64bf1638c1aac8f6
BLAKE2b-256 d377985c1b4be1dda867b2f125861cdb028902cb20b648e07b5cee84d61746ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-win_amd64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 387.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b7c92d86592dd7a394afff848fa5c65ddd1ae897637be7f7842537b0e6a800a7
MD5 6609894bf9b9951d5a48d1aa98cab911
BLAKE2b-256 6a239a715e423dfcd5d8d3c23bce4f3abd7f4d8287ebbd1743682cc5ce1dcd4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-win32.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 35aa90f65fe5f788f55c0e66c2d85329f11579f87e2faa639afe6c11f8fa05d8
MD5 48418b3822187da2474d13330f662158
BLAKE2b-256 ca14183a17a7a2712674e0bedfb9473d4eaff4d720f7fabf2d843f3b2ae0d18a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 69c5ed3f41a2c71e544e6fe27a8fa715a87ce91fdd655806300a7253cedd590e
MD5 8e5c522ae57e80dcecc3fb2c244ec950
BLAKE2b-256 728987cefba1f5fa46f86738980d98f9b397acc029ad51f1241874646da02ab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b786592fa6ffa6fb1daa70658abe6c0072e4c87f0a9cd6e0fdc44c6510340749
MD5 4404ed70131ef94b4b918e46752797c5
BLAKE2b-256 22578aece9ff75c250d4f37a621862aaf94a9f6c26df6c6ea9cbf6ec903b5a9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fa8e678978bb143406ca321249a8490e2a1c85de57d196e81062a343e27bfb0
MD5 c646de686c00a72d50b541112acba182
BLAKE2b-256 8565788e3214b8db912ce0619f60441f3c17ceccef432a15ac8247f07777cf58

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 41f3495fdb4de805dd5a398a1a8c05437d0c8b33084cbb3d80af9a71b3a7a593
MD5 2ce6f74346c7298cb7767bbdb5d537af
BLAKE2b-256 e071b8447f99c3666e843d314fd7ca86c42c9cdb78145d4d6aab8683e3ca48b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19b67bc13d75f6da532f68b92ca9cb0f8021f64880c25f35e8c224d226d29afd
MD5 d4ac6b4e73f330e34856d13b1f3bc8b1
BLAKE2b-256 17458a9591000d141eef303fbdb998cc22a0d4a71fc4aa450879a7eb5cd4dd5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33f351f1c73bcbe8cb40f45c25026e82ab1d6df4734091200320fee78f4b6cdd
MD5 d99dd59eef13fe5f87563a55f93068dc
BLAKE2b-256 a21887adf3937f17b124c5c2585e2dea7a466224820fe4aa393bcc33d91d2105

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 393.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 52677bf879ccacf50c163b9f677d75c14ba152bc868ae54b6dd788ffa06116da
MD5 451cad68b1b3684aca1c6dc95c3bb292
BLAKE2b-256 6039316a461e133d16e30d01659571d5b74bb44bfc5b27ffdce2a9d5c1b0fb54

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-win_amd64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 386.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e01269af78aac92b700bde5d5ee29bd6e090e10ae27c53bd89926822e422a69
MD5 d1ea50d7eb4ade2d2da518f334f19b45
BLAKE2b-256 17345a063eb9111d6114f347d9aa6ebe879a0c7fe59a7289f473d786e1f306c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-win32.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6372b6d410a28ecac83c8d71be863c5a4aff0c5f9eb8da044ca5f7158176efa3
MD5 e5384485ec97452d1dfd556efe724a30
BLAKE2b-256 2be540a0d3ed0ba462090df10340f7aba17a2e1591900f98647e39886c7e7956

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8dd3f2adb7901395b6f1451c3c9ef954ff811560e2cc00b2c610ac484814a37a
MD5 bdfda3b53eccb42cff04e48d63c5af43
BLAKE2b-256 c9d79c344efe3adcb53ac9df9dfca1d06f84ce123c7b342a0a2ffef15074513a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 896daf5bce983fe8ae815a96a1dda5c31408ac1b7755a4d3949b5f9c48d08662
MD5 b0d80df0db67f449f087cdcc8db88ed4
BLAKE2b-256 a2673e81405ad6dd4d3501216be8df5ac240dc488a6728a55be66552398f1d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd7226dbedf5bee45a7d3ba212392fec979b0cbfa8c316b48373bbc1caa85a7c
MD5 ec64de23964ec2c01e4a020bfd923dbe
BLAKE2b-256 ee8f06dbe1e5352d09072044ce7e1cd749df650180fd5c11b826dbc99f0cba6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec66744b304f29630b2fb4c58ec8af4148720e90580e207e281fe4d125ef20ff
MD5 c6e628dffe494b5947986ecbdf3a4d6e
BLAKE2b-256 07949bf15b753531d2414fedee7f3d27d9b7bc55c40e3d30c16b7843680fb6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46a36453f0352c5e6e82031a103a451da456514ecdabea87414ebcde9d2c9c26
MD5 8e4c01ca3377165feff7f317a7c556ec
BLAKE2b-256 4a7d7d94c439a6edced3c256d6b4c1be74de5e1774afa28648640043905e1969

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5723c2d0f6138b774436a94df307f21edeb8ed4a05bc3d56903154e881380bef
MD5 3cab255674a41dd1d06a88587a1e6950
BLAKE2b-256 bfbc9d0dcbcbe94afdb30fa7f401468e5bc209410a3b0bdcfea234666dec7cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 393.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2e697fd8f15d6cb993fac5785bb7db532c09b6be088500ee141a47bac2c74045
MD5 a906c85689c8a414c58c3cc7d993cc50
BLAKE2b-256 2782d5446e3c966477eca1303ed5781926ba48cccbc7b55dad7f2229f7afb310

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-win_amd64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: tarsio-0.5.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 386.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 40aa88be2c96c5cb47b7653e11f22aee5ea9946ea8f48cdd77a9ff0db3ad45fd
MD5 7500e9a19dd656cddef48ce11cbe506e
BLAKE2b-256 0424e594993596ddcf20bc0bd715f9326383868330e8702796c48daf174788b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-win32.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 40fad8ea73d1e59bb80076e693adc47c77b33fc4260f51f3c6be8f1f03aeeaa7
MD5 f8c7186c5988e6a9111d8b69125a3c5b
BLAKE2b-256 7e89c412509bc17ce40db18d495e42ee28bdb5255e0794aafd8cb9c1c2797112

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 032ac1400d1f54b9a576001b53d721fd9d8f9c11fe899982b84806247356abd1
MD5 398d12f856817418aaa53701ff89ee33
BLAKE2b-256 c7a7f0770d730713c1a6a24b92586235fb002195d7ff22adc286848aa28cc749

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d05be6cfaf03cd0194da38a10b1fd50f658f3401e50295e764b9603cbe14b15a
MD5 a859173c23551a0815a8603a3e2256f8
BLAKE2b-256 3277bf998d9a00a95357d3f90311c3ecc4d3148dcb67eee01667d063e63a8c78

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d638d13c989e1ceda0f3f87a13336895437410a968d16f79b5dc4eecf77311e
MD5 1e1ca3fed5ad60dbc85067bf0aa0c30e
BLAKE2b-256 f31fc44be3a76e8600b4e4b4f0db9f3a624254e4252195357cd28801e5f370ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8259b5bf4d93254d1d56781c28f4974f5eca4fcce36bd90a673189080b591006
MD5 bd9c3f5bafc26362eb8a5dd42621ed33
BLAKE2b-256 af4aa28aee23318d2e73d65a5e7cf22f4f9e3a000ebb849dc4dcdd7d2b772770

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca1c74c5cd2498b7700c08b7443cff7413a5878156d0344e8ed790264115b6e0
MD5 6ca2c1fbb3bcfc43af9be0e8287e37f5
BLAKE2b-256 be8eaec290e6a6faeada40294bd279d1c06f48f9cda39be7159e7cb5b756ec00

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on L-1124/Tarsio

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

File details

Details for the file tarsio-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 499aa3ffc469c615ecfed8fba551f72d791095dc6461bb6c87be8511444733d7
MD5 cb197e6276f80f74eccb9290fa47f50e
BLAKE2b-256 890288e6dd214018d2f02bc3b90534737232038b1aa2c9d1d6547150a9345215

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on L-1124/Tarsio

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page