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

Architecture

Tryx acts as an interoperability layer (using PyO3) between Python's asyncio and Rust's tokio runtimes. It wraps the powerful whatsapp-rust core library, converting low-level Rust structs into ergonomic, strongly-typed Python objects without sacrificing performance.

flowchart TB
    subgraph Python["Python Environment"]
        UserScript["User Application\n(asyncio)"]
        TryxPackage["tryx (Python Package)\nAPI & Type Stubs (.pyi)"]
    end

    subgraph Rust["Rust Native Extension (tryx)"]
        PyO3["PyO3 Bridge\n(Type Conversion & FFI)"]
        Tokio["Tokio Runtime\n(Async Event Loop)"]
    end

    subgraph Submodule["whatsapp-rust (Submodule)"]
        Client["wacore Client"]
        Protocol["WhatsApp Web Protocol\n(Noise, Protobuf, WebSockets)"]
    end

    WhatsAppCloud(("WhatsApp Servers"))

    UserScript <--> |"Events & Method Calls"| TryxPackage
    TryxPackage <--> |"FFI boundary"| PyO3
    PyO3 <--> |"Cross-runtime task spawning"| Tokio
    Tokio <--> |"Rust async calls"| Client
    Client <--> Protocol
    Protocol <--> |"WSS"| WhatsAppCloud

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.4.tar.gz (1.6 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.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tryx-0.6.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

tryx-0.6.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp314-cp314-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.14Windows x86-64

tryx-0.6.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tryx-0.6.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp314-cp314-macosx_11_0_arm64.whl (15.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tryx-0.6.4-cp314-cp314-macosx_10_12_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tryx-0.6.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp313-cp313-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.13Windows x86-64

tryx-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tryx-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp313-cp313-macosx_11_0_arm64.whl (15.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tryx-0.6.4-cp313-cp313-macosx_10_12_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tryx-0.6.4-cp312-cp312-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.12Windows x86-64

tryx-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tryx-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp312-cp312-macosx_11_0_arm64.whl (15.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tryx-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl (16.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tryx-0.6.4-cp311-cp311-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.11Windows x86-64

tryx-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tryx-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp311-cp311-macosx_11_0_arm64.whl (15.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tryx-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tryx-0.6.4-cp310-cp310-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.10Windows x86-64

tryx-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tryx-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tryx-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

tryx-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: tryx-0.6.4.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4.tar.gz
Algorithm Hash digest
SHA256 fb6fbb85d521d02e8293dffbf9e839fb3d28cf430244278f0523931fc6d3760e
MD5 e4afafe52838004c07ca87731ba5dfa5
BLAKE2b-256 106edbf17c991b0e7a2c2991fa6d5f513ae0284eff8d214161a843e9346b7b2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccac852611f4bcc4509464627d0c365714e6d9a2015a3f938ff60e4edc960d5c
MD5 8b1c328939dd28dcbc776e699a54ed75
BLAKE2b-256 0e7ff81ec114d296fc6d8cfa0ab2038a2946461a51a2194275a63b4f07960a86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8da1807e251776e3c0152e47652443b6d2687e2f01fbea4ed1358c838cef888f
MD5 4dd64b4ad1fa1a1f1dd986110c804fb7
BLAKE2b-256 c05540ddf0bb2a54c0b0291eb152ca0b617fcb775930db698dddba923fcbd9d5

See more details on using hashes here.

File details

Details for the file tryx-0.6.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryx-0.6.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c0047d48208206c2896a7cf31228a83b8f61f3f7d39268e3034ed19630ac96d
MD5 dab288f726c49f4392e9ae1055f1ee61
BLAKE2b-256 47b4b22f487fee0b0c0997a385ced90bd17614ed8d41fc2da29e8f3dcde6e60b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82e735a269a23253a41682729e2ec3899dada99cb60c0792a67e0d0daeddf33a
MD5 62c45a3158ef4c5189034e08802f7251
BLAKE2b-256 f1ae84406d88d475f9f11cb32b722ef3db97686a70b9945148bde27f98c36e2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e053ee71607a7dfa0c7c72dddda76f256051b1e3a880bd7dd27f4b2a88e05eef
MD5 ffaf5929d52c7427420054aef34b8f84
BLAKE2b-256 cfcb5754355b180d14997ec9df31e9d0c1f954a7c092ed1e6ea03531daf8653e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4662ed291c6d8d9f607334e6b491643b0ed7af1923ab14bed94955cd0c4c9b42
MD5 bd25b3024e35f1f30ce88986a10b3b7a
BLAKE2b-256 f8620fa1f155616b1f72e542c4402beaf597d9c0a58e0d2de46b23327c176e94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79cd8e0459efe79c02f6dee6c15109e73914b424204b74a9e216b0c48a09a6de
MD5 d6e7418963232dc0ed36f25966fdbaaf
BLAKE2b-256 58970d66a751ffae06129f80b095bef9b2832ab96ed825ce4fee70e762c1ac84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6377081e42305c48d622240e2e8a171568f3c334f1c388ef8be080306acc9e0
MD5 8c9263aebc9f61fe6b685555a74c9b71
BLAKE2b-256 611f954e6a002a9aff4cd182741ad816fc0b2370c9d8af18a721813ca4a72704

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95c3ac8f63fd92ad16216839c150d494f2fa37ba93baa265c144e254004317b4
MD5 1ba7906a79384e0aea414d3fc3bbddb4
BLAKE2b-256 c6f13ea31f08b47416ca59dd949704af342be25e070180bbd2ef25ea6a3e9531

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2633c4b5ddf884c7057b85213e64c3b4a96feb4a5ca13861057465776a33852a
MD5 bf3a4b95352a94aa40e5b9e2d7e5fa3a
BLAKE2b-256 673990e4ee0b30f1b87662d447073dd5c0f5747f9b48e3a5169e21e2f0f88f69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cf48a53005fd673f79a06331ef514275d6f3ce444eb314200fe310e2836cd111
MD5 5e2aae86cfaea701310f90398ba4eff1
BLAKE2b-256 516a6814ba93f27946338b0061ff6f6aa15e91979b19e7064d42d97e9b93bf18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aec931798e9341bbdbcf2d8d6dd21467a451318f3dc397241d4d0cca7a76021a
MD5 2e1c39859724dda63852e02ea2353a7d
BLAKE2b-256 aad95fede6d3f31d6cb0fe95f6719848fb0707bd3f624ec0ea0572a814d9fc64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12a46582693f64de84771f9c20d71c2987aad1b55824c6107373285a6fed705b
MD5 8acb220643cacce27a54defe6e99dcdd
BLAKE2b-256 147a95cfef85b2fe24a34eecbad67b0c6b886f80b39946737a910d28287a9e9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb96142db25b880cf5aea289e47b29be9b24c6e466c5050d658500ac390b107e
MD5 66b14045640745f9aa12b18229f1f282
BLAKE2b-256 7035661be4c3d5b86789e0a73f8e1adeab4b2dfae5d38f939434abad5ccc5c40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 651873566ef0e74d008be7e793e52576dd1520f07d06a4ecd4880086ee908d59
MD5 643f621cc3dde9340952e8b0b82ccc72
BLAKE2b-256 db71858d5eb3b629f41b6dc2446ac6784afe3df0ec3f4082f17dcdf2ab18e558

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0fd3ce73cbf7d74277633edd0e8d5a12e5e25aab0c999842a8d1b2f5a327570c
MD5 b422314457db168f5c2d7617e4005eaa
BLAKE2b-256 036fe8a76784429350e14c708c1a4fe86aa3d705e6e2eead79ef1e4b6ce795a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4af8e46e7fded82d89354c2708e6f03c21e8bfa95278433f50538d90f46fe787
MD5 9557df7684bf6af022601268acfaf865
BLAKE2b-256 6aae91435b1b0bebeea00a06a4b86f59add55c97ff01054e977e01f0018ee067

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecd04604b28d043d138f97d954e9911fac903b64ba2fd2918fa7b0aca0b3578c
MD5 6ce4f20534ab575f0b17758054529115
BLAKE2b-256 bff5a3b968fa2a0ddef98214985c780a4cc28f8d8643655cf4eef1a3e55ebe2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37ab60325d4512743455dad16f53a44393ea2bfb0dface5ac59d817ec0c2a579
MD5 ca67d1e6beed465231dd01c0d146181d
BLAKE2b-256 6885070d18cd87d008504582fb1327870917d0d635b595ce54cf6ab35b32d6e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fd5b9ceb71450d5f8355ac8fe07db98814fe5cabd87853ddcaba426d66da6ff
MD5 247af633943c812cca76316a33f25f70
BLAKE2b-256 4f8b40145e4f1fede95656744bbbe6b1d1e2cb0aa4d7efb78e7ec197a596d979

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11d7d9676d336aabaa61a647ac051e19c7661898aea906fd6552f2bfc24dc961
MD5 06e4afc6803b3df4668e8c4398feb531
BLAKE2b-256 ce3ab9f7835922ea5490d75b7e823f78cb35ef0b45e543f853312f2aee31c281

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72ccfc84ad23bc37b64bb69972767e61609aa4e6fe7d75e5ae7159161c648493
MD5 3cd9cb857f23ed22af0590453f2c851f
BLAKE2b-256 e2a65195ca87b84574a0252169b2426174624ceeadee7b1e03ba3345f1b5c4c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65e67f6beecb29af517e9d0188a4dd754815fd95b485a6ce671ba3870aca588a
MD5 ed9005af072d24f2872675de6abae607
BLAKE2b-256 4325d0baf1a582097e4f8cd4f4c3cf0e245587a7c68b6ae91e7cab167490528e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 265800cc7a62e5b6382952fcc587bbd892bfd1d275c0ad8ae0b1273d82741c7e
MD5 b9bab802edd0b637952e1ee67ad4532a
BLAKE2b-256 03dccf687a46cf01c6b888aa9c104dc9faca84667f3f2bc8e9ec67f6c18d7a3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e0c5e4f9071e703276fc9898f24f10e48e1d83ae54c29e9b410ad8154d446d6a
MD5 8faddd6cf622a04ec7aa0b01754ec221
BLAKE2b-256 f681292c9e1a358ea932ec1bf804249924247eb5f2ab54205280d1472ad981b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 61185ed9e0e9160b90f33f073a1bd1f4423c6ad1542796a40c8f030f174d69e8
MD5 2f5d1e2f6120350be50b793710c61258
BLAKE2b-256 a4b3900accd41607321a75a43d0de4df1897948178cafb466da3bf1f4c946d59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28bbcdc71a91f188f4c2c46c8d0d46a175688d8a55fef489534dfdcea366ed30
MD5 63fe6639cc6bc93a01c03d04ccfdbc08
BLAKE2b-256 6a89352ead9bfa97825f453d5611672e6f90b3e917269a85597c6d30b3399c77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9a8c4b9ff140f52276ab6d502ae5c5421e0a7b044b6549d776abfcbb91bdf00
MD5 4e24cf75a65c7d99765cbe16c6312445
BLAKE2b-256 a3cf46ea9f10ceaf5924fef59baeb5de40caa91698931646905c0341328bd64e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b4c09e5de7b3651028cb2629c8a5342121a76c53a365a6fa8fba543100d6ea6
MD5 e33c581b6bfcf4a07289e6c7a5e83046
BLAKE2b-256 e5860c1fe08bee7b612186d049dce1d2976d634a176914cd58ed4122ebd992fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae8ba2371cc983bbd459dda0dba0c1e7174a0fd8bb817ba2e062e4d6314f6f76
MD5 c703228e5652cd8194e633b2e31d00c9
BLAKE2b-256 b6961fdeb6bb6d211020b9eca2e8daecc831e08e880792f04ce56c6afee1ec9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 17.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","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.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bd7e62434ffbbd95f0a36d0846643930af406084059c639cf15218e057518c7
MD5 fa1ce32067375012adc98f3b960c86ed
BLAKE2b-256 d34ce6509701b520b77c4a5717c3a61439196f982aee98adf01f0cf6a63626e0

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