Skip to main content

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

Project description

Tryx

Tryx is a Rust-powered Python SDK for building WhatsApp automations with an async-first developer experience, typed APIs, and high runtime efficiency.

It combines:

  • Rust for protocol, transport, and runtime-heavy work
  • PyO3 for Python bindings
  • Tokio for async orchestration
  • Protobuf interop via generated WhatsApp Python types

Why Tryx

  • Low-latency runtime path for event processing
  • Python-friendly API surface for application logic
  • Structured event model with explicit classes
  • Optional blocking mode for script-style execution
  • Typed package distribution with .pyi and py.typed

Key Features

  • Async bot lifecycle: await bot.run()
  • Blocking lifecycle for simple scripts: bot.run_blocking()
  • Event registration decorator: @bot.on(EventType)
  • Messaging API (text, media upload, media download)
  • Dedicated contact namespace: client.contact.*
  • Dedicated chat-actions namespace: client.chat_actions.*
  • Dedicated community namespace: client.community.*
  • Dedicated newsletter namespace: client.newsletter.*
  • Dedicated groups namespace: client.groups.*
  • Dedicated status namespace: client.status.*
  • Dedicated chatstate namespace: client.chatstate.*
  • Dedicated blocking namespace: client.blocking.*
  • Dedicated polls namespace: client.polls.*
  • Dedicated presence namespace: client.presence.*
  • Dedicated helper namespace: tryx.helpers.*
  • Rich event payload classes with lazy conversion where possible

Architecture Overview

