Skip to main content

rqx

A Rust-backed Python HTTP client with an httpx-compatible API.

rqx replaces httpx's pure-Python internals with a Rust core built on reqwest and tokio. The goal: keep the API your code already targets, but eliminate the structural performance ceilings of pure-Python HTTP under concurrent load.

Origin

rqx is a personal learning project for PyO3 and maturin. The structure of the work was a forcing function: I wrote a normal product spec, then asked Claude to rewrite it in the form of an academic course-project spec (CS 262A — Advanced Topics in Computer Systems). The academic framing pushed the design toward sharper engineering decisions — measurable acceptance criteria, explicit architectural trade-offs, and concrete performance targets — than a casual spec would have produced.

Two documents capture this:

  • docs/reqx_project_spec.md — the original project specification: problem statement, design constraints, acceptance criteria.
  • docs/report.md — the write-up: design decisions, lessons learned, and the things that didn't work. Written while the project was still called reqx, against an early local-machine benchmark; the architectural discussion holds, the numbers in it are superseded.

Read the report for the architectural trade-offs (sync vs async paths, retry placement, JSON parsing strategy, runtime singleton). For performance numbers, use the benchmark section below and benchmarks/0.1.4/report.md.

Quick look

import rqx

# Sync
with rqx.Client() as client:
    resp = client.get("https://httpbin.org/get")
    print(resp.json())

# Async
async with rqx.AsyncClient() as client:
    resp = await client.get("https://httpbin.org/get")
    print(resp.json())

# Module-level convenience (one-off requests)
resp = rqx.get("https://httpbin.org/get")

# With retries
transport = rqx.HTTPTransport(
    retries=rqx.Retry(total=3, backoff_factor=0.5, status_forcelist={503}),
)
with rqx.Client(transport=transport) as client:
    resp = client.get("https://example.com/api")

The API targets feature parity with httpx — clients, transports, retries, streaming, mTLS, base URLs, granular timeouts, and the full exception hierarchy. See python/rqx/_types.pyi for the current surface.

Installation

pip install rqx

To build from source (Rust toolchain + Python 3.8+ required):

git clone https://github.com/rodcochran/rqx.git
cd rqx
just setup        # uv venv + maturin develop + dev deps
just test         # full test suite

Benchmarks

Measured on a paired AWS c7i.large client/server (2 vCPU each, dedicated CPU) in us-east-1, hitting nginx over an intra-VPC private IP. Each bar is the median of 5 runs; each (client, concurrency, run) executes in its own Python subprocess to keep clients from contaminating each other's measurements.

Charts below are from the 0.1.4 run (2026-09-10). Full methodology, per-concurrency tables, and limitations: benchmarks/0.1.4/report.md. Earlier runs are kept at benchmarks/0.1.3/report.md and docs/launch_report.md for comparison.

Throughput at concurrency=100

Memory at concurrency=100

Median latency at concurrency=100

httpx is the modern successor to requests, aiohttp is the de-facto async HTTP library, and httpr is another Rust-backed alternative.

Status

0.1.4, published on PyPI. Usable, but the API may still shift in small ways during 0.x. Open issues track the v0.x roadmap — anything labeled httpx-feature-parity is a known surface gap.

Contributing

This started as a learning project and stayed one. Contributions are welcome — especially around the httpx-parity surface (URL/QueryParams classes, MockTransport, event hooks, full streaming surface). See open issues for the working set, particularly anything labeled good first issue, and CONTRIBUTING.md for setup, conventions, and how to run the benchmarks.

Acknowledgements

rqx builds on the work of several excellent projects:

  • httpx — the API design this project mirrors
  • reqwest — the Rust HTTP client powering rqx
  • PyO3 and maturin — Rust/Python FFI and build tooling
  • tokio — async runtime

License

MIT

