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.2.tar.gz (174.0 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.2-cp314-cp314-win_amd64.whl (393.1 kB view details)

Uploaded CPython 3.14Windows x86-64

tarsio-0.5.2-cp314-cp314-win32.whl (385.9 kB view details)

Uploaded CPython 3.14Windows x86

tarsio-0.5.2-cp314-cp314-musllinux_1_1_x86_64.whl (711.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tarsio-0.5.2-cp314-cp314-musllinux_1_1_aarch64.whl (654.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tarsio-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tarsio-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (477.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tarsio-0.5.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (522.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tarsio-0.5.2-cp314-cp314-macosx_11_0_arm64.whl (451.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tarsio-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl (485.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tarsio-0.5.2-cp313-cp313-win_amd64.whl (394.7 kB view details)

Uploaded CPython 3.13Windows x86-64

tarsio-0.5.2-cp313-cp313-win32.whl (386.3 kB view details)

Uploaded CPython 3.13Windows x86

tarsio-0.5.2-cp313-cp313-musllinux_1_1_x86_64.whl (711.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tarsio-0.5.2-cp313-cp313-musllinux_1_1_aarch64.whl (654.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tarsio-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (498.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tarsio-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (476.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tarsio-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (524.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tarsio-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (452.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tarsio-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl (485.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tarsio-0.5.2-cp312-cp312-win_amd64.whl (395.0 kB view details)

Uploaded CPython 3.12Windows x86-64

tarsio-0.5.2-cp312-cp312-win32.whl (386.8 kB view details)

Uploaded CPython 3.12Windows x86

tarsio-0.5.2-cp312-cp312-musllinux_1_1_x86_64.whl (712.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tarsio-0.5.2-cp312-cp312-musllinux_1_1_aarch64.whl (654.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tarsio-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (498.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tarsio-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (477.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tarsio-0.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (524.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tarsio-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (452.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tarsio-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl (486.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tarsio-0.5.2-cp311-cp311-win_amd64.whl (392.7 kB view details)

Uploaded CPython 3.11Windows x86-64

tarsio-0.5.2-cp311-cp311-win32.whl (385.3 kB view details)

Uploaded CPython 3.11Windows x86

tarsio-0.5.2-cp311-cp311-musllinux_1_1_x86_64.whl (709.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tarsio-0.5.2-cp311-cp311-musllinux_1_1_aarch64.whl (655.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tarsio-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tarsio-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (478.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tarsio-0.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (519.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tarsio-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (454.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tarsio-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl (488.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tarsio-0.5.2-cp310-cp310-win_amd64.whl (392.9 kB view details)

Uploaded CPython 3.10Windows x86-64

tarsio-0.5.2-cp310-cp310-win32.whl (385.5 kB view details)

Uploaded CPython 3.10Windows x86

tarsio-0.5.2-cp310-cp310-musllinux_1_1_x86_64.whl (709.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tarsio-0.5.2-cp310-cp310-musllinux_1_1_aarch64.whl (656.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tarsio-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tarsio-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (479.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tarsio-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (519.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tarsio-0.5.2-cp310-cp310-macosx_11_0_arm64.whl (454.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tarsio-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl (488.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tarsio-0.5.2.tar.gz
  • Upload date:
  • Size: 174.0 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.2.tar.gz
Algorithm Hash digest
SHA256 3b4143799656b6b163c7b5392a2ed2ee874f746926536598119cd98124504000
MD5 d43d7940002df01d5e17eb4c1cc3cc34
BLAKE2b-256 c0d59a029344a51720cea88d4e4629227eb137b02a0cf47b105ca206e4ffb1fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 393.1 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 da9a09b8f8588a59da33b8bce7f1b00eb1650a6287caea393857fcf23bfbf076
MD5 f31f350a98587f9b35856aed36e7b6de
BLAKE2b-256 6ada0d7b01823e9ac2976df55e79f0e6a68d27e1873b4d89b73eb7ce6220c722

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 385.9 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e030f90336a815762df33d27b85061040af3bfce2b1a161115230d933b8413d5
MD5 255bdee7d46b5d5a829d3f3ae0bb66ad
BLAKE2b-256 abf1f573adb7e84ca2099f623bbdc4aa281f07386932853df2362a0925fecc9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd620a426656b8ac4356f37158a23b5bd5fef5ea9b51d6eebfca173d33fcfaac
MD5 2d51ff7dbbb2a0badb606a07a3f51a58
BLAKE2b-256 ca49bd236e953f257c658143017f8e127180c6766499069b8560926c67727624

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e79c5cbbf8aefcc8c559dc91402231c41d80d592a248fe1cd0231f8fa75b73c
MD5 4f23e1d271b8a40c677d16b03f30695f
BLAKE2b-256 8da3bea5603bf678f9a3585cb110ebd362f79f8eb4d10ceef6d4d3de7d377933

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6de76ae4d9545e2b669078d817a65b85122b4ecef6757c628e6dffcf5498ae1
MD5 472b294ff26fe926743f065e1c0b367e
BLAKE2b-256 ab7940b22b8b306a0cd5a0f49f0d928f360eb03562ed1c68fbb5a12540d23b71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a26ce7ec8ac2549f7a25870b93f63ccb755154ace463b9b3376deccb3eb03308
MD5 e8810387c8c250b431e85cb32f4b0c84
BLAKE2b-256 73dba8f8a01bd54b95e267189b0ee2f35c8fbf5c0802a78b559cff4002c691af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb89c3924d807c602bcb4df6f9c300a94eb6bbf09ea275ed97387593a9dd57e5
MD5 b28abcceeface6697d2ae9e7cdedcce9
BLAKE2b-256 f21cd1e29900101256e49d4946ae2c3b3e839cb447260a7bcebcb6589a240473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 852264ae261b3a782b357ace2efc8bf23fa4933e48da788c5d0d4bb44592b20a
MD5 dc3501f4d17cd5595415bf7bba9a4bfd
BLAKE2b-256 100258784c7ff878dbbafba813a45866552107cd115377a95c782809fbddc873

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fe8ad3cc42ff31029520a533e4a0b69343e8bb3226a57dad1ac2138b2ca0800
MD5 56ea0db571f7653ee37c14a80e20718c
BLAKE2b-256 fa024d7e961261edb718a2d46e2231cee5492332f1e87e8505a87275d210ec60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 394.7 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7d176f6406658d349acdaa0e5346293dd15f289a6a370927c2fb2d50777f0333
MD5 f8a93140eb7e23efd699c92af7c49050
BLAKE2b-256 b683a5e9a7f21242d56668041536398c7ffd0152dcb38a0296f91fd03a7fd0e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 386.3 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 07bca849ecc9af6024418ea394fc17a59b1743d308e6e47f36a198aa352b9982
MD5 12882c4833e98cb2ff2f4165deab5843
BLAKE2b-256 51e02f361cb53a62a8e049f8b91039599e3dbb04a5f2dda2670250f290c0cd19

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 748f14d7f9d647ebf5313c28d44c4e39214f0d4fc4f413917b954769ed992446
MD5 13b632d6010808ffa2c986d93cac843e
BLAKE2b-256 190cdf1153023a0a538b82611059d1f7de780f83dad49e8b530c499cb8c7e5b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f84786457c02e1902b3e9d520f20e7356d52d565eac8f12812a42784a5f94c2c
MD5 a2b00e37ffd0553db93c9ab548f4e54d
BLAKE2b-256 bc070b9275dd827331332a89dabae8270af16bbca1f52e9ebc03c9b5e28dfc4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b87928f1ea39081ac0d69476789f268492e64a4fd3e8fb9972e5dbf48f91d489
MD5 492f9a76113338ea4de021ac68eb84e1
BLAKE2b-256 4de1e41123ec328af3e0f64f0ed5dc522ac66d36cbc260eaef4a57318f4ea9ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ebd0152bd230d6de830ce8d26200a682b6759e1e4d752084af8c956d35ab624
MD5 5e5b0185150ccbb274deed47b4e5a21c
BLAKE2b-256 34ce660ca11a8f849397436a803cef3596e45b29addb56f87b6448e7f98586fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 558cb2bc7f8807253a952eec85f35ed88878bfa3abc5072a05d41eb74d21ec2d
MD5 9e46f28b90be36166d9d21b698b5e357
BLAKE2b-256 858fb99a32f5559ebb4e33a2c72525bd799d2ff24272d6eabe21f7dfac7a27f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcc8ab32b98a68d5b0f038c2752790f763edc9f8004fedf27fb18a7ba3954717
MD5 6c035b0a43d047bcfbd2c518be58c40d
BLAKE2b-256 72bd9a7c91ba691e02a3e6968904a3e59359f4fee11caa166e8035dd20db1e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb0c1d086fd7518d8898c29bc4095ec5f62ae3159c2abf5d69e175fa5e96a450
MD5 4523608e92ab82ef6288df9d287f0d30
BLAKE2b-256 53361569ffce23cc295fb38dccbb3cc19cce77e23206b7c76d022aaaba2f0f1d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 395.0 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca12d7980b69bf0113ee1deedd671c80a7922a2d45147e9fbb324e3fd175ef06
MD5 c09aee72e237a6d901c8f6ede838d919
BLAKE2b-256 faf2e2c14985f44c50cc89b820692d63eefa440da8f8e2a8e0a30900e644710f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 386.8 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ca6d7cf6041be02ab015d08cba5ab6bfe476346b9c394888c8a5ee758c138938
MD5 fd66f1585d89ca78a1f2d61a5faeaa7b
BLAKE2b-256 b51f84571cd1aae44f36f202a12b3208bea83c7758e983d7688774f211a2f8c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a03c6bbf5835e83807f65cf8de26d73d1343beb2550f4cedabc087ac7b49a430
MD5 c1040f9df57092a4c545be1989cff538
BLAKE2b-256 36b83be1e991dc6276b719e483ec8c5d2b7a478ed9aea6bfaf3cb4f21891113a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ea0785028f932e454b2d61319dae9140b10d1b7182050935d7e083881a33e20
MD5 da6a0939ab548f1f06ab8ed13fc3efc2
BLAKE2b-256 46d77c54ed12942d981a584cf188e98d95bcf9ccfb1e0279b192d9069c71bb35

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce9b59d16b865f1277ef969bdc0276688fb31ef4a28534bdd64fbfd62c232ba5
MD5 6eaea2783ff321473ed3bc347770dee5
BLAKE2b-256 3ab39baa99328b9b9413fccee85b4433a89abaa95b28db4ea0081e2603cf70c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe2be04ed637b9b2d6fc95103f22119e8de0eb9570455fef8753ae2b5212954f
MD5 88299a1517304a6bd6fbab804e2bf495
BLAKE2b-256 e1c447cb0ab3a23c3eda47dbf650c3865d7a3682dbab02e3748f4e252efc6728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 079457deae7a6bf7df0cb374d31ed6b0c697a9becc24bf6aca459b6dd9ef5bb0
MD5 f04ca41d20c3e39d97f6e0782d319cc0
BLAKE2b-256 5be963d13d2ad23b257db34b6613fb37da2e52076950415a24e68584eaec3034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f0849c97106b0da7dc96bb8414a84055ed60a05189c3ed6352076ae0770265a
MD5 27aa0225528d60e636a6484bc273063d
BLAKE2b-256 52d315a459e3e19eb6767183e2b0b7442e7aa4eca419d0c321c024e9d2d97266

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62ce62c8fc85d78286a655f38bf778b8ff04bf64788df620b0d34afd1fa806df
MD5 0feda1aa2e44bb42590039c30d21b4a2
BLAKE2b-256 98db38248cc6859f139d55fb1fba333d90aad5fdf2230426974e185b53720759

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 392.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 061be6ae89ec374aa4f23e9c6f4cbe148bca0534848920e4ea2eec2326c3fb0a
MD5 6b1d8cb56a9e99259b856db42b63d35a
BLAKE2b-256 e819d7cfaf2c723f80acd40ab638f21e0341feb28f2181c20f0677dd3e2c7c2d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 385.3 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a6810c03bef045202dacb1263776ca4433914da41169eb8524f6e2c4d72f7c5d
MD5 402ef387a4f19d21b80196a9a5f4f99a
BLAKE2b-256 18ade34d6b7762163176d96983640c1ac79163b5bb75fa56b9701f84a6d78df3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bbb91b5b641621a02414b27a390aef9f5b1644fa2ee4afea9576a50d81f05aaf
MD5 3cb952cbe33c320367279872658efce4
BLAKE2b-256 2f7d4ca75c4cf87bf38cdb0e3c2ace5d27be67d1b9d3877f55b18576c49d0247

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 afe413caf25c0097d7593725913812624da07a0501df48d616b8baae592addfe
MD5 84055b1d5f094af4efd4266862f18722
BLAKE2b-256 5d7710516969fc7c02234dbd64fb1df7e71455bc280a5eea8849cea060b596df

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f98985fe6b30f32655f953650becfd2324cc244c06b1b3a7636205e52fed5fde
MD5 26ea292660a71f3e5bcfcbc150f20eca
BLAKE2b-256 e8e4b5bd8443c0127e56938fc1bf7d9717d7efea7c820fd98597f8274f75c766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f883989cab959b6caea0941e1ca0486688bdefb007c1c53be251665bdbc1b7b
MD5 39718013388d0d81dc319aa1dabe7345
BLAKE2b-256 72abfbf92a40165d0a0376153ab7310fa7a6380262e1d7b2326a835a173cd336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5896b907e3af9617978ea4660ff48e7ecce22f3f8c7eb57f0df5fe68baa6634a
MD5 5ad68168609d7f821b43d381f425dc6b
BLAKE2b-256 141e5c0868108ba05e25b2f6053c6f396d98fc8befd4f14336ff91e0c8c552d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 010bbcd732b40b586642747f11fed8ce7572d3152b5be7e6a61bbacc94fa9e77
MD5 3b50633cb9955db12e7f874a9e0e188b
BLAKE2b-256 8291f92896e807e5e4b0860cfd1771692a3dac30d4493fa51e3e0e5f657f994a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4de08695694a926f6931a6b5470c671fd0193de8718c1df68d0353b77522f896
MD5 068716530253da45ed62de53047c3dea
BLAKE2b-256 92486262c5daf155e001418e41be3974e4b90d0c0d18bba087f75251977fd215

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 392.9 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2e7ad2bd536d2802223c21c920bf5392b33b2230117e17c8e7a446f8dd220275
MD5 3c6cf87a22bd9f129e650633b1e5d8a1
BLAKE2b-256 a328832cb5b66c4a4c154ebf1d3bae51dbe8cf02d67ec6c0c3fa0af3d2ea6c58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tarsio-0.5.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 385.5 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e216716509c624754eab6ad4ba754ce855739345fd29bb0b8441158f55ff6353
MD5 92b20033c536377da69f221304283cb9
BLAKE2b-256 623505253bcf5eb674d48fa0f94cbc529e7a2c422f5a2bc6e7d2dfb881307ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b79e7b65ac29df7bb2c8f48154de6b39773b65da34fbebbdc7fe612858eb3ec
MD5 cef850726681bd954529a06fc78f5a67
BLAKE2b-256 33cfe6d39cb3a905d275821c6a2171dd5a7db02d36b35110d1a8ac42e19c86bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 56c23c728a8ce289cc1ce10fd6eb639f7f82dc6fae07a3436a5b489094e9fe0d
MD5 2912d1b1c20d06af32ca19a8ca4b577b
BLAKE2b-256 e65dd0e34b2a68fc4db9724a4cf43296e6e864b036760bbbbd5cc3b5cfa6a414

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf3ccaabca4f7125e5d8f3ef243fd86297b15925043b306218436f344a3435fb
MD5 bb3e0874dfc36a0a6518e9c35c134dd7
BLAKE2b-256 bd1a44aa211920a388cd6d60f041ff995d3f39cc28ade5432c216d45b2e42372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31e392bda6c8fc9a817f8e519894359592d7bf3e7149f038b100a2e60b06ed26
MD5 0ca51c29572aa28d0d847ea1bbf70262
BLAKE2b-256 cb98b52716c778a96c647a342bcd05b8de6de8ff8f7b7d508c73e04c58d1a58a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ec4253e97906d58d00d0be934ddd5ab8620c4d13e4df4ce3f6be9f38feaad43
MD5 f9e945146c9a3105834899ff89983346
BLAKE2b-256 1289b135566c7ee44facb7c5ff81dd9ab64aa0fd5582a4f8a48f290e8c98a74f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tarsio-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 571bd59c157ab3dd541c4d99eba64821e2c538852bd6ad5f5647d1520d0878ca
MD5 3f5de90c66313a7e80b97dfc3d3374f1
BLAKE2b-256 8fbec1544a408a56f30317fe6201e702caad53cfa2d77b062fc52a83cb4d6602

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tarsio-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa0a20796aeaa0b10e836571b8193d50652874991c690444277f4a868cf98329
MD5 06c452914874976ed8e7a896b5ebf36b
BLAKE2b-256 86d1bb16a78086390483e837e8f280cdfb72c491501e2e455141eebbc94b20da

See more details on using hashes here.

Provenance

The following attestation bundles were made for tarsio-0.5.2-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