Skip to main content

Rust-powered Python SDK for async WhatsApp automation with typed bindings and event-driven APIs

Project description

Tryx

CI Release Docs Python Rust Typed License

Tryx is a Rust-powered Python SDK for building WhatsApp automations with an async-first API, strong typing, and production-focused performance.

It combines:

  • Rust for protocol and runtime-heavy paths
  • PyO3 for Python bindings
  • Tokio for async orchestration
  • Typed Python package distribution (.pyi + py.typed)

Note: This project is an independent developer SDK and is not affiliated with WhatsApp or Meta.

Why Tryx

  • Async-first architecture for event-driven bots
  • Python-friendly API with namespace-based clients
  • High-performance native core for protocol and transport workloads
  • Typed interfaces for better editor support and safer integrations
  • Supports both async and blocking runtime styles

Quick Links

Installation

Prerequisites

  • Python 3.8+
  • Rust stable toolchain
  • uv

Development Install (Editable)

uv sync --group dev
uv run maturin develop

Build Wheels

uv run maturin build --release

Quick Start

import asyncio
from tryx.backend import SqliteBackend
from tryx.client import Tryx, TryxClient
from tryx.events import EvMessage
from tryx.waproto.whatsapp_pb2 import Message

backend = SqliteBackend("whatsapp.db")
app = Tryx(backend)

@app.on(EvMessage)
async def on_message(client: TryxClient, event: EvMessage) -> None:
    text = event.data.get_text() or "<non-text>"
    chat = event.data.message_info.source.chat
    await client.send_message(chat, Message(conversation=f"Echo: {text}"))

async def main() -> None:
    await app.run()

if __name__ == "__main__":
    asyncio.run(main())

Feature Overview

  • Event-based handlers via @app.on(...)
  • Runtime client namespaces:
    • contact, chat_actions, community, newsletter, groups
    • status, chatstate, blocking, polls, presence, privacy, profile
  • Media upload/download and message sending helpers
  • Typed helper utilities under tryx.helpers

For complete API coverage, see the docs site and generated API pages.

Project Layout

  • src/: Rust core bindings and runtime integration
  • python/tryx/: Python package surface and type stubs
  • python/tryx/waproto/: generated protobuf Python modules
  • examples/: runnable usage examples
  • docs/: MkDocs sources

Development Workflow

# Lint and format check
uv run ruff check .
uv run ruff format --check .

# Validate stubs
uv run python scripts/check_stub_parity.py

# Build docs locally
uv sync --group docs
uv run mkdocs serve

Release Workflow (Maintainers)

  • Release is triggered manually via GitHub Actions (Semantic Release).
  • Version bump is automatic from Conventional Commits:
    • feat -> minor
    • fix / perf -> patch
    • breaking change -> major
  • The workflow creates a Git tag (vX.Y.Z), creates a GitHub Release, then triggers CI for publish.

Troubleshooting

Native Module Import Error

If you see ModuleNotFoundError: No module named 'tryx._tryx':

uv run maturin develop --release

Client Not Running

Ensure the client runtime is started (run or run_blocking) before calling runtime client methods.

Contributing

See CONTRIBUTING.md for contribution and release guidelines.

License

This project is licensed under the terms in LICENSE.

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

tryx-0.5.1.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

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

tryx-0.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tryx-0.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp314-cp314-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.14Windows x86-64