Release files for rqx 0.1.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for rqx 0.1.4
File Size Uploaded
rqx-0.1.4.tar.gz 762.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for rqx 0.1.4
File
rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARM64 Details
rqx-0.1.4-cp315-cp315t-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp315-cp315t-manylinux_2_28_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp315-cp315-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp315-cp315-manylinux_2_28_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
rqx-0.1.4-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
rqx-0.1.4-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
rqx-0.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp314-cp314t-manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-cp314-cp314t-manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-cp314-cp314t-manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp314-cp314t-manylinux_2_28_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
rqx-0.1.4-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
rqx-0.1.4-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
rqx-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
rqx-0.1.4-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
rqx-0.1.4-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
rqx-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp314-cp314-manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-cp314-cp314-manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-cp314-cp314-manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp314-cp314-manylinux_2_28_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
rqx-0.1.4-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
rqx-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
rqx-0.1.4-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
rqx-0.1.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
rqx-0.1.4-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
rqx-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
rqx-0.1.4-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
rqx-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
rqx-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp313-cp313-manylinux_2_28_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-cp313-cp313-manylinux_2_28_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-cp313-cp313-manylinux_2_28_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp313-cp313-manylinux_2_28_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
rqx-0.1.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
rqx-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
rqx-0.1.4-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
rqx-0.1.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
rqx-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
rqx-0.1.4-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
rqx-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
rqx-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp312-cp312-manylinux_2_28_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-cp312-cp312-manylinux_2_28_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-cp312-cp312-manylinux_2_28_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp312-cp312-manylinux_2_28_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
rqx-0.1.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
rqx-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
rqx-0.1.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
rqx-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
rqx-0.1.4-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
rqx-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
rqx-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp311-cp311-manylinux_2_28_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-cp311-cp311-manylinux_2_28_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-cp311-cp311-manylinux_2_28_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp311-cp311-manylinux_2_28_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
rqx-0.1.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
rqx-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
rqx-0.1.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
rqx-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
rqx-0.1.4-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
rqx-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
rqx-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp310-cp310-manylinux_2_28_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-cp310-cp310-manylinux_2_28_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-cp310-cp310-manylinux_2_28_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp310-cp310-manylinux_2_28_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
rqx-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
rqx-0.1.4-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
rqx-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
rqx-0.1.4-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
rqx-0.1.4-cp39-cp39-manylinux_2_28_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-cp39-cp39-manylinux_2_28_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-cp39-cp39-manylinux_2_28_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-32 Details
rqx-0.1.4-cp39-cp39-manylinux_2_28_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
rqx-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
rqx-0.1.4-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
rqx-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
rqx-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
rqx-0.1.4-cp38-cp38-manylinux_2_28_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ IBM System/390x Details
rqx-0.1.4-cp38-cp38-manylinux_2_28_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ PowerPC 64-le Details
rqx-0.1.4-cp38-cp38-manylinux_2_28_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARMv7l Details
rqx-0.1.4-cp38-cp38-manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARM64 Details

Total release size: 433.7 MB

Release files / rqx-0.1.4.tar.gz

