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.6.3.tar.gz (1.4 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.6.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tryx-0.6.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp314-cp314-win_amd64.whl (15.4 MB view details)

Uploaded CPython 3.14Windows x86-64

tryx-0.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tryx-0.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp314-cp314-macosx_11_0_arm64.whl (15.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tryx-0.6.3-cp314-cp314-macosx_10_12_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tryx-0.6.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp313-cp313-win_amd64.whl (15.4 MB view details)

Uploaded CPython 3.13Windows x86-64

tryx-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tryx-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp313-cp313-macosx_11_0_arm64.whl (15.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tryx-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tryx-0.6.3-cp312-cp312-win_amd64.whl (15.4 MB view details)

Uploaded CPython 3.12Windows x86-64

tryx-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tryx-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp312-cp312-macosx_11_0_arm64.whl (15.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tryx-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tryx-0.6.3-cp311-cp311-win_amd64.whl (15.4 MB view details)

Uploaded CPython 3.11Windows x86-64

tryx-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tryx-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp311-cp311-macosx_11_0_arm64.whl (15.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tryx-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tryx-0.6.3-cp310-cp310-win_amd64.whl (15.4 MB view details)

Uploaded CPython 3.10Windows x86-64

tryx-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tryx-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tryx-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

tryx-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

tryx-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: tryx-0.6.3.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3.tar.gz
Algorithm Hash digest
SHA256 b7c3a637995113bb81d3805689a0bfdb64ed7397d64b3e2021fd8a8de6383916
MD5 b7603506b4a2cdd22d7d016ccb44caa4
BLAKE2b-256 ea25687fb0d1a9a1245a00288d16042d959260e26c815f01d8ed5a92417d8517

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 564ba1ede4af98ee245c15bb327e173182056790286f99007a85cb353eebbe19
MD5 d6bbdca0471779740e713570f66d4eb8
BLAKE2b-256 9cdca8fc27fda5b74570d4d24f877aaea80a1bc94f95ab20bcd8c432483308f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32fed3b63cd75b1969780c82c07bb7921e49349d79e712fa934b17bc143b4d34
MD5 d9a7ac0b1d22418ef3b55e11a7788af6
BLAKE2b-256 3ef29c3915657ba0207b2d72a590c9620ce4d15a47bb0ac0359b71fa202cf947

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdec54352cf662ac36a719ca0601ea5f94c59e95745e7449eeaa62b0f5bd4542
MD5 079858321495c5628b2e71c8cac96091
BLAKE2b-256 84454ce471f092616fc8109ae3ac0563316fbf3e13587a48171f88696d82d56a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aedffad6ae13f1d5f38458de2f82a314d23a1a02007ef7bde2779295daeedd74
MD5 d48df4361b9b65079ad0974de9214068
BLAKE2b-256 fc04b11f2a8c05f23b4634a1a9905b5e53347da104feaa457d8cecd34169de9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f352794d5957a46c5fc90660c5d8d0fbc91a12d47c7f3fe2d278b9f81922ae77
MD5 f174b771a3e0cabc36088b5c047f3c83
BLAKE2b-256 e5564c1bf81ef1704a1d030263dff3c81de949cf0b53f433d8b724b96a298150

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1fb176710bf40680655a3bff9182f8b5c3090a339aa679a5d999510b26d385f
MD5 7be7e94510d031b8b883acb81e608dfe
BLAKE2b-256 640011f8b02fb6c6dc8df587231a0cf773814518fee5b97112876e093e3760f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6b5e31e72fcebe8456b3846d12bf7c758396f2f099bed4330436af8662c1246
MD5 507c07ebff1ba44534cadf6acf044898
BLAKE2b-256 a48cedf74aa6135cf7982d44082438ba523f8773d6326186327eae8dbfe37e7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5db1197f180da155cb4923506d75fbfe6447484050748868cec439f5f3224f91
MD5 0b037d755a43e6cdcadaa5ac3850bbfa
BLAKE2b-256 6ca5aac66fdb591c28db4f1f4fc3c594b9126f9ed5f9b5386be532f5017b588b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 500bfeabe9d533f7d7c3992947e031d5fbf20a937f1e119cfd302163c8ee4afd
MD5 7a199be195c256c1496189fff9151665
BLAKE2b-256 a70ef2535c1ddea389b48976cbb925d1d38891725c2e468d0188442d0bad6a6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5ab6e414a141dce3e49aca1df014c6b865742d4b91ff92f3333cdbc4bd234aa6
MD5 eb38db2f0308c42857fd9e7fd2151d13
BLAKE2b-256 fa9846efb5d8d7ebb4ec85052bfe5685c28b248a493f7509b79b76accfd372b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 285c428cf2dbfdcfb6fcfbdd3ab27ae51767a9505745038719797dec7a2360c5
MD5 9f5a28ade13dc0ebcade256a09350a3b
BLAKE2b-256 a826e49ddf40db41fda9d704b0a5edbfd90ac6688eba91eca26b79eeadd44472

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8a2cfae1518a5c6e4484cacf4c4bea928b29084553e3e66ec69e2f6ffe46c1b
MD5 0c1407ede66b2c61309bb001eb12a311
BLAKE2b-256 5ad64d76c57a1067c307025c07f17a75d7b09103bf96af55d6ed879bb7b74ac8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a096807f4244c5b8f6f2b6dd7e5c97f7506b2ae77c0e27c3a9447b7eed723d1
MD5 56276d3c2145ea76d176fd35315e2d5d
BLAKE2b-256 ae9124f50fa7db3b6d739da1b34fc9bf08e6a47127a2a33155f1f24045a97a9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c5f9fb47ad3248b58139d64e63c484f3f3b71089a3a213f05b7368b6ce2a6bd
MD5 aef0f53ba98a35df748c0b7ef6a3775c
BLAKE2b-256 19acf5ec7fc7bade8a2529756f09eb748f8d2084471b8d11893a0cd064c69876

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9cd8450ee787488cb4bcc3493f3f895a79e31656a8bb1685cf3b3605171fbd12
MD5 3a7dcaca685fbd0e64c6df8b86691cd4
BLAKE2b-256 fe82df53c4cc2fd1097fc21aa23756bdb986d22dc903ba3b6cc31d97bd4d4e85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e74ab8bcb5a497bacf86369bd2ce6b411245d9eeacf29c95203b6f54f67a32ab
MD5 fc65a341720f2174dc387e5f7cbc4dac
BLAKE2b-256 d25b5ce6989ba6ff1a68680ce3b000afa885fa2d60306f8057b1cd2096101d15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5c89107cb8d28dc40ce43597ec8911850dce87dbc481d8264386de420e4b849
MD5 0f7aa088eb2b951f492725b090a0b961
BLAKE2b-256 ef74cc43b633039819922c29420286762cdcfd6c2196e8824388b145eae06920

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c04f84aa50149986456f7237f326539e471d3e99dab8714fad8008b1babe4e6
MD5 16d86c5c7fff2b43af0939ead99c7619
BLAKE2b-256 e5650a10f92b33ce2874bdad4bb162d9924de33e5ca0d45676379da7921b7c77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b4137b2a0e79f3c50402fe091a368d77f160a7ca81f25e53503822b01e380c9
MD5 fef079d1a315a08fbb48d6f7d0551ef6
BLAKE2b-256 b934e6622cf5f2168a81c8013074a4313a4943c4834a955c117c806193daf405

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5bacfbfb62ae251aa704eb7f8762fac9d5b3958547aea0fd1d8d907fe335147b
MD5 6cfc798161eeb0491b61ed5c06b2200d
BLAKE2b-256 4fa7aad99bef4582bf854e87539d9b7fafc3f6290cc53145eae8aca950ff7bd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8695a728db2451d66126804682854a24a1be62336203a83712572921a14150bf
MD5 3126a725634c690f76560596c1051c10
BLAKE2b-256 9bcd240f0e2c28f51b4cf838f0b8beabdfcf983c9cb8db1c54ebf83285d4b066

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 203cfdc121af38159ca73c29965aef4652f3644569b7a66fec3de9dee64b9a12
MD5 c528a6a4e4c7e53cea608acb0c449afd
BLAKE2b-256 3114623f3388e66475d7c9274df9b66beed512d327818b89636ac766fc11f0ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 054d394c9c816ab49f68140ee3635f144bd4e6fbe0b4bb8129762aafed4f2948
MD5 21eec940acde7aadbecd13968b0e7b41
BLAKE2b-256 85632711491d78459a545ddd5f2df1a3741560ec54ac16f49b5ea3c817a17a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1745da5db903b5bad839fc1f92aa0211ee7bac4cd23820226f1b786b9faad676
MD5 0829ae80c73d6560e301d940c8bb3dbc
BLAKE2b-256 e27d266ef1b2be7648bba44e84e506c02e1ea86aa381d63279b1250ebfc3e5d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8598e277de40afa1960d21b68e8228700cdf890ea6e406756c0042ee1f0287bd
MD5 6f3ad9406fd0efb020e486865723108e
BLAKE2b-256 001436ab6dac38d5621e0f516996575368c107eaec4ad9bfd42e9f14d2edb38a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54c3f4d480f39f58f29ce8024018c307212c50d67bb2b1a9c46fd4d54b720e3f
MD5 1ced13ed4891a650b6294e9a2751609a
BLAKE2b-256 8491867acd260d1d1bd2138388b12c7fa4dd2bce884658ba3af6880363830804

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61cca05cb90540a1b5a7c6dea1f6c7c79b6a1e8e2e9c56d303becb21b16a0747
MD5 c72f5e09a11e5a774dcdc5dd4ec3db53
BLAKE2b-256 ae4e16363e2655e3b54f9668cd3b18f552e2169710ca10fd6778990c64c0549d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31a80cd15e8092d3411d557a6eaedfe036201b7b4bf4474110b0eb3c15cb0d5b
MD5 2a3fe018d93f7fc962adc2736a17f1b0
BLAKE2b-256 9fee5a486eb8a672905cd7908ece30013070f0e2771a5809b815e7d6c2328511

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b1462280a9ebfe3edfe6b94bdf3263181f711990f8fdd71f2e2c7914fc9210d
MD5 a9eb16886ff50b6a2d83be33200258bb
BLAKE2b-256 0247e8a7eb44f2adb12767889d3f366157ae6622fa26bcf1e7aef7f0a15d2f4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a2c5bd09f818510cd302815978ace0bbffe1411c1b044906e762e64d62a265f
MD5 cf945f439fee9c5dd63395961279f08e
BLAKE2b-256 b644bb318d8a7ed6e02f14769f58b1a41132abfc672677665175ef25bbf3a09d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e19498867d3d63b4fe023f5506da5f133b9f9dbb6384449c833d6737cadd289c
MD5 ea28e6df33540dc802856c5d1ccced40
BLAKE2b-256 78f96858dc5472e768f7390b0860300f84cc12557ddf018b9c39377566a677b0

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