tryx-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tryx-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (14.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tryx-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tryx-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp313-cp313-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.13Windows x86-64

tryx-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tryx-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (14.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tryx-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tryx-0.5.1-cp312-cp312-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.12Windows x86-64

tryx-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tryx-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (14.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tryx-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tryx-0.5.1-cp311-cp311-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.11Windows x86-64

tryx-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tryx-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (14.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tryx-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tryx-0.5.1-cp310-cp310-win_amd64.whl (14.8 MB view details)

Uploaded CPython 3.10Windows x86-64

tryx-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tryx-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tryx-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

tryx-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

tryx-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file tryx-0.5.1.tar.gz.

File metadata

  • Download URL: tryx-0.5.1.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1.tar.gz
Algorithm Hash digest
SHA256 64be657a933cc93a11291fc8a3576202d537075a8d0ecb839748ddc2cffef82d
MD5 ac47fe6d406bc1b7a5dae5aa26961013
BLAKE2b-256 88f56ddb2954a9684d250d1ec1f58b0d31cd0716c8a8e66a2dc4953e776cc630

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb66701b1668a736b2c3fc455072738fa50a1e86ed6af60e4b80022098085c56
MD5 997498c8dd558bfda4bdd5cabe5dea56
BLAKE2b-256 4e4cc196a1d7d8695c809db89febd351583ed7eb1b9bb207915d2acb0058f654

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a47a66c72c2c081b909e19e37ab2c25c2f33f59d3b4553ec699e52fdd07fc227
MD5 eba62ff478eb4225baad5966c4a759e1
BLAKE2b-256 8cf01b9455b3f6fff7d7a2d061938e7865437855042fe6e8f8f1415dbc8f2fe0

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a758f232a7ddfe83b407b7b3ad4fcc08280baa19a5a68eb5eeba9dc9fcb030c1
MD5 e86834543a82f31fede1605f4ce40dfb
BLAKE2b-256 fd9f07dcac8ff0574a2059c61865839fe1639c0c8c649f418dc1aa158e44a335

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6be00378e316c7af94e1523d0db00fb73aa18864672972e72b0e708b8ef5c014
MD5 e72f6d3365eb9cc8c058f72abda33f06
BLAKE2b-256 fa748803b50c1b1a8b7c6ed359bde005be47a2ec9233b73ea383fc6eee8c3b9c

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e40e75afd35c1535eb5529340ea40b42282f8fc2d83e1406dea5101b95b4f7f
MD5 a09d56086d33589e80b5c0d147698a54
BLAKE2b-256 61138a09a737d6198b6b18be504a4cdef6b68608bc638a2d5f42fc072ae1bfe1

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eac0524fe628831dfab4cf3f544b406c89798267c73b9b1961f3ce69ccfedaf3
MD5 8b5192ce764116be613d6d81ae3bc527
BLAKE2b-256 ec92ea67f11c2ddba235576b5b615278e78f75c89c86afe8aa56b141995c7909

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b5fc22665a2cada1cf210b4f1739f3ba1d803b6b87feea6e4bca9aafaebcca4
MD5 e41b9613b4a6cd1d3a488233847d2e62
BLAKE2b-256 097eb4454f18363b31b56dad1b216f218141791516d734c44932a9b3b81d5695

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e4231a24ccf6a7328b5aa7ed4c8d8722386484b8dfa81f592ad48475a4d97db
MD5 c1aaa5cffab6c85d8510ea49223bdbf2
BLAKE2b-256 6730e1972c79bf1785993ded6aaf2b188c127a29afa5244da308f33ba19ccf90

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55415c178a93318da480f2c382bc916f0942cc06222fcaec8f06b0a153600ce6
MD5 2c9028a34e2900b743d899d7cfb0d9b9
BLAKE2b-256 a447c64cabe3835ab54594c0ad4afe55796041d5b8de24089868286349fb7ef3

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bb07fee4b9412f89ab6150afa10dae4ae043d154b4105d9a41376ad018e1594a
MD5 68deaa40b3ee99544cf310e9a9520861
BLAKE2b-256 c8f05bc503b73769ce9396a17ffca3a7f7a7664b14aba1c37cea86e6f52aa241

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9409a8a3973948c846b2c64f856a354885833b5f2b1efe0121ab2ca12533ca42
MD5 9b2981227559c6e42afb5752a2b53224
BLAKE2b-256 12489add2a94c54fd2b36f1b26d8f228c6e5089770172cc867d974f8755c754b

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0ccdcb27001a1eed556029dd425260be95f99551a7fbd4a4834523d6dcabbfc
MD5 a101aa155dd5defb5329b4f180dba0a3
BLAKE2b-256 12b30fc1decd6b136d3159dcbc2eb59cc2b954f0f3de6f3421919966b2cbb437

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 557b9f72f28da0e9ff9f61c3eed7b473ea57c66d8790ea85eab5a5882f321315
MD5 027e9fc9f1794bb4c88d015b0b40ed4a
BLAKE2b-256 1cd56bc2e7207c87a7b5581462c3b062e7c3e4f09560a39b7cde8fcd0ae44562

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9e45e08acafea63e96ba1bd4e98f7b2444d0b173918a41f634cf1b4620df159
MD5 9c71662860b361ab493d4f90a9eee125
BLAKE2b-256 7b3c2dc5c1d1cf9bc55ab663d1a5caa8f89aefa2b304c90e882a10d42049818e

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15b470be80b96149047fd2dbb0b122c99a1298a4c7bd4b1f39fd79fb21c0c252
MD5 0824d5f4de13901f922f1dcb002cb17b
BLAKE2b-256 4b8863329165b0d4941384b5054ddaa651efe5deee82639be72471ec42802460

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cdd993696499193355df5f1b318b0d4a7c8ebc97b6573e609e8fe183cb22864
MD5 ffeb6c5c487c648c0033b44c3901bce4
BLAKE2b-256 a0fdda26d3b5487e39d73fa6471d02b515ec479964be12bc4cc72d73f3c62c17

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58acee25afa5aa225e1dd48a524696ed040e949918c3739ceed1617b2ac35de1
MD5 35e8c1a83990b9ce02792e356a0ba008
BLAKE2b-256 b469712e06e33213ab2a5818c41b17c44907d880345fa1c5695feccfa8b71046

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b1d3a495a49df765555db871fbef3e89d3f83c79e54a066c5d87b38d4d86c0e
MD5 8a50bfdcfa5e750141b28963eb2f0353
BLAKE2b-256 180929f5ea8f953ea822aad2a56efb6e1cff04ef58e2d2b1c8e528bc9644bcc2

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7409e0c90581fbed9105b2dd90a3d565f157e10316ad2c778ea3f764f5ea9d7
MD5 7fa3bb215c454eefab6842a3c11fb6ef
BLAKE2b-256 bb5a31fff77fc94212e4379ad555582d13357357c14626ed3b05a1227ea64e58

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 89552842ea94fcdf840b1ce04b5250b02a0a35185de499cee2f5a00d79f628a8
MD5 78093c19f8c1a1be810574f134d9139f
BLAKE2b-256 55a0be45edf051de05341a1681c7830afeb47a1c9a67dfa6454881496eb8959c

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a76beaaad1b39be078a22029bd092da8cc64df09bb0a2361c62d130f3c6a0128
MD5 48da56333e6f80f65a4d401b51324658
BLAKE2b-256 69a7fa618c9c7334717f944b37ccace01be4ba6a072d2f17f13e2dd5a0ed9085

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 302a50e5da4711be92cf0dec3632f5fb8a9539746579cd1d626163e3c1b593f2
MD5 c0ea41f3f86e78b09cc31e6aa293c6a5
BLAKE2b-256 28e7c85a5011db1b116f29207a51d0990490bea39186ec915a83c22518816585

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.9 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08509db6807c77af50c36ef2762cb27ce9d841aa71238c04eca85e6cbcea213f
MD5 9d6246c948ff62a27b9630696804de3f
BLAKE2b-256 6d45614d4a512839086c101c2a16da14b5167278d513250b2c243b921b7563e5

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 017562ae40a52c69ccfb347327817d8fe42997ff13450946f18fb684693a47cc
MD5 40b0bd01db44a67eb342557ab01aab24
BLAKE2b-256 3303790bd815906021edb1c5183dbeaf843255a463d89d97c4a35c465d19a853

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d77216d9f7a9d1ca5be3570917fd5bc1b528317862caf5672958b224ca73b9e2
MD5 68e4da539483de4878e565c556df16b8
BLAKE2b-256 b8ea1d30a3def1a6d5b259f226122b3bad0601d878751eacca389d7a3a1e85d5

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecf5ef3a4367ae4555141cc241c234a45a77b584abd727fc598bfc672461d024
MD5 8b5a457aab8bdef368cef248db5fa3fb
BLAKE2b-256 36c608ea3d350f13e2029bb6899121876efe4ad40e278de75271747f3459db30

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1feca135380b37087006f3dfb68df652b13acda52ec3c1c6eb444c4069e5679
MD5 5cfae080cb9fd7eb6ba47a0518ffbb1c
BLAKE2b-256 c79fc685cf8c61a89f0d63e84c8ccdc02450b4fc25d577c6e4039c9bfb77ebf1

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2a1055e97a8fae9ff2d7360164b7796b6fd97990bd1a5558c459a7533b7628d
MD5 7bee2cc9fd262a34c6769f94ee4304ca
BLAKE2b-256 e56e6a6187060a3a9c7116e7a8c9cd0f3df0122541cd41867a5f39765fd8b924

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12d28cff882f50d9b892f786e7a5d2514144418e038677bd2dabbc37168209e4
MD5 c73271d39124f976d0ae6937861678da
BLAKE2b-256 b6ee4c1336c0a19185fd0259b6c9d64f02f1efe514704a21fb3222a6b720ff87

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e74aefd19d0b7d30877935f9395ff923fa13df8f70122727ca3c140a2de3bd09
MD5 6ecfcf751b795972634a7eb2b1f15b84
BLAKE2b-256 b9aaa407a634c3f59894e8a4faf612c9b419b22474e3f206401c9aabc04bcbef

See more details on using hashes here.

File details

Details for the file tryx-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: tryx-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryx-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e2d52379da3b9f29a9a7b7b2f2f0d01cfd824f42b53278eff6f17b5ae6a78b0
MD5 7d06c6907bc68664f2260c93970d38fb
BLAKE2b-256 4e1985fd0e96e0966957a6ce038cbc3cb5caaaa487598c84dd2d6237f4b8737f

See more details on using hashes here.

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