Download URL rqx-0.1.4.tar.gz
Size 762.7 kB
Tags Source
SHA-256 checksum
How to use checksums
53d2cd71fc4c8bb55ad00872fa800c2939944e347ab1ceafa928914d08d077ce
BLAKE2b-256 checksum
How to use checksums
680be9bad1a2b14c1304925eac3d2f8d5306f3e43051d982bcedd2a53cb6ecae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 4.5 MB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
cbd2f6090134d93ab894e84ec3b5950c1e0886f4e0e02e59d7d72414b314c564
BLAKE2b-256 checksum
How to use checksums
9823643072c3c47b0f3a530f03a20e8cf77e0832494d7c50eb5f9240715c0dbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 4.1 MB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
38e222d0a71ecca3e805fe2895d435e781dc1462ecbb71376d15b81d4f532d5c
BLAKE2b-256 checksum
How to use checksums
02be4cd8c017069b749b8fa9f2afb62bd37984dcb7fb36b5e673647148efab00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
fd4746a35f1b356ae4e6b97b770d81808c9fffb828ef385206a0cdfaaf0c9f08
BLAKE2b-256 checksum
How to use checksums
e7584866c6a6d3f55d991efcb2c46148edd26f4d92a475d93aa3d4f226746a57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
95511d868eb50271bebee5670b3e15eedcd330643dfb816aa612c509ab9293c2
BLAKE2b-256 checksum
How to use checksums
c22620232ae6ee99c4b524d644a4d7b904a29d7c68dc95662391fcb3df42727a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags Linux glibc 2.28+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
2926e601d448bda231d23e3b279a135b1d8aeee4253867c7a871ea63c2227e49
BLAKE2b-256 checksum
How to use checksums
00ca5638fd4f0721ca0a7e16d6fab56cd74b1746f50aa785d3d2027cb81e0e44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags Linux glibc 2.28+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
b04a7dadfeec90de7048ebd59c7df6ed729cbdd373824a6164a51690a9d82a84
BLAKE2b-256 checksum
How to use checksums
cba8a0dbc90c26269cef7bb84a25d1b7ee56d72673d09dd99e9e96fbc4a20c0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags Linux glibc 2.28+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
764d6ce0cc6001aaff579189b0d3437d88edc246aab7662e019d483f51de77d8
BLAKE2b-256 checksum
How to use checksums
87974465a501d456e6fa78081e517877948601ae24e6d9a94c60520212580fa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Size 4.0 MB
Tags Linux glibc 2.28+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
e83a579caa1cc6763103aa95c6dbfff6adcc586e8b66a1c55a2a07ea362e62cf
BLAKE2b-256 checksum
How to use checksums
746f3b688522b4cf000a0c790c05ac962ff2ac3c6eac171af67c48f5884a8e1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Size 3.7 MB
Tags Linux glibc 2.28+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
14cbae9d5e81bdb28e5385115b687f2b3428789ec75d7c7e2ee76db307910acf
BLAKE2b-256 checksum
How to use checksums
24d50f1fd8c4b265fe93002dd8391894be94fc342c4e295f486b8d3cd97b396a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a116c95db75c9da0eabdb9efabfd9a89a7888df0ca8b83183dac9beca06fec79
BLAKE2b-256 checksum
How to use checksums
135165c0222e2f7d44f551a963a79e4e602479d0bf91f4de1e90059b686019ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp315-cp315t-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c054271e06176066fa6d7217b78d4cce0534d76397d18f0dec5b4fb95df9995b
BLAKE2b-256 checksum
How to use checksums
d91f1d5764c2659201cd7f80d0a83c310f0e416c7d811d360f0ff123abdc688b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp315-cp315t-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp315-cp315t-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
5881017769b22424d9f3e8831ee9c406d80a6c02831e0e3079b8cb9e15977cb1
BLAKE2b-256 checksum
How to use checksums
c2d10dde4f1b1656d30bb30c598fbf92f5c04c8e4762d5eefdfa492c6425f78b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp315-cp315-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1c959f03511fc5e46fab43b3d88957043f9e58c7bf481385a4c49828c386a863
BLAKE2b-256 checksum
How to use checksums
fba2b0b8e1afd104ea9ab741b31595e4cac76eb6cdb804521aa1198ef7622239
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp315-cp315-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp315-cp315-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
a8fc345ec8fc8c979f86f0a2f1d6492d874a6db9e912c38214030fb2806186e9
BLAKE2b-256 checksum
How to use checksums
03223447b4e6a35343131dc9bd7aaa1f0be3dc9d64c8efec350bda7dc7571976
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 4.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3ffd72f1c0a43fd063022da4361cb746202af696d7bcffc0fc62fe7b725c2189
BLAKE2b-256 checksum
How to use checksums
e46bad59a473041aef08ec1da0139c9ce87caa532162530d4b9766666858278d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-cp314-cp314t-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
350ae3979b834a9fbd031acb1f88e29307351802c34c0e91c1f28ccc34ef5622
BLAKE2b-256 checksum
How to use checksums
dec8d1c0428c1ec88f59214e9207cd6f2c1a7e3ba901f9925b334bbb7f6697d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
abb9cd26f3743c673ed13fc4fe2ad44aa024af2e851922facbbeab45848d68bc
BLAKE2b-256 checksum
How to use checksums
ec21be7449a236721488ece7c91dbc055ab095f0cbc91e181467b1401febf62f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
482b2cbf50915ce22fb83692cea26d6d1f6c90f7fbd459e715e69f9a6c4b4d92
BLAKE2b-256 checksum
How to use checksums
eff0f4ad61b49bddd981d890ca9b787bc1e148436369e2d349e3ca7c2e3c9237
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e88647eb9b37c358605726d46a38e0461e58fe16d0120b470a40663966a4a55a
BLAKE2b-256 checksum
How to use checksums
8ed17fb48b23943f49c7c85d1a8c319b48dea7d8af75298bbd26c1c73e94d4cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-cp314-cp314t-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
551dd8b2324da0cad9cfb044055a4efca0732d0f39c8ed4a80e77ada3521fee5
BLAKE2b-256 checksum
How to use checksums
6c73fd2ca3c4fa19d02b49f97668331ffc04c976da47adab2888a4ca7eca5509
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-cp314-cp314t-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ca5f3e8f5587cb9a3ff348bf57ae427be94e0dafbcf326ec898e95e1fc6c7ee8
BLAKE2b-256 checksum
How to use checksums
647b69bd815dbf17aea4995949bf2dac17fdb04d0b816f329d1ff722f9894f68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp314-cp314t-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
bc5480792fe37b6879699e6cce0a3cf25d6f74afc28511df3c9b2a986845fd10
BLAKE2b-256 checksum
How to use checksums
57d2c7c99979d12f3278b8c5fc2e06eace3aae6ac74ea766c14830ac3c219feb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-cp314-cp314t-manylinux_2_28_armv7l.whl
Size 3.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
24631b2287ee03f0d05b136b1cc5794c0fd9bfcf5f33d3d4bbccd371c4fc4a6b
BLAKE2b-256 checksum
How to use checksums
c7eeb869c00fd7b6202db37f15e278646b3cf382a88b00d4b88dce50195acbaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c78cc963ff418f97185647fd2eee695ecacff54fc06302a12b75b5ff1a6e8e69
BLAKE2b-256 checksum
How to use checksums
f099b3bcb60f535a6ce1ea0de60165199ddbf8ee5d4b16e7975bd26c0012d7b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-win_arm64.whl

Download URL rqx-0.1.4-cp314-cp314-win_arm64.whl
Size 3.4 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
552e01c284f84335bdf47f068cea4a463a23a34ebe8e0520fffa3c0c13389930
BLAKE2b-256 checksum
How to use checksums
64118258b5d82f2504dbc8f90fce6081176796498d8d6c966942d76a58c3afc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-win_amd64.whl