Tryx is split into two layers:

  1. Core (Rust)
  • Transport, protocol state, and event stream integration
  • WhatsApp runtime from submodule stack in libs/whatsapp-rust
  • PyO3 bindings in src/
  1. Interface (Python)
  • Dynamic re-export modules in python/tryx/*.py
  • Type stubs in python/tryx/*.pyi
  • Generated protobuf package in python/tryx/waproto

Native Binding Advantages (Rust + PyO3)

Tryx uses native Rust bindings instead of a pure-Python protocol implementation. This gives concrete benefits for this specific project:

  • Lower CPU overhead on hot paths such as event parsing and media/protobuf conversion.
  • Better memory behavior because heavy objects stay in Rust and are exposed to Python only when needed.
  • Async safety and runtime control from Tokio while keeping Python application code simple.
  • Ability to cache expensive Python type lookups once (PyOnceLock) and reuse them across events.
  • Cleaner separation: Rust handles protocol/runtime mechanics, Python handles business logic and integrations.

In practical terms, this means Python callbacks remain expressive while most protocol-heavy work stays fast and predictable.

Centralized PyOnceLock Cache

Event protobuf type caches are centralized in src/events/proto_cache.rs.

Why this helps:

  • All static PyOnceLock declarations are in one file.
  • All cache lookup helpers are in one place.
  • Easier maintenance and code search when adding/removing protobuf-backed fields.
  • Lower risk of duplicated cache logic in multiple event files.

The event layer now consumes cache helpers from this module, keeping event structs focused on payload mapping instead of cache plumbing.

Concurrency and Overhead Model

Tryx currently uses watch::Receiver<Option<Arc<Client>>> to expose the active client across binding objects.

Why this is a good default for PyO3 async bindings:

  • watch::Receiver is read-optimized and cheap to clone.
  • Stored value is Arc<Client>, so clone cost is minimal (atomic refcount).
  • Works naturally with Tokio async context.
  • Avoids explicit lock management in Python-exposed methods.

Compared to RwLock<Option<Arc<Client>>>:

  • RwLock adds lock acquisition on every read path.
  • It can increase contention under frequent method calls.
  • In mixed Python/Rust workloads, lock handoff can be noisier than watch read snapshots.

Recommendation:

  • Keep watch::Receiver<Option<Arc<Client>>> for low overhead and async safety.
  • Use RwLock only if you need mutable shared state beyond swapping client snapshots.

Contact Client Design

Tryx now exposes contact APIs through a dedicated ContactClient pyclass:

  • client.contact.get_info(...)
  • client.contact.get_user_info(...)
  • client.contact.get_profile_picture(...)
  • client.contact.is_on_whatsapp(...)

This keeps TryxClient focused on messaging/media and keeps contacts grouped by responsibility with no extra heavy synchronization cost.

Project Structure

  • src/lib.rs: PyO3 module bootstrap and submodule registration
  • src/clients/tryx.rs: main Tryx runtime wrapper
  • src/clients/tryx_client.rs: messaging/media client methods
  • src/clients/contacts.rs: contact-specific client methods
  • src/events/: dispatcher and event payload classes
  • src/types.rs: core Python-exposed value types (JID, MessageInfo, ...)
  • python/tryx/: Python package surface and stubs
  • python/tryx/waproto/: generated protobuf Python files
  • libs/whatsapp-rust/: embedded rust stack dependencies

Documentation Site (MkDocs Material)

A full documentation site is provided with MkDocs Material.

Install docs dependencies:

uv sync --group docs

Run local docs server:

uv run mkdocs serve

Build docs in strict mode:

uv run mkdocs build --strict

Installation

Prerequisites

  • Python 3.8+
  • Rust stable toolchain
  • uv

Development install (editable)

uv sync --group dev
uv run maturin develop

Build wheel

uv run maturin build --release

Wheels are produced under target/wheels or project-specific wheel output depending on command options.

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")
bot = Tryx(backend)

@bot.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 bot.run()

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

Command Bot Example (examples)

Contoh siap pakai tersedia di examples/command_bot.py.

Fitur contoh:

  • command router berbasis EvMessage
  • quoted reply pada semua balasan command
  • download profile picture pengirim, lalu kirim kembali ke chat
  • ambil pushname dari metadata pesan
  • ambil bio/about dari contact API
  • log update pushname dan bio realtime (EvPushNameUpdate, EvUserAboutUpdate)

Command yang tersedia:

  • ping -> pong
  • pp -> kirim ulang profile picture pengirim
  • pushname -> tampilkan pushname pengirim
  • bio -> tampilkan bio/about pengirim
  • help / menu -> tampilkan daftar command

Run:

uv run python examples/command_bot.py

Opsional env:

  • TRYX_DB_PATH (default whatsapp.db)

Python API Reference (High Level)

Backend

  • SqliteBackend(path: str)

Bot controller

  • Tryx(backend)
  • Tryx.on(event_type)
  • await Tryx.run()
  • Tryx.run_blocking()
  • Tryx.get_client() -> TryxClient

Runtime client

  • TryxClient.contact -> ContactClient
  • TryxClient.chat_actions -> ChatActionsClient
  • TryxClient.community -> CommunityClient
  • TryxClient.newsletter -> NewsletterClient
  • TryxClient.groups -> GroupsClient
  • TryxClient.status -> StatusClient
  • TryxClient.chatstate -> ChatstateClient
  • TryxClient.blocking -> BlockingClient
  • TryxClient.polls -> PollsClient
  • TryxClient.presence -> PresenceClient
  • TryxClient.privacy -> PrivacyClient
  • TryxClient.profile -> ProfileClient
  • TryxClient.send_message(...)
  • TryxClient.send_text(...)
  • TryxClient.send_photo(...)
  • TryxClient.send_document(...)
  • TryxClient.send_audio(...)
  • TryxClient.send_video(...)
  • TryxClient.send_gif(...)
  • TryxClient.send_sticker(...)
  • TryxClient.request_media_reupload(...)
  • TryxClient.download_media(...)
  • TryxClient.upload(...)
  • TryxClient.upload_file(...)

Return value penting:

  • send_message/send_text/send_photo/send_document/send_audio/send_video/send_gif/send_sticker mengembalikan SendResult.
  • request_media_reupload mengembalikan MediaReuploadResult.

Contact namespace

  • ContactClient.get_info(phones)
  • ContactClient.get_user_info(jid)
  • ContactClient.get_profile_picture(jid, preview)
  • ContactClient.is_on_whatsapp(jids)

Chat actions namespace

  • ChatActionsClient.archive_chat(jid, message_range=None)
  • ChatActionsClient.unarchive_chat(jid, message_range=None)
  • ChatActionsClient.pin_chat(jid)
  • ChatActionsClient.unpin_chat(jid)
  • ChatActionsClient.mute_chat(jid)
  • ChatActionsClient.mute_chat_until(jid, mute_end_timestamp_ms)
  • ChatActionsClient.unmute_chat(jid)
  • ChatActionsClient.star_message(chat_jid, participant_jid, message_id, from_me)
  • ChatActionsClient.unstar_message(chat_jid, participant_jid, message_id, from_me)
  • ChatActionsClient.mark_chat_as_read(jid, read, message_range=None)
  • ChatActionsClient.delete_chat(jid, delete_media, message_range=None)
  • ChatActionsClient.delete_message_for_me(chat_jid, participant_jid, message_id, from_me, delete_media, message_timestamp=None)
  • ChatActionsClient.build_message_key(...)
  • ChatActionsClient.build_message_range(...)

Community namespace

  • CommunityClient.create(options)
  • CommunityClient.deactivate(community_jid)
  • CommunityClient.link_subgroups(community_jid, subgroup_jids)
  • CommunityClient.unlink_subgroups(community_jid, subgroup_jids, remove_orphan_members)
  • CommunityClient.get_subgroups(community_jid)
  • CommunityClient.get_subgroup_participant_counts(community_jid)
  • CommunityClient.query_linked_group(community_jid, subgroup_jid)
  • CommunityClient.join_subgroup(community_jid, subgroup_jid)
  • CommunityClient.get_linked_groups_participants(community_jid)

Newsletter namespace

  • NewsletterClient.list_subscribed()
  • NewsletterClient.get_metadata(jid)
  • NewsletterClient.get_metadata_by_invite(invite_code)
  • NewsletterClient.create(name, description=None)
  • NewsletterClient.join(jid)
  • NewsletterClient.leave(jid)
  • NewsletterClient.update(jid, name=None, description=None)
  • NewsletterClient.subscribe_live_updates(jid)
  • NewsletterClient.send_message(jid, message)
  • NewsletterClient.send_reaction(jid, server_id, reaction)
  • NewsletterClient.get_messages(jid, count, before=None)

Groups namespace

  • GroupsClient.query_info(jid)
  • GroupsClient.get_participating()
  • GroupsClient.get_metadata(jid)
  • GroupsClient.create_group(options)
  • GroupsClient.set_subject(jid, subject)
  • GroupsClient.set_description(jid, description=None, prev=None)
  • GroupsClient.leave(jid)
  • GroupsClient.add_participants(jid, participants)
  • GroupsClient.remove_participants(jid, participants)
  • GroupsClient.promote_participants(jid, participants)
  • GroupsClient.demote_participants(jid, participants)
  • GroupsClient.get_invite_link(jid, reset)
  • GroupsClient.set_locked(jid, locked)
  • GroupsClient.set_announce(jid, announce)
  • GroupsClient.set_ephemeral(jid, expiration)
  • GroupsClient.set_membership_approval(jid, mode)
  • GroupsClient.join_with_invite_code(code)
  • GroupsClient.join_with_invite_v4(group_jid, code, expiration, admin_jid)
  • GroupsClient.get_invite_info(code)
  • GroupsClient.get_membership_requests(jid)
  • GroupsClient.approve_membership_requests(jid, participants)
  • GroupsClient.reject_membership_requests(jid, participants)
  • GroupsClient.set_member_add_mode(jid, mode)

Status namespace

  • StatusClient.send_text(text, background_argb, font, recipients, options=None)
  • StatusClient.send_image(upload, thumbnail, recipients, caption=None, options=None)
  • StatusClient.send_video(upload, thumbnail, duration_seconds, recipients, caption=None, options=None)
  • StatusClient.send_raw(message, recipients, options=None)
  • StatusClient.revoke(message_id, recipients, options=None)

Chatstate namespace

  • ChatstateClient.send(to, state)
  • ChatstateClient.send_composing(to)
  • ChatstateClient.send_recording(to)
  • ChatstateClient.send_paused(to)

Blocking namespace

  • BlockingClient.block(jid)
  • BlockingClient.unblock(jid)
  • BlockingClient.get_blocklist()
  • BlockingClient.is_blocked(jid)

Polls namespace

  • PollsClient.create(to, name, options, selectable_count)
  • PollsClient.vote(chat_jid, poll_msg_id, poll_creator_jid, message_secret, option_names)
  • PollsClient.decrypt_vote(enc_payload, enc_iv, message_secret, poll_msg_id, poll_creator_jid, voter_jid)
  • PollsClient.aggregate_votes(poll_options, votes, message_secret, poll_msg_id, poll_creator_jid)

Presence namespace

  • PresenceClient.set(status)
  • PresenceClient.set_available()
  • PresenceClient.set_unavailable()
  • PresenceClient.subscribe(jid)
  • PresenceClient.unsubscribe(jid)

Profile namespace

  • ProfileClient.set_push_name(name)
  • ProfileClient.set_status_text(text)
  • ProfileClient.set_profile_picture(image_data)
  • ProfileClient.remove_profile_picture()

Privacy namespace

  • PrivacyClient.fetch_settings()
  • PrivacyClient.set_setting(category, value)
  • PrivacyClient.set_disallowed_list(category, update)
  • PrivacyClient.set_default_disappearing_mode(duration_seconds)

Helper namespace

  • NewsletterHelpers.parse_message(data)
  • NewsletterHelpers.serialize_message(message)
  • NewsletterHelpers.build_text_message(text)
  • GroupsHelpers.strip_invite_url(code)
  • GroupsHelpers.build_participant(...)
  • GroupsHelpers.build_create_options(...)
  • StatusHelpers.build_send_options(privacy=...)
  • StatusHelpers.default_privacy()
  • ChatstateHelpers.composing()
  • ChatstateHelpers.recording()
  • ChatstateHelpers.paused()
  • BlockingHelpers.same_user(a, b)
  • PollsHelpers.decrypt_vote(...)
  • PollsHelpers.aggregate_votes(...)
  • PresenceHelpers.default_status()

Related typed models:

  • CreateCommunityOptions
  • CreateCommunityResult
  • CommunitySubgroup
  • LinkSubgroupsResult
  • UnlinkSubgroupsResult
  • GroupParticipant
  • GroupMetadata
  • GroupType
  • NewsletterVerification
  • NewsletterState
  • NewsletterRole
  • NewsletterReactionCount
  • NewsletterMetadata
  • NewsletterMessage
  • MemberLinkMode
  • MemberAddMode
  • MembershipApprovalMode
  • GroupParticipantOptions
  • CreateGroupOptions
  • CreateGroupResult
  • JoinGroupResult
  • ParticipantChangeResponse
  • MembershipRequest
  • GroupInfo
  • StatusPrivacySetting
  • StatusSendOptions
  • ChatStateType
  • BlocklistEntry
  • PollOptionResult
  • PresenceStatus
  • SendResult
  • MediaReuploadResult

Typing Support

Tryx ships as a typed Python package:

  • Stub files in python/tryx/*.pyi
  • Marker file python/tryx/py.typed

Recommended type checkers:

  • Pyright
  • Mypy
  • Pylance

Events

Event classes are generated from Rust-side event payloads and exposed under tryx.events.

Common patterns:

  • event.data for structured payload
  • lazy-converted proto fields (for lower eager conversion overhead)
  • datetime and typed references where available

Error Handling

Tryx exposes binding-level exceptions in tryx.exceptions, including:

  • FailedBuildBot
  • EventDispatchError
  • UnsupportedBackend
  • UnsupportedEventType

Backward-compatible aliases are also available for older names.

Development Workflow

Rust checks

cargo check

Python package sanity

uv run python -c "import tryx; print('ok')"

Type checking example

uv run pyright
# or
uv run mypy examples/command_bot.py

Pre-commit hooks

uv run pre-commit install --hook-type pre-commit --hook-type commit-msg
uv run pre-commit run --all-files

Performance Notes

  • Avoid creating Python objects before .await points in Rust async methods.
  • Construct Python values inside Python::attach(...) after async IO completes.
  • Return owned Py<T> from futures when required by Send bounds.
  • Keep payload conversion lazy when field access is infrequent.
  • Centralize Python type/proto caches to minimize repeated import/lookups.

Troubleshooting

Import error for native module

Symptom:

  • ModuleNotFoundError: No module named 'tryx._tryx'

Fix:

uv run maturin develop --release

Bot is not running

Symptom:

  • Python methods raise runtime error before run/start

Fix:

  • Ensure bot is started (run/run_blocking) and connected before invoking runtime client methods.

Type checker not reading stubs

Fix:

  • Ensure local install is active in your environment
  • Confirm py.typed is included in installed package
  • Restart language server

Security and Compliance

  • Keep secrets and session files outside version control
  • Use WhatsApp automation responsibly and within platform policy
  • Audit message handling callbacks before deploying production bots

Contributing

  • Contribution guideline: CONTRIBUTING.md
  • Docs page: docs/getting-started/contributing.md

License

See LICENSE for license terms.

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.3.0.tar.gz (1.8 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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (15.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (16.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

tryx-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (16.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

tryx-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

tryx-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp314-cp314-win_arm64.whl (13.1 MB view details)

Uploaded CPython 3.14Windows ARM64

tryx-0.3.0-cp314-cp314-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.14Windows x86-64

tryx-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

tryx-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (16.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

tryx-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

tryx-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tryx-0.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (16.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

tryx-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (14.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tryx-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tryx-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

tryx-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (16.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

tryx-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

tryx-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp313-cp313-win_arm64.whl (13.1 MB view details)

Uploaded CPython 3.13Windows ARM64

tryx-0.3.0-cp313-cp313-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.13Windows x86-64

tryx-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tryx-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (16.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

tryx-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tryx-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tryx-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

tryx-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (14.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tryx-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tryx-0.3.0-cp312-cp312-win_arm64.whl (13.1 MB view details)

Uploaded CPython 3.12Windows ARM64

tryx-0.3.0-cp312-cp312-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.12Windows x86-64

tryx-0.3.0-cp312-cp312-win32.whl (11.9 MB view details)

Uploaded CPython 3.12Windows x86

tryx-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tryx-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (16.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

tryx-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tryx-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tryx-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

tryx-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (14.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tryx-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tryx-0.3.0-cp311-cp311-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.11Windows x86-64

tryx-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tryx-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (16.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

tryx-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tryx-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tryx-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

tryx-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (14.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tryx-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tryx-0.3.0-cp310-cp310-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.10Windows x86-64

tryx-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tryx-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (16.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

tryx-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tryx-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tryx-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

tryx-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tryx-0.3.0-cp39-cp39-musllinux_1_2_i686.whl (16.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

tryx-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

tryx-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tryx-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

tryx-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

tryx-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

tryx-0.3.0-cp38-cp38-musllinux_1_2_i686.whl (16.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

tryx-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl (15.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

tryx-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

tryx-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

tryx-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (16.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

tryx-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

tryx-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: tryx-0.3.0.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0.tar.gz
Algorithm Hash digest
SHA256 793365605eb11e6395216e837fe4518b58c8795b84c8ad0bde15acd17592f57c
MD5 4dac259051d9d7bb9026e99b28f64d2f
BLAKE2b-256 c4ca0e50de24da33b6ce4ede0bd9c5fdea64f9432f98ee68e42c7133da57c434

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffdcd07e2e56db3be9c18a718e976f04e271eb0f6240edace33be15fb21e313d
MD5 f0138fac5f882f9e006ab19c0f26b93e
BLAKE2b-256 b38b03ef3ce6dd4c5f82434a396a7f03c75f6f2446e62b172073b21d692c3d8b

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58351b462c0b84642fd268051e55b9c1d1baf444bd8e03cda81ca36b4b6f2526
MD5 90518bc77e32c109a800b515adab5375
BLAKE2b-256 ecbce5fab47e47c78342241ced316cffa79ee4478a1808cf920b707fdb42c81a

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aec5d9131c1e50abed2e5c18865d7add1fe3b1ae250bc1622dfd98c91a93d550
MD5 ec306285320400b701b24ced9af95a54
BLAKE2b-256 50cffa86f095c656754e95affe41eb565230cd6ab00034af1a76a8272eac61a4

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbbfbc7258bd8f0ab6b6f14b61b91de0a39c572756ae4cf58b1169a2470238d8
MD5 5ccfeb3130e32eb018bed15d9e6f7357
BLAKE2b-256 f7da52356eb94cc41fcd7c9690bcb4c4f75e1f5853a2f5464f0d4d60a12f1846

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e3a410da046a52f85dad9e25f3a9bc57a861c3f53283749562b528a0f076869
MD5 963c7b46a171c60541b09aa047b37c04
BLAKE2b-256 162cc0d91a666327e54178f1936a90441aa4f10bcf21b5680c9b823b05ad9aee

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccd9d91023cae115b642e5264ac6c44c3f0eaaad8306bafbab2967e1711a4fac
MD5 52c91101e1cc77995ba33fcd14986f9b
BLAKE2b-256 436e6caa9bea69d9627e7d54cfb0a5e69006a7c6c85705a9e12eff77ec973b55

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6607d98bce0d2f4627f6a56a070e5c24cf6d4002d290bca6ec6f56b99c8b316e
MD5 318bb86eab452dbb05988f055ff16af7
BLAKE2b-256 68fb4aac240cbe14a36c5a58663ac7360cdde4d79ec512018fc9911f58a72ef8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0ddf8a225d1a6440eb1cee4865ed626bf1b2fc08621cbe71a36fc53af6f2638
MD5 8537df9872bfad9938eb3f07b5f58b9b
BLAKE2b-256 be1555022ccfedceb5e28ca3bedece638d473ef60b22868271bc173dba631721

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f17207dcc20915abcae1bde098f00a7188ad071dd3d55abcf825fa2fc17cd4db
MD5 81414c853eac42e35ea4f6c18358124f
BLAKE2b-256 0d3bc3a89cf28c3bb90bbe75e2e70e7cb3625b9a1a6a1eb5bd618d5a7cefe9dc

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73d7099ec79d7f1e509dd011053bffb5609a6572a715ee62414e0cbc338e99d8
MD5 14b90ebda26eea2bffe4b825f62621c6
BLAKE2b-256 009dc687149715114417793d99d426bc608cbc94a79722216e8ac38466b2720a

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ea048d2629618f11bfb5cf5f81b78dc8810282092e8836fb2ff4f748cf644bf
MD5 261c75f66d27606c48eaabd6cb606a17
BLAKE2b-256 f07d767ef8fb8498300dee225ca00fa686e401fb8bb136aa674fbbb73ed81c31

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec8950e06783ff7ac93033a5b52fe318a664f4c06ded232ff937cb1d2abcfefa
MD5 a9d2a46ced6563a9fdcc4f8fbd255bbf
BLAKE2b-256 0f0148c6b719824ebf36a30736f432dbe8ef46f05282665e0b8ac0a018a25960

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ed933113d1ec3ba83e64e021a8e4ca06dba75be3a7cc181560cfc956c718fb3
MD5 d066d16f29f1d59a6c17afa21c253333
BLAKE2b-256 29962fd3fbc33fc9fa1d4bb903c83e2898a856055371215d223774214b42c9a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 037b515e2092e946158133137052841af3a459eae710a1b786932848e0e85173
MD5 30cee863a35bf3783b96d0c02deeca50
BLAKE2b-256 14f4d6d71bb6c74db5070d4ed4760cb6548e0de248e9c7217e0ec377bcb40bdf

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4a3d0a08d791af7b11b92cd3a085ddf3054d732ff622448232c2d1d02afc5e8c
MD5 56845e350cd464f30cecd0aa12b608d8
BLAKE2b-256 5f2b9cdc7861a75d50d77ae96f678838ef6f8bee3231aa77f9d9e10e86e8c259

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f6b16a93992b67e5d85d7095d5cf3911be1249d59192fab0491e62e03e18cff6
MD5 9d204f94aee5f19e9393dd0175b70b7d
BLAKE2b-256 2e8edbbf8b68d8b6d8b973089de71c4872a5ca466221c0ff1ea8e83882eee55c

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b063b45aa6d252208760fb47fa3342b9cc6d5c772f423f38e70fbbef35e7a6e
MD5 6099feb00b4ce6bda8508aa86ff0ae87
BLAKE2b-256 49e41113f5c4d3e66f17001681742323f7a3d15339555a5209296e8b82bcd6a0

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4056b1aaa421ad1df5857fcafaa672eb28cc269b8c1d577619236d494639845
MD5 049116bdba5377c34f948d92f923a5af
BLAKE2b-256 7bead9888e38608c26d54f0182f7952181f762e754d5325f3552b562912cb38b

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4549c20eedd4427686b8af5d32a39a13b3dda1e5dbe8d92463d3c7dcab50a9f6
MD5 5598face9f26af45bbda95f50356bad8
BLAKE2b-256 b9f3f0558bd2d4bdac1ba862ec74d1d1346e81c139824db9227581b840d2c0c9

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd833d62d38edf342c014a475cf1b540f558026a7ad156de9a20a081eafa0141
MD5 918d2972e038c2f5509c4f06f58454b4
BLAKE2b-256 ffc8233c02c1dd45ac71901acaf60f0ce9f08295e7993be90bfac027b2640b71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05590c19ae16228208a2e63058658bcbf171c1c3336818331e1694dcfe38144e
MD5 cc4042c7c010760b4dce5c5a2d46011d
BLAKE2b-256 345d3332de28f5d4e2fe98ff90d916de2e52d1b3ebbfc0a8b8b07ac2410f793c

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e0a1abfef79f25263a86b17806f22073bdeebd4c5520baa9415e653b1491963
MD5 acbe9782a56f2a2cfebb9b30dfd41cb3
BLAKE2b-256 3f2559dc600d723ed020dc911db2c5e3e07ab2e7a3d93150ba194adc77512157

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7508d46b29f805b3389cd2eb64aecf52a889c75275321b0bb906ab0324c4eeef
MD5 0e19cb94ee7e14df159c988e2f18a4c5
BLAKE2b-256 86576a63c8362d67064bc039bd995fb9850e2d39136acd1e6471bf2ba68a49e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ef99b36127816ad67987120f290d1e012cd946a13b915db4a3bed137913df41
MD5 9ce5da7ac96e250f10a9e308db8caa05
BLAKE2b-256 d60cd99f5bed905f698e361530ab128cf189cbc54e768238b9f83f5ff252bbfb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49ab50c10fe164c2631911e1c6266fb42c5c59b7846188921b363aa628d55926
MD5 f7dad1d32e5eec37e1b98cb82f5feb36
BLAKE2b-256 48477969654b9937702c80ef0c0059f970469924405546fb66cbadf8e2e2f8e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bc92a8c9bf9bc221d23ff402d868680f8de029f3a72fd0bb496bed11f180570b
MD5 7ef3af86844e188babac5150a27449ed
BLAKE2b-256 05dedc1a44a0e95cd1b018f1ebb4ca66469a9b7fa171a9adfcfcd9f4995bc265

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 456ae46ff8e973f7fb45f85bbc7dcc6564f8e837db6c00f3719f43d7e6d49b03
MD5 c36f0334316e94971d92cdd0ce77505d
BLAKE2b-256 abc94ff8039fc9ed396b56b518fccc570e2d04d633a8ea6e6f2c7037e59ec2f8

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c24bd4ec56411b812e01829603ed6d7f151a1b33c3675f2741d10c39ca9e772a
MD5 a57b825d2d79732b5a465d3c5f51402d
BLAKE2b-256 4e6054b5b6716a76be621e0fdd53a1441ab86e8dc1836360e0e734b84cb1da5c

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d8517a70c6f7d38c83216399ba33b6ef3c9931003e17c041161a5a3a2130803
MD5 3e4a57605fb068c7e8bb85b4925149f0
BLAKE2b-256 0054c91f71075b44f5a92834694340fd8cc4f30a797372fd4ccedfe9c03025c2

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2424f89d47fb381a065181f31c54131f96e1e793ebaa71c930badf3b1563fd9
MD5 0dba282507cdadef7d38550a06f8dea1
BLAKE2b-256 ea98c5deaf610083f1cf4b20672e9d628dc5b7be9ea08676394f472b487ef21d

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7230ba1e0af32ee580f280eba068cc16703d208cdd199508fdd292d96ade40a
MD5 b911f51d5fb30d8723cbedb54e9c588b
BLAKE2b-256 b05398b71eefd1e4aba8b0d51beed1438f6019476213904886ed77b74dccfb64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50a0fe86424819e4473baababe7f422514d1c9dd0a056349b169a9bc46cfe402
MD5 fcf53a8ee35ee25781144504409cea0c
BLAKE2b-256 53931f54dd44194bc2a1a44db1b24cde960590557744c7139374d5d2e8329e23

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f626a8deab0e72db7d7cacfef21a65fffe32a8ad9e8c633ed4964ef575fc87b9
MD5 054d53f800991e1906ba1f0107aae0d9
BLAKE2b-256 9f13e6e7e87c3f7d9ad31c487df08ecbdcf44304d01260133c4fa033ffe40114

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 17b8259a387e727425fe3ac28f78583d3218f42aade6feef8adfe9f339d96ee3
MD5 00233d8c4775e777367d62b8e307eaf5
BLAKE2b-256 8146973ae2a840f3faa252ccdba1948af2bdf5a30ca7a9d77820ef192ff31043

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5b96c44b206a0862281c7ce16db521d9e8278b0c59c97d3d88887254110788f
MD5 4fc900eb0dd1a6caab39abf3327e521e
BLAKE2b-256 952d5ce91e26a264c9ad18ae525bcf3019ea14706bc45a8dc2c0da12ffb400ff

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f85bec8f1bc6bad880a17f9e6f48f89b2e9187d214b578dc48725aa4bf4b0fc
MD5 d9952531992cd22444e2d17b560c2524
BLAKE2b-256 59c789fb7895055472daa4d6284dec11f2d4bfc92cf9d0b7c2970dc1b35d5e4b

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fab2bc7a8eb0ab8db0ebd678b66dbc066bf45f467ddffbbb3f2342d67500a5f
MD5 120621eef053d97c4a7e260ff3f3ffe1
BLAKE2b-256 826cbf10e67ce97b58c0822c9589b45a88fb1c2a26e481aca82d7a8442f268a6

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29837444671ac4bb6975df28f2757de7da1dc8a4bf35df7e9cbff75ed9a4fc4a
MD5 3841437dcbed7957e6c0fa505dfaab92
BLAKE2b-256 bc8ce8a1cdafffbc08022087182d5ec7345893d43a36879cea76aa0d9b4e009d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70dee52b13e905048b41ac8ac8bfc65179b4e349de159886a184bf19f0975936
MD5 c45d70b7d0578e29819a12b5cb833dda
BLAKE2b-256 9496b203833a3fa7df1d0a7f2fcafd58cdc0a1a53485b09a089c069f4723f72f

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c22c0fce0e87bbfd103d1da9144db04b9040785a00f7751b4999547577c3eb7f
MD5 6901947c11c14503bab7ea0d3166096b
BLAKE2b-256 9e57e6c893539bcdbc6d1e8630714c9c9e1edd23b41f07bb990a8aa09f56d5f6

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61048dac5074a960c556b2f3612dd24cb67f9988febb34dcf51bf982a4310dd7
MD5 3cf44a1a5886430872f9335099c0094d
BLAKE2b-256 849f88d0654ad51ace5b621e5e79d5bac6efd059335b20ced6ef83887373b59e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 521297b596ade0248c636246bb3d424a658a18ec9fb5a09aa893e004aeab3b3f
MD5 0c3e4c34e03ce43ffd5b16d4ad1608f5
BLAKE2b-256 0356ffba88b6fcff5a2e2c99ea3124702ca27cb2e93bbe27156852e0c9446ee5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c295e542477e83a1fb1cecfd21e3ee345bab98db5caa16acf06bd62769299e8
MD5 96e98b69de4111308f639384722afe07
BLAKE2b-256 4d5aa606136b1d67bfa9703fc2417d19be078e487c082aff96660f940e3ed0e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5bf3844aeb3af03ba966eb570987cbf5cd601f81fe719ae9f6c7a6cb29d7534
MD5 d63ec531e753907f8eb5b8f090e73f25
BLAKE2b-256 62c60121237744d99a17f900e73cf39093f581d006906706584a44690048fcc7

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 382f32f9a8bccba92745c671f15e555d9cac2f08e6718ba745150cf01b25f5a4
MD5 d89faaf76c0da0680f2e69f50da319f1
BLAKE2b-256 98f876d28982c4ea8022a09a9fbb6da2012afbb05f995a2cdb8fcb407e043dca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f2bac79e6ba3c13298daedb6e030dc13fcbfa170e293c85cb398992641ea7d3
MD5 77b857289059c81bf55674f566f119e4
BLAKE2b-256 d77053fd2bc3097dffe45e132983b40ee5aefbb5fc9e4bed9461f283ceea0016

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5a0bc612365a2b4da9eb3c3e2aa7506bbae4ced3f6d27d7aee1bf368fc81ca94
MD5 feb758cdae752cf2faa0cc74e1b14ae6
BLAKE2b-256 0003ddd726f1a0f05c2760a5d56355d2b4d84243ea2a3ef6c46e3411cf19f695

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d54aaf5279f1fec3fd87a0f5fd68925cb1b894973ee32e181c82ae1c74a13812
MD5 8eb93e0d6f47458b8782c614243eecd8
BLAKE2b-256 b7eafcdccac60265ebf8e1b7982560128edf2357e9e98ad86d595df948d781ab

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6c1d017905c79b244bdc64469cb9ba40c370a1d0a9d0adcabe328b986d7b764
MD5 45a19f882ccac93329d5a0e5675abef6
BLAKE2b-256 b3f047343a0d5e0ce4e340d75536a444e66e7d664b04c6e62f8485a4534374b1

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba45b9644702d1a5f383edd4d0857ccdb64659ccb025bd8ba009c3839f729777
MD5 2f1979033d2f15cdc8409362e9f47598
BLAKE2b-256 5448db2e85d63d3c8cc80c9ebe50a69e8ac62ad18a30f76db4a971b7d3ab0a35

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24fdb56242d8aa47cd13c11febae689a4c516d33572d0b89d88879c245aba9be
MD5 82d51f577e0ee7fb9bb25749d2f57d21
BLAKE2b-256 da1f83003e0365e5ec0f5b4ee09f5048be791114aee323ab1abedb63084f7dfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82086a35f57cd861437cf89a990204555bad570054aa776d36517658fa81cc55
MD5 d75667e887b6d18cd94415c98a502237
BLAKE2b-256 81cab2777ac96b5c85713f04a3a6be246297ba9b3655b1fa2a83a5885cde683f

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cdd199450ff7e23710836adeb727054feddbb2e14603a997d5b99241593c9a75
MD5 41253544977a9c05f46d227fbea43202
BLAKE2b-256 80b4c17d70ea0d36c149b6b4f78e228dc09b0aaf88fbf89132c06018b0a80b01

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8689dd1420a4840ca2babe1caedb0724f338037b56c3b02b6cbe081a0150f3ee
MD5 832fda535cbc0e493ccfbe9c8e0ed265
BLAKE2b-256 7d8f3a2894ecb792ad79874818861cb27d69363053f2f04dcd67437406b3f756

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66e6869ff5454289b46dac903d7730b0ad09120c8ee7a0944b47a29a93629fd6
MD5 fd0dee1923c2e9aeb2b17c3d5ade0f58
BLAKE2b-256 6460bccbde579f6fc1e1b6393831d00d9097ae672eba2e90f443908267b96767

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8c8622fbb189287b0ba9df7f03d8448b4366d8c452d779c7b56af46d8815d2e
MD5 e7b87096a80a367f1a846aaa12aeca06
BLAKE2b-256 c3b029dbdfeeb690e1ed87395d0992d5728f9370037440d5b3c897b3e344bc94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09e48936f418b1a2c48ce6ba174d3bbcdc7480cb92fbef62c921f6f55511c506
MD5 2f45992c2aa79272135db5ca95e3bb0b
BLAKE2b-256 de69dd0eb2ea4d80b56c10d74f9a798a3241e516c4c7137336766be310c71c31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f710d0dcbbbd8696588527761f457f795204844896eea6a8cb00aad3ab1ef21
MD5 271e09273c2cb5895cc4f075c0e6bbc6
BLAKE2b-256 f94e327aa2ca258df7226cabfeb2f6913f58bf9e5fb3c793a5ebcf52b32cc8a0

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1c4397aae5e49ee01dde544e32dd5957818a3933460dc8d9993d538299d22ec
MD5 6b3225992109d04a23d2b8da78d94e3a
BLAKE2b-256 997f1b01446d1ff693a4c0788f65f3c17bde3680cac94624a6ff7a5ba8b1ad7c

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 487f734bfc263f4cb4e68fb1f9cc978af8b9a963c580b63570513623547dc8a9
MD5 7ff90eb47793897546b7c1dcaa7573e5
BLAKE2b-256 25714234f43a3fa2768275c230db99af680a18934da690961597fdc68cf88219

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 832d2dee0fd975072353ff7b11ce59f9dc5bd467edc0fe96e6c977659d2b461b
MD5 927b201fe82bd5c01c2dea3a5a33fd45
BLAKE2b-256 ec8ba569ed60b6e80055d70eb17d79d2b88143a02bafa33190362ea96f5d1edc

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6152d78770371be8e998a25097825590dfd72d2cf73e127ea74522adec84b66
MD5 4e37a48b7934a34a5a53e6593b11bf58
BLAKE2b-256 ffa52deb7b9a48e00178014aba19fac53b9f8f653f119bbff8795fa0a3c383d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33af8b07aa3f9a30ffed7d34d8f297369efb7b16ec40f03c84d659cf5c93142e
MD5 d1dd758b56c67e0493061636c421a500
BLAKE2b-256 4ba8cbea65df9acd38b3599ecffb66f0b5984ce77e15067f2163b77a3f2cc63e

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 829e6faae77faeaa924162c7ce367c2820d079ad203df5e1886bad6fc29214fb
MD5 2f61764fb8f5ddb991afd6fa7535655d
BLAKE2b-256 f154727d02e7842cb1fa731e28b962c9b145199bc07c8a93a7d7f5cca90f60c1

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78410fa11eb2490071ba00b78de034f46c6d18393c05a00eb3806223057afeff
MD5 07d9755e49039d092ece547284901579
BLAKE2b-256 ced8e1866102663344568080a007f8352a3e811b8538ae4792d651db4ec564b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 632af768d5fe03056115f9850688b0d741f641d9a88a21e7b159efca53c4e10c
MD5 41c62a12a217f86349559e58e964f14c
BLAKE2b-256 f87901700539de2e2d3102a6966e6d544599899d48f60054d1220c3e60b56d21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0e9ba513b5c443d402e38ec1cb96f842893d0e662c526c01582d972915dc390
MD5 3d8087909e495156fcae1d7f317b3b01
BLAKE2b-256 6db9eef0e75847aa681e0567136b47ff0e7742efc49b731d47bd86f1df17ea47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07da0c49fd7b9df30274dcee837782b5ecf58c09f7387663a8d968c56e8b59aa
MD5 9fd0e026c27cd86136561fb1f59d4772
BLAKE2b-256 f3281bb51a8ec1393a8122c9e58fda3dc4724a6184ed7a74de4042f4f8fd7333

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 84cabb9e576bf34df2abcc5a1e09689e1be876e085efd23f96128def97eff820
MD5 45a1dfe5ab96c3c04855ee0560e2ef9d
BLAKE2b-256 1129ffca8fa58b78932c730e02c27372d2bd020dd80609db69d5496c410b39f1

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62715aea5427933ab1db1b187924772592196dd50ef7d26b393c152eba92ad85
MD5 5a41b6ad55a59f3b222712f87381319d
BLAKE2b-256 b7b932c0362bf7fd2ff79f4904cceff0843de07f9cb096417d27a31a6842c4c4

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04c95695cde13f3b56a8a6fd825e8f733a141f90bab1eb7471d43378bcb50814
MD5 f62aed3abe5b987f4cc03a4ce1c446cf
BLAKE2b-256 a3071b9cda92d4f5b83d8e9351f2d22511f1c7cef8754d5276aba91bb550c053

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd4a9b7573c073b115cdcb41ae00379e0f946ddb9931e1a8fb0ce5fbec66f69b
MD5 471609b528e9c28104c414a94ae89e2a
BLAKE2b-256 86e9665443220ba3ac54c6462df430f5d1847aa276295604afaea63772dbe756

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9764b026a9865b1a97e595bf06c67471a0b7669960c1959418ee79468637384
MD5 eb6562ccc63c47ab5cc053053823a92f
BLAKE2b-256 564c6cce34ff6540ecfeba8d6a48d1b0028d4d9b12d5d905c65db8b4808b5b51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49bf14011360dbe79410f0002812d2f628f9a4cdb2d2dc96853dbe3c7bd596ef
MD5 eabf3a1448372eac22fc861dd1dda8f4
BLAKE2b-256 0339f3d81b808afcaf92f5fca14ed3751924db64293458a0fc28aa46c27557a3

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7cb7b8b7a865b50e22066ea48e9bbd56ac480a3f3fd86ce99a3c24edca47689a
MD5 497b070fc768a6480428d460086098b7
BLAKE2b-256 be3331a71d98269ee449002ff5932f1c58152ee15abbd43cf7357e9228ef23bc

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01418dbc7d993f7e6c505b47b6a393b5652774fe045bc268997d408fae55f8b1
MD5 47df1905b71a50a7a8eb3ea19387b7af
BLAKE2b-256 d96c410f79d63505938bb335b72857648060ead7b93dde66c7a5d917cc85b55d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f873ab5dbfbcbb0da73490fb7dd0cb9459478069bbf620e8b67e17244089fd99
MD5 6d2299eba51114d1985c475f3276938d
BLAKE2b-256 9b103e4cdb25ffc5a858a63039dce9b145705aeb82cd8052849b1852d67aefc8

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df56d3a3c462ee008514f98f82681212e81ee71671991d2c7851e3d5ca328a75
MD5 aeafc1c3e9f3015ac55c610c1de3e2f4
BLAKE2b-256 2c038fa1d786a3691301ef2f917e2f7b7295750bf5bebb8f3a4bb89290dbafe3

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 293d10e13a4516850531addd3676f2c06105f206a25b76b0ffb47ecc84908b23
MD5 7fba9a10b7afdb03ba0b7ae27484c62e
BLAKE2b-256 8ab846543e7dc2dd50048016a29c507484bb9003219939ea93fb815c55ab6016

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e25c152c01d0ff1468a2e3af367f7c05a8f0f3cf7a33a680af5d1f015f91047
MD5 d65218dab68451865cab71e133074061
BLAKE2b-256 050c39c9bfe2f33130a28fbc84f73e01eceb51e3d0cfeeabbe857199c1756905

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 668a98a67d288b0d480e3c936b06ba3af992b705d13e87c072c6125f87890f96
MD5 9f5783e5e5bcd304d7804a50a76b2b63
BLAKE2b-256 4c33a43eb80de5563cc9a7489536c06f6851cc343d0b2829146a414ff34ae246

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93458df7f151cdd04fc607143aac010f7d652a5cb452c5cbb94d80451f009fe4
MD5 af45243dfdef2cdd49000533b2044f67
BLAKE2b-256 032d371d549456d1c897b2f73a3430985c268a3ba055768549cf6e35ef7c2922

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 650c595d64d29a738c33b490ef1697501f476674cea6eb65573e7356e67108ad
MD5 0dacdf7c1973db0f2af35cffdd31b419
BLAKE2b-256 fc66d039f1e8d717e5a3501850bbf2f5e19a700c20b0a7d8a79dc532817df188

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f745095ce1bef68d2ebc3b1dffb813766b948a43b673b5853e7de4a8fe2126b8
MD5 1aa178387c0c3c411c6c24ff2dfe4eef
BLAKE2b-256 519710c5186539ea95ae073d74c04f3f3688f819d03e142c697a9b6084b6ed77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1b29818a1a630b416f3cdc3743be8f6320782de9f2bceec50e6e07443ba894b
MD5 5885756f26b167e468f456dd4818e63b
BLAKE2b-256 16aa501a3c324b088a0bae8e1f8117c0ba8e6f35c36748cd5f5a2dfb8da07f8d

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ff7c49e21e142af82476ef569edc08564db212e497f8796fa74a9d079997865
MD5 eecf8a2ff2f7a497311937364afb5bba
BLAKE2b-256 f2ef5fd0251e342737dda8b94bc477f9f2a13a02c4943f77be01d8346839568d

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9ee8e1dc01c9a78b1a9c96c505d3448eb88f623c7461acb580aba3b0466a9fc
MD5 69fca11f7208d8fe56a0f9f64a24a3d6
BLAKE2b-256 f740a30e93492f0e6fdb75f28c5f6615ebf8fe957a5e7b978d4eae5d48efc95f

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59ca9af93938287df8934d5ce46f4e54dfc26674676d4799d4febd63c49897e1
MD5 c9bb6e9c891e293363bc9134a4a87c8a
BLAKE2b-256 0d378c69dc27c36255ce9e90d50cd26802cc4ce784afc2c4c03c059d60f5eab7

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: tryx-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3c760a5918dad3834946a9955274af5ebae321212cf7f26b474e3c0faa23b66
MD5 3a9be6d32e0a2c3443ada854b384137f
BLAKE2b-256 17a9a2a8fc3a70771f81be2218a902a190a651ed3c58f668f76fee6cca15c0e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 882dc4e70facf8c718c0aa3572092bc84bb0ab020f45d11c53e42ba2398c7583
MD5 d7527e5be1b065670e94e8066ef1bf94
BLAKE2b-256 ca99e5f40f0aa33f6bc6845369834a43383d25389fee51992b927a01f0b4373d

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: tryx-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16514099355662da784350966ddfb699fdd2c6774b302f7cf9559b85e16b8af3
MD5 6b668883f01eaa44feeb1ecc8e049507
BLAKE2b-256 3082bb9b5cc7e571b8104311c53ea93b3d20a19745f9ac6a36fb78bcd60fc940

See more details on using hashes here.

File details

Details for the file tryx-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: tryx-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b57b70c276337a2d8ee53da3a73d5bf191c5453cd2cc0f28c5d8f57141bfe3a
MD5 9db8b9ae277ef88c320a57bd84c50e81
BLAKE2b-256 d59acc609002c014dcf6b670fb6140e6090c66e60657206db1a1cbbcfc538465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tryx-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf86e64e3950d740a0e3ebd8f26bd92c2bc571f172bbc0adaa3c331a314b4972
MD5 8a271b1d36d646551015e5b3dab3d992
BLAKE2b-256 20a8c8e1a4e55b107f2764fe38470a73ad3f661a0e60318f3e4d88ddfcfcbf62

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