Download URL rqx-0.1.4-cp314-cp314-win_amd64.whl
Size 3.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
717140892c2aed516894df53e455b1edeecf4b9be5edf0177532fd68f26826a4
BLAKE2b-256 checksum
How to use checksums
e39449cbca4d6eefbc76c59cba71ef862eb8569d1106637ee4754744a6f55679
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Size 4.4 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5048eb254637b12e6a52dc6cedf6be6a424ab064d9ff56b31614f63f1ca67a69
BLAKE2b-256 checksum
How to use checksums
75807da8b28f049aeba4dbfcb39394868498bd592e3068c4ac79e9beb4b0a151
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-cp314-cp314-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
53970ccd017a09e40c649a81bf61f8bfe710161f9262495659210d796cca8b85
BLAKE2b-256 checksum
How to use checksums
a798bbb0ed566841ba707f5f0c7fc5b73b369814452dbd12a39e8822b04949db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-cp314-cp314-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
887f3769e5aa75fb16c3696589301a6a53bbaa27a8511b9c2b7301cd6680d477
BLAKE2b-256 checksum
How to use checksums
e7ec18e07fd6b89f19a7d520dfa42d8b8284e88904f325b7acc3ae986e36643f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7b4da8307c8666a8ffa6b75b9237010ec0ac9ce65d5a6966acc2442a2ff2d163
BLAKE2b-256 checksum
How to use checksums
bd4b8df96c4277c56e0d10a37e36d6f09061e2855772443675a6299c7bc0bd45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2cc60195e4e637bdb2c0351cd14ef227f13d4940eb224987253d3fb5c8d06cb8
BLAKE2b-256 checksum
How to use checksums
46677995e2332709b67204146460e9c6fbd464b6406bbc88d69986de853b0cb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-cp314-cp314-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.14 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
0c0a425064bd4bc146ac21be251353e93c73250476bbbee9549ae5759d99e988
BLAKE2b-256 checksum
How to use checksums
ea213aa0f556815d2bc232647ff8a516b7025bf48d22435f812f67a1a907595a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-cp314-cp314-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.14 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
57dbe78b34d593dc1b9d57d2804fc0c7024ad0af45d9f252c82667233aa93ca7
BLAKE2b-256 checksum
How to use checksums
ed51fb6720ab876759d6a97416e16a9de9975747f6966a878b1a3dbf8bc84ce8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp314-cp314-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
8feaabf3a530e2e16de1690ac0008d7eb1642ac629eeca9fdd33d74bf01d7bbd
BLAKE2b-256 checksum
How to use checksums
929a17b8dd548d05a4f267cd126d78ffd9cd6b1c7adcbdcc61eb25feb8400eef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-cp314-cp314-manylinux_2_28_armv7l.whl
Size 3.6 MB
Tags CPython 3.14 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
61ddfa535ff73b7ffc8d897b377d633aa07962aa51a20df72be3a146664407b2
BLAKE2b-256 checksum
How to use checksums
cb8774dc3d8d7cd0909fc0b0baab1d00cf7f857b8a5ac8c944cf8b4e141193aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5941a2fc5bb138cb9afec7048188634087ddbd2d00120a555607f46053f7f42a
BLAKE2b-256 checksum
How to use checksums
69ed4dcbbc80356bf8897442bac58cc9fe5d4ac1b8dddbea79891a428e7f0361
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-macosx_11_0_arm64.whl

Download URL rqx-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Size 3.7 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
20dc69bc0abd183ac01b93e171a64aad318c3d84eee878484d492ee5e83b6385
BLAKE2b-256 checksum
How to use checksums
f0630e48d9412512ef710e70286ff61c161c65aa955a80ce20081c18ecdc80e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl

Download URL rqx-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Size 3.9 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
9fdd1589166d8a501f82b73782285a560d4907eb18feceae03165d359f538089
BLAKE2b-256 checksum
How to use checksums
ba5b007c39db7cbfe1efd06b6a40bfd8b7f694e2b7e8437ea465ae5725cc6250
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-win_arm64.whl

Download URL rqx-0.1.4-cp313-cp313-win_arm64.whl
Size 3.4 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
9cacb4c7278974e28483f3d6acd57a7eb7dfe7083670e82e90ade462241f198f
BLAKE2b-256 checksum
How to use checksums
853803929ac43d2f531c4000a61f15461912802bef67a5075e26def9ce4125ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-win_amd64.whl

Download URL rqx-0.1.4-cp313-cp313-win_amd64.whl
Size 3.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
9e63ed9ec384073d7819479632348ef8077def310f87e548d04fe58868998ba7
BLAKE2b-256 checksum
How to use checksums
51ea6876cfd234f39bda698d9cf1bf3d6a5c32337fa17fc225b5f781c66b50fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-win32.whl

Download URL rqx-0.1.4-cp313-cp313-win32.whl
Size 2.8 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
e2ea3dfc3b1b8ca322255403aae92cbd5c4ae288e0d31c0482308c5c657021c3
BLAKE2b-256 checksum
How to use checksums
865fd8907b3aa51077534ea7c75f61a0a1817a79f579e6450a5d7b3ddd58a822
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Size 4.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cd4bb071fc981d7e3123cbdde9b8bf27666614b3860a7ffd70a2843aeae8a9b4
BLAKE2b-256 checksum
How to use checksums
df6d806720b9d326909dc54659a6fb197d3f30445b9fe09408c060ebeb0a3647
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b41494c3a72710a1101e54bb5dc6fd6e1a1e4f08efc2605b414064a070487b37
BLAKE2b-256 checksum
How to use checksums
2dd359962ca1ee3f794a244938443cc6925f6a21ef9d5f4254f7f4fbeec5ab20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
65430ab22886d9c8ab2db21c76b1d19e9c8607d5e5261db6bae8cfa7626009cf
BLAKE2b-256 checksum
How to use checksums
f4436ae14ceba1003f37c11fbe85e1e4ac950ba87f73cb01801c02231a803f39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
27a86a9541c4ea9a41df73aa060751aeaf671155bbbae0ae7c6ed0cfee55ebde
BLAKE2b-256 checksum
How to use checksums
b6aaf52eb6edc7ba4791bde7b930b5df422afda037ae6666c221deb7023c82ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4e497c02a4b21f300358d15785eaaca983973634104245c29b554242e0692b2b
BLAKE2b-256 checksum
How to use checksums
ab8c4923829518e93ff064cfbe13730978f76c8b01c19971af18064c201376d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-cp313-cp313-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.13 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
110a13c11a2da01e25415a124f6d01b33e5794123d642aa933f1c6a1a4c5c74e
BLAKE2b-256 checksum
How to use checksums
f3a84605be42ead3cb5fde7eec4a10fd5a4738f184754d5116ce36f4eca6f8fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-cp313-cp313-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.13 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
20058da824ffb61dc2df09a2ea0c800a30a2a238468f7cadc06a23a176580435
BLAKE2b-256 checksum
How to use checksums
109e7c5128a9c9aabf8941cc9a3ce69eb581bdd6a7bd1a1535ba1e3b9adb8544
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp313-cp313-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
cd594e853df5353b74636e853d9363baf811aa0fba8448f571a8c2c1c467db05
BLAKE2b-256 checksum
How to use checksums
05d84b76bd8f1b6cfe5ba8680a7ba49c65c2188488df40fbe96fa96596d6e4a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-cp313-cp313-manylinux_2_28_armv7l.whl
Size 3.6 MB
Tags CPython 3.13 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
e2f703493a248a37a12289ed8d8f6e115448954da581fc7bf7d4d954b4c83f76
BLAKE2b-256 checksum
How to use checksums
1496d98c9dd764fdb2c5393e9bfe6f0456bbe092c4f7ef17d165c0d19529da8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
328c2f94f70d3e3791670b7e09e48b49b852507c7e44dd6b16fda434fba705c3
BLAKE2b-256 checksum
How to use checksums
754543b19041257aa1dd36bb2028f22e93173ef9cfdc98b7d53157bfc255cd0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL rqx-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Size 3.7 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cbd8d66c7c8270ead1e0c067a0434ffb597ca13642a73ca65fa3707dac6f0180
BLAKE2b-256 checksum
How to use checksums
551d91e0e1c898b3f1ce10caf7331fa2b42378e65b8f1696ab5d8c3be1254c53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl

Download URL rqx-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Size 3.9 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
c4ad9fc240b453030b224fa41e88112f332c875d6397bec058b7c92c64c017ef
BLAKE2b-256 checksum
How to use checksums
07934111738cf1537aca04dda530cbe99a5174344092e57a43277d3e0e2424c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-win_arm64.whl

Download URL rqx-0.1.4-cp312-cp312-win_arm64.whl
Size 3.4 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
b3ec79a105450bfd34128759f1da3915e7d908d45633c1e970273528949b52ef
BLAKE2b-256 checksum
How to use checksums
3ca94a315938a221b1b6ddbb80a336eeba69a1a8856af5962a666018a02cb220
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-win_amd64.whl

Download URL rqx-0.1.4-cp312-cp312-win_amd64.whl
Size 3.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
987be33c76c6635d187223aadeef5159ed7daf1e4882489c1177d97a469ee199
BLAKE2b-256 checksum
How to use checksums
9c4add9efed9e04e665d9ef5cd4bccc3466d5b77ee8a468e4bfc810aeef98b4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Size 4.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
623f3988cbc3e6e18bc8f0f9bb53434b4b980d7528e380a36e47c940563a1b5a
BLAKE2b-256 checksum
How to use checksums
931f0b287e15d410ce53375893e98a7b92c1f1ec935ef60a7363ea7ca09989db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
6e38bd515f80551669e238fcd2101847be4e49fdb8938a026c0877feb8e03719
BLAKE2b-256 checksum
How to use checksums
aa0f54c445f7a2c77d1e2ee9d8392664b82a58af4ac5b487e588cc6b7e63c05f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7e814aba0aaf8a1d7fcfb3c89872ed58ede04540820b1e2fe98a67be01b6c1c5
BLAKE2b-256 checksum
How to use checksums
fa2623f763e1ba1bee0995d0ab198177ecc3d60c79e16a827790326679840a8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
018c6d9d6139d6708add60f23fd2dc323741a4554881c61698f561107d34ab28
BLAKE2b-256 checksum
How to use checksums
c883950c079884db7954880facc4f07313fe7f3a2122ab71d0a1ddfb436028c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7bb30a2e9af27798da6ecd157062b16f80735650dbb69459df4570105ed057cb
BLAKE2b-256 checksum
How to use checksums
76c7b37fea540bc362f7114fba57cdf2c03b23a1e8674203f50dfddae8b42601
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-cp312-cp312-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.12 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
46c8a374785e36e4e4b888f648832081b98b1a13d3e893a1786f3801b15ff679
BLAKE2b-256 checksum
How to use checksums
37d02dd1897137d5d989b9c3e316a07fcf0d94da0dc03fff9a3903a225a5d77d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-cp312-cp312-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.12 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f0cb6bb3124d1f3fd1f58dfe58b3e95c1c1e038ec56f369d4494560d99ae7f00
BLAKE2b-256 checksum
How to use checksums
7546d3af3481175c019c6abb1e049d9cf86fc110f7374780bb876d52ee30b2e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp312-cp312-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
fb780cf67d18878b961e594dc4d7e8157d38d415fc724354cbb6e0846c233179
BLAKE2b-256 checksum
How to use checksums
f39c4e0213c0fb4b0e0e5c990b1b2611c2dd04ef256edd2ec3caaa029ced4838
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-cp312-cp312-manylinux_2_28_armv7l.whl
Size 3.6 MB
Tags CPython 3.12 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
9afabd5b3b35f4ad799b3bcdd3982b2879854967de119da083150cde5c323145
BLAKE2b-256 checksum
How to use checksums
a301c858c1cb1056bf2fb1398b75bbb7d4a9f94a198dc648e9f916679d1d8f99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4884543c4226a79d05a2ad4adb71fa8ab945377328ca1a3775be43d0e015a598
BLAKE2b-256 checksum
How to use checksums
82ff567d43f9e5ebcdaac61f1f6b2f392d2d545c1d4e1e84cee30693949a6e0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL rqx-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Size 3.7 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
19f05498dd2f9e99aef69f2c106ba27605051a7de3214322f80328d3f22426bc
BLAKE2b-256 checksum
How to use checksums
7899e333b13c1c4ba12a60c9e2e9ba16b7e409ce20767749e6e139d67bd06ba4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl

Download URL rqx-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Size 3.9 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
498e489a98dca91723398f2da67e175ffddd60f07c12ac564a0bcc65b4553fb1
BLAKE2b-256 checksum
How to use checksums
9ab11e980ebd57accece9d6683b421cc6d85a7c55ca81db8d70b861da407bf3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-win_amd64.whl

Download URL rqx-0.1.4-cp311-cp311-win_amd64.whl
Size 3.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5f2e58e2d4caf575dcc35d59942f3d13d82c5dac6bc3cb3b5df16d7e7260328b
BLAKE2b-256 checksum
How to use checksums
2ce44cc69266bf8ac34e751923b1fb274bcab50388c220acb8bda6b25b1d0b2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Size 4.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
30bfdd698a1b653c58682e9ed0115db343db05fadc146f0ffd0094aec297abcc
BLAKE2b-256 checksum
How to use checksums
312091d58a5bf709c319d8eaadad1355e6c1ba1bb5f5a4f8e7523306d235509b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0209af0083756900f2d7ae4476794bd89f82f350fda90b3d0d698bda1d9768e2
BLAKE2b-256 checksum
How to use checksums
2aedc57b1efab53bfb76a8f6b9b5b337651aef81cacb5461784321d77bcc73ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
f18fb8ab5a232e9c46ea9a3d79f9804d971ae173a51dbd0433defe70d848ecfe
BLAKE2b-256 checksum
How to use checksums
ef63ac83120c34f37fb190ce0de6fd00a9ded900c2f4939f8e78e5f2b0bf5732
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bc30070721ac1495a58cf7906b3df877f2199cb33b7560bac46f317899e72c54
BLAKE2b-256 checksum
How to use checksums
9e820060009eed33c821f79eec979119ead0ab702432a1f973fe91475cf20834
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
28b64b5d46e225083eee689ef5dc8e08499e7251d024022c0d9fcde54254d364
BLAKE2b-256 checksum
How to use checksums
2ab5198afc8600169faae840c8f8583d41415ecc8d6b50794b1bf6d40a0f841f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-cp311-cp311-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.11 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
3bff1cfb610d928848ec935db96c232255e35d2fd42ba04f3e00a7b6e285d8e7
BLAKE2b-256 checksum
How to use checksums
7d18dffbc657c857f5563983026021bb1bfe29d784e2058a8946c4214e88292b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-cp311-cp311-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.11 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2936dab87f66c1579977c3f95c044c9f06add2df9451f300be8d6b4464fe2ebf
BLAKE2b-256 checksum
How to use checksums
a94d3e7fd881b6ac7de737c9cc32eae3770d9df2133cd6cf00d707ec0a599d39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp311-cp311-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
8b17a31a2b88362b4bc5b9d97da1c56423e8eaafe52bbbff63efd6f526eb5240
BLAKE2b-256 checksum
How to use checksums
7055670a7ca4f7899fe0bbaa7e445eff106d86825a84a2d1d816bfe2fc18b55d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-cp311-cp311-manylinux_2_28_armv7l.whl
Size 3.7 MB
Tags CPython 3.11 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
3378343f67262ec7d88dae17a49c8b798d0304c15946efdee3fb0f411bacad98
BLAKE2b-256 checksum
How to use checksums
a30876cd0da7ca6a652882b2d8a387b4dd13e5ca5ccbaeb87c563d5688b97f2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4c6484bfd55636993e62faaaa51162f1aa9f81acf6fdb43061bb20923ab43fe7
BLAKE2b-256 checksum
How to use checksums
2b1910d416c168173b26b5d20df391f2f8b762730140d54f8328d53b0c657cc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL rqx-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Size 3.7 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a1fd818fdd310869136dc5d5a5d0c9de63f94591f59549a049b174739ee613bd
BLAKE2b-256 checksum
How to use checksums
f2d59161a9cdf130ece723d512774a26f8496d9b1ee75e463adbc58d23e473dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl

Download URL rqx-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Size 3.8 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
69b603226e237c7fb7ebd1b690ee707b55357ace94059229d328ba23797c3196
BLAKE2b-256 checksum
How to use checksums
79b114dd5f14c919f8e3b25838c8aacf16607517399cf4635adfbb276a63a174
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-win_amd64.whl

Download URL rqx-0.1.4-cp310-cp310-win_amd64.whl
Size 3.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
801876c986c7683de6eed4bb78d696de19bb69accb48069c6e2ee54839725d81
BLAKE2b-256 checksum
How to use checksums
e23dafe6be589baf12c1fb165b9345c600230924631c0142687c3807d781fafb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Size 4.4 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
67458775f84ebaaab7a1bf59b74252d53dfa56b2139525f815ca495fc0675d52
BLAKE2b-256 checksum
How to use checksums
7d7118a4be606b550f8b299126c0722940b0ab0edba8fd87a4210a1f46b68ded
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
06c33c3fff5626799a835c3ef7784c52ebca2de1f1a1994294a086e4b3de253c
BLAKE2b-256 checksum
How to use checksums
534c5b990c65acb3fcfbbcabe97e7e8cd5adc9b3d3cb3d881ba1b25d4c6b6d7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ce023e1a45bb85f1fa09f0af68912dda3b5021c41930fc74821aa05ba8f9caeb
BLAKE2b-256 checksum
How to use checksums
c19ffa9d64ed555580fc306a32a65ae425aaf8ac918e2e4ba1d6d2deb5c50757
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4e826fdbaa812577c457b2066d8b9141978fe65bb46644776ba067656bda783a
BLAKE2b-256 checksum
How to use checksums
045a33606d960842f84c7c9c15bf1868202ed5ef5b52eb413ae44a6797f130a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
71f4e45bd0529e3258f45568b0eec633286c92b86839087eded69ec8c12cb58e
BLAKE2b-256 checksum
How to use checksums
f9a132d60bf6ccd3965d1e7b8cb0368b6e198be2af132dc98a82e217a6c2d5e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-cp310-cp310-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.10 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
16d6fbc8ced039d740ed688dbc186cb15ddf20c92901065b7721a3b82955db60
BLAKE2b-256 checksum
How to use checksums
7a6f76791dc3d95149adfa890c6457762eb67d112a52b1e1970d1029d86e6525
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-cp310-cp310-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.10 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
29b1520ce9d30272c4b6b4f1fee5a8014eacc85d34d59dcc37ac58dec742f1ea
BLAKE2b-256 checksum
How to use checksums
b2dd239499593f9fe21e6b665fe72eb72e73bac48d5620b883332106a0c271b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp310-cp310-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
87f57728052f3bbc92d28d4451e38a15816dced25fb8b24298605635460dbb2d
BLAKE2b-256 checksum
How to use checksums
47d0b3c924b13545454d0c46878e3fb0cbd4d85bbf71e5883a9a3c72f77bef43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-cp310-cp310-manylinux_2_28_armv7l.whl
Size 3.6 MB
Tags CPython 3.10 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
29489f88d43215d820bd64da5a0a392fe80ca088023bc853d570dd82839d04b3
BLAKE2b-256 checksum
How to use checksums
df62a3f5cd404b9fbfde46518e835bf32eb93cea18579ae121d3fce108b077b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7bc23ad16e75236a709e90c1f3f0fd54e2bb7ca0e144665937e3c885533b870e
BLAKE2b-256 checksum
How to use checksums
a120e69b17cdc769744b1ef17c52f4e4d0f1ee9d25fc345863705cf527989cd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Size 4.5 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
056a73c7f76ba324038572c4b5f4ebcfb6294eb7f905b10a660687c6b6739cde
BLAKE2b-256 checksum
How to use checksums
24bbf7c0437ae878923119680fb21146bc9b673499618bd8df4b40d11c8c770d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
f801930428b115d1dd6a54dfcab7050c854dcae18db320b29713899a72f5d7fd
BLAKE2b-256 checksum
How to use checksums
52248603def7731d5a9be02ddda869d022185827d5d53e42291a27efcc8a377d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
1c5419780551427b09891fb74027eb6b2fdef390a39e91b0d2d0253c2e6eabf5
BLAKE2b-256 checksum
How to use checksums
2db4c2fc88037917d8ac49d66dd3b96b203ae2b6828a62b29afbe1b6453a1524
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8cbc856221caf932878b21727f82c637135575cc0f72307e9e872d989251c40b
BLAKE2b-256 checksum
How to use checksums
8027ffbcb810961c59d72fd7dbbc43de2fece41a9884412560c838fc3fe02c3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL rqx-0.1.4-cp39-cp39-manylinux_2_28_x86_64.whl
Size 4.1 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1eeab8b2bf351001a6d42100bf7ce9ea374d31d428c14c82f242afcce64206df
BLAKE2b-256 checksum
How to use checksums
f9e53ba75f676b5d692fecc8a335eea305d49936e1cf3e845bd6149416aeb3ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-cp39-cp39-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.9 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
cb88805b41206cca4637065ef25f9d65aad84d88b12c101fb1a3a46d7409655a
BLAKE2b-256 checksum
How to use checksums
c06eaf3a5472e0b3d164ffbe06b4136c186c96ef1738667fa736b20fe7d8115b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-cp39-cp39-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.9 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e3520a1173e9b0e005da00bbda9f67e5ef74098ca5019150dcec646d36cec597
BLAKE2b-256 checksum
How to use checksums
936b96b5f2a13a33658cfc8b605fb396b8c7f57184b7f3ee1e4b7473212e756d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-manylinux_2_28_i686.whl

Download URL rqx-0.1.4-cp39-cp39-manylinux_2_28_i686.whl
Size 4.0 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
a2865581b728dee3b6a90bd60c611e4e5390652e651de72cd07147e7c649a537
BLAKE2b-256 checksum
How to use checksums
13f960c35be00345a64801e91faa58011a16a59b5413912f42924bc14add0d6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-cp39-cp39-manylinux_2_28_armv7l.whl
Size 3.7 MB
Tags CPython 3.9 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
88cc3a57781e1d413904383484bc4dd5934588d06f888e3e64a9b247e1e12ea4
BLAKE2b-256 checksum
How to use checksums
09d0701c63a83b7e192fe225815bbd9007550c0cc0977243e06619d859588d68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-cp39-cp39-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
adecaf7f1b72181ec19b89d20144c9d6204790b2f615f9f6a04dc7da8334baaf
BLAKE2b-256 checksum
How to use checksums
b814300058fa75d907443a7c283183e0a84a12b849c8a8c4c88a2399b1fd6d5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL rqx-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Size 4.5 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b38ae2eb30a43b250167dfab79742cc94d64c00c29b03101044a29b53f118c20
BLAKE2b-256 checksum
How to use checksums
1eef5869a0830785a7afed7a3cf63ecdc9c0cbfe669f483368972d7dc2c8af77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp38-cp38-musllinux_1_2_i686.whl

Download URL rqx-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
fb3e6f7f406ec85f626e82a0fe285ab08c56a9a8cfc39441b6c47b2dce36a72f
BLAKE2b-256 checksum
How to use checksums
334c43a8f480b48a6778d2e5d0ba0f3bc9bd8a7ff77b7a1fb5121fe9175d6bca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL rqx-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Size 3.8 MB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2b271873c79c6e35ca4048a13e7e8ff1956e5eb235a7b7b9443499f24906388d
BLAKE2b-256 checksum
How to use checksums
6312fececd8dd6a196cacf9f45e028350a2f7a1c2886981ddf63040647c550dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL rqx-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Size 4.3 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3f5ec10e67e9164fdf424babe592388ad050590a5cffd8d4bf1d9d938c076d9d
BLAKE2b-256 checksum
How to use checksums
d019f422631f62debb4e0862aeca7414604c8b2b2cbdddb29535dffd7f6915ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp38-cp38-manylinux_2_28_s390x.whl

Download URL rqx-0.1.4-cp38-cp38-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.8 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
1487a8f0a10a23740696f14fff48f4d7021934e46316f5ae618aa4f7e86e5a0b
BLAKE2b-256 checksum
How to use checksums
ddb966f2f5dda530101a28149fd2fa018fa7e02cfc30bb9e6636c368d693b1ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp38-cp38-manylinux_2_28_ppc64le.whl

Download URL rqx-0.1.4-cp38-cp38-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.8 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
765752252687d1edf49257a6b90a0c78770b2ee8c762a80e34496fb6ddf83ff1
BLAKE2b-256 checksum
How to use checksums
d18f52c4c37b6f69ffcc033e6dd74ad089894aab55fef6986f551425816e7483
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp38-cp38-manylinux_2_28_armv7l.whl

Download URL rqx-0.1.4-cp38-cp38-manylinux_2_28_armv7l.whl
Size 3.7 MB
Tags CPython 3.8 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
95de1804355aa2cdc28e69f59e897bb5348c6ec97f4928ada17e33dbcad2ac1e
BLAKE2b-256 checksum
How to use checksums
ed5b10b09e38ea8f849a55df79f7002b8960e71fd7b2e3424e4b76a2f4cf3328
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / rqx-0.1.4-cp38-cp38-manylinux_2_28_aarch64.whl

Download URL rqx-0.1.4-cp38-cp38-manylinux_2_28_aarch64.whl
Size 4.1 MB
Tags CPython 3.8 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
26613153b1b623efb4ae39ba964f9b77dce7b861a4a094c3ecd2611cd7a8ecee
BLAKE2b-256 checksum
How to use checksums
c00ea1a56eafeb02ed212b13a0f4d8cdb3f8a7370acf2b0618f66a44a9402361
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.4 This release

110 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page