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.2.0/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.2.0 run (2026-09-12). Full methodology, per-concurrency tables, and limitations: benchmarks/0.2.0/report.md. Earlier runs are kept at benchmarks/0.1.5/report.md, benchmarks/0.1.4/report.md, benchmarks/0.1.3/report.md, and docs/launch_report.md for comparison.
httpx is the modern successor to requests, aiohttp is the de-facto async HTTP library, and httpr is another Rust-backed alternative.
Status
0.2.0, 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.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rqx-0.2.0.tar.gz | 1.1 MB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| rqx-0.2.0-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.2.0-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.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl | PyPy 3.11 | PyPy 3.11 7.3 | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl | PyPy 3.11 | PyPy 3.11 7.3 | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-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.2.0-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.2.0-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.2.0-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.2.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl | PyPy 3.11 | PyPy 3.11 7.3 | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl | PyPy 3.11 | PyPy 3.11 7.3 | Linux glibc 2.28+ ARM64 | Details |
| rqx-0.2.0-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.2.0-cp315-cp315t-manylinux_2_28_i686.whl | CPython 3.15 | CPython 3.15 free-threading | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-cp315-cp315-manylinux_2_28_x86_64.whl | CPython 3.15 | CPython 3.15 | Linux glibc 2.28+ x86-64 | Details |
| rqx-0.2.0-cp315-cp315-manylinux_2_28_i686.whl | CPython 3.15 | CPython 3.15 | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-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.2.0-cp314-cp314t-musllinux_1_2_i686.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ x86-32 | Details |
| rqx-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-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.2.0-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.2.0-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.2.0-cp314-cp314t-manylinux_2_28_i686.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-cp314-cp314t-manylinux_2_28_armv7l.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ ARM64 | Details |
| rqx-0.2.0-cp314-cp314-win_arm64.whl | CPython 3.14 | CPython 3.14 | Windows ARM64 | Details |
| rqx-0.2.0-cp314-cp314-win_amd64.whl | CPython 3.14 | CPython 3.14 | Windows x86-64 | Details |
| rqx-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl | CPython 3.14 | CPython 3.14 | Linux musl 1.2+ x86-64 | Details |
| rqx-0.2.0-cp314-cp314-musllinux_1_2_i686.whl | CPython 3.14 | CPython 3.14 | Linux musl 1.2+ x86-32 | Details |
| rqx-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl | CPython 3.14 | CPython 3.14 | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl | CPython 3.14 | CPython 3.14 | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ x86-64 | Details |
| rqx-0.2.0-cp314-cp314-manylinux_2_28_s390x.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ IBM System/390x | Details |
| rqx-0.2.0-cp314-cp314-manylinux_2_28_ppc64le.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ PowerPC 64-le | Details |
| rqx-0.2.0-cp314-cp314-manylinux_2_28_i686.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-cp314-cp314-manylinux_2_28_armv7l.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ ARM64 | Details |
| rqx-0.2.0-cp314-cp314-macosx_11_0_arm64.whl | CPython 3.14 | CPython 3.14 | macOS 11.0+ ARM64 | Details |
| rqx-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl | CPython 3.14 | CPython 3.14 | macOS 10.12+ x86-64 | Details |
| rqx-0.2.0-cp313-cp313-win_arm64.whl | CPython 3.13 | CPython 3.13 | Windows ARM64 | Details |
| rqx-0.2.0-cp313-cp313-win_amd64.whl | CPython 3.13 | CPython 3.13 | Windows x86-64 | Details |
| rqx-0.2.0-cp313-cp313-win32.whl | CPython 3.13 | CPython 3.13 | Windows x86-32 | Details |
| rqx-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl | CPython 3.13 | CPython 3.13 | Linux musl 1.2+ x86-64 | Details |
| rqx-0.2.0-cp313-cp313-musllinux_1_2_i686.whl | CPython 3.13 | CPython 3.13 | Linux musl 1.2+ x86-32 | Details |
| rqx-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl | CPython 3.13 | CPython 3.13 | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl | CPython 3.13 | CPython 3.13 | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ x86-64 | Details |
| rqx-0.2.0-cp313-cp313-manylinux_2_28_s390x.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ IBM System/390x | Details |
| rqx-0.2.0-cp313-cp313-manylinux_2_28_ppc64le.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ PowerPC 64-le | Details |
| rqx-0.2.0-cp313-cp313-manylinux_2_28_i686.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-cp313-cp313-manylinux_2_28_armv7l.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ ARM64 | Details |
| rqx-0.2.0-cp313-cp313-macosx_11_0_arm64.whl | CPython 3.13 | CPython 3.13 | macOS 11.0+ ARM64 | Details |
| rqx-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl | CPython 3.13 | CPython 3.13 | macOS 10.12+ x86-64 | Details |
| rqx-0.2.0-cp312-cp312-win_arm64.whl | CPython 3.12 | CPython 3.12 | Windows ARM64 | Details |
| rqx-0.2.0-cp312-cp312-win_amd64.whl | CPython 3.12 | CPython 3.12 | Windows x86-64 | Details |
| rqx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux musl 1.2+ x86-64 | Details |
| rqx-0.2.0-cp312-cp312-musllinux_1_2_i686.whl | CPython 3.12 | CPython 3.12 | Linux musl 1.2+ x86-32 | Details |
| rqx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl | CPython 3.12 | CPython 3.12 | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl | CPython 3.12 | CPython 3.12 | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ x86-64 | Details |
| rqx-0.2.0-cp312-cp312-manylinux_2_28_s390x.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ IBM System/390x | Details |
| rqx-0.2.0-cp312-cp312-manylinux_2_28_ppc64le.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ PowerPC 64-le | Details |
| rqx-0.2.0-cp312-cp312-manylinux_2_28_i686.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-cp312-cp312-manylinux_2_28_armv7l.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ ARM64 | Details |
| rqx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl | CPython 3.12 | CPython 3.12 | macOS 11.0+ ARM64 | Details |
| rqx-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl | CPython 3.12 | CPython 3.12 | macOS 10.12+ x86-64 | Details |
| rqx-0.2.0-cp311-cp311-win_amd64.whl | CPython 3.11 | CPython 3.11 | Windows x86-64 | Details |
| rqx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl | CPython 3.11 | CPython 3.11 | Linux musl 1.2+ x86-64 | Details |
| rqx-0.2.0-cp311-cp311-musllinux_1_2_i686.whl | CPython 3.11 | CPython 3.11 | Linux musl 1.2+ x86-32 | Details |
| rqx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl | CPython 3.11 | CPython 3.11 | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl | CPython 3.11 | CPython 3.11 | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ x86-64 | Details |
| rqx-0.2.0-cp311-cp311-manylinux_2_28_s390x.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ IBM System/390x | Details |
| rqx-0.2.0-cp311-cp311-manylinux_2_28_ppc64le.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ PowerPC 64-le | Details |
| rqx-0.2.0-cp311-cp311-manylinux_2_28_i686.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-cp311-cp311-manylinux_2_28_armv7l.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ ARM64 | Details |
| rqx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl | CPython 3.11 | CPython 3.11 | macOS 11.0+ ARM64 | Details |
| rqx-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl | CPython 3.11 | CPython 3.11 | macOS 10.12+ x86-64 | Details |
| rqx-0.2.0-cp310-cp310-win_amd64.whl | CPython 3.10 | CPython 3.10 | Windows x86-64 | Details |
| rqx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl | CPython 3.10 | CPython 3.10 | Linux musl 1.2+ x86-64 | Details |
| rqx-0.2.0-cp310-cp310-musllinux_1_2_i686.whl | CPython 3.10 | CPython 3.10 | Linux musl 1.2+ x86-32 | Details |
| rqx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl | CPython 3.10 | CPython 3.10 | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl | CPython 3.10 | CPython 3.10 | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ x86-64 | Details |
| rqx-0.2.0-cp310-cp310-manylinux_2_28_s390x.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ IBM System/390x | Details |
| rqx-0.2.0-cp310-cp310-manylinux_2_28_ppc64le.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ PowerPC 64-le | Details |
| rqx-0.2.0-cp310-cp310-manylinux_2_28_i686.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-cp310-cp310-manylinux_2_28_armv7l.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ ARM64 | Details |
| rqx-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl | CPython 3.9 | CPython 3.9 | Linux musl 1.2+ x86-64 | Details |
| rqx-0.2.0-cp39-cp39-musllinux_1_2_i686.whl | CPython 3.9 | CPython 3.9 | Linux musl 1.2+ x86-32 | Details |
| rqx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl | CPython 3.9 | CPython 3.9 | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl | CPython 3.9 | CPython 3.9 | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.28+ x86-64 | Details |
| rqx-0.2.0-cp39-cp39-manylinux_2_28_s390x.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.28+ IBM System/390x | Details |
| rqx-0.2.0-cp39-cp39-manylinux_2_28_ppc64le.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.28+ PowerPC 64-le | Details |
| rqx-0.2.0-cp39-cp39-manylinux_2_28_i686.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.28+ x86-32 | Details |
| rqx-0.2.0-cp39-cp39-manylinux_2_28_armv7l.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.28+ ARM64 | Details |
| rqx-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl | CPython 3.8 | CPython 3.8 | Linux musl 1.2+ x86-64 | Details |
| rqx-0.2.0-cp38-cp38-musllinux_1_2_i686.whl | CPython 3.8 | CPython 3.8 | Linux musl 1.2+ x86-32 | Details |
| rqx-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl | CPython 3.8 | CPython 3.8 | Linux musl 1.2+ ARMv7l | Details |
| rqx-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl | CPython 3.8 | CPython 3.8 | Linux musl 1.2+ ARM64 | Details |
| rqx-0.2.0-cp38-cp38-manylinux_2_28_s390x.whl | CPython 3.8 | CPython 3.8 | Linux glibc 2.28+ IBM System/390x | Details |
| rqx-0.2.0-cp38-cp38-manylinux_2_28_ppc64le.whl | CPython 3.8 | CPython 3.8 | Linux glibc 2.28+ PowerPC 64-le | Details |
| rqx-0.2.0-cp38-cp38-manylinux_2_28_armv7l.whl | CPython 3.8 | CPython 3.8 | Linux glibc 2.28+ ARMv7l | Details |
| rqx-0.2.0-cp38-cp38-manylinux_2_28_aarch64.whl | CPython 3.8 | CPython 3.8 | Linux glibc 2.28+ ARM64 | Details |
Total release size: 438.1 MB
Release files / rqx-0.2.0.tar.gz
| Download URL | rqx-0.2.0.tar.gz |
|---|---|
| Size | 1.1 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5207d303d6af0eaeb0eb8bf77d517bd1d648ac263bdf2a30f75852318a8370fc
|
|
BLAKE2b-256 checksum How to use checksums |
a930241b45c09e17a6f8192bd1a29f14800c9c611915ae158f0c8b8185171995
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-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 |
cacd0b1de78f464f93788bf7e7185daf5f9e070b18341d7b96b0b5b64c0ecfa3
|
|
BLAKE2b-256 checksum How to use checksums |
e3704027b94c3298777e98a457a1108d947832c99d0314303d363a702bc31175
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
f0538adc9e2b03002cd3f2d014b04c611562f757ede2114f1830efa2f0a2b54e
|
|
BLAKE2b-256 checksum How to use checksums |
e2b945c573b4181447767c4793e0885b85f5bcbb6da922d1ac543a821ba8d6f4
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
1a72642faf13611f4e600fbc66de3d81d9e79e07a126269cde7cb309ec09da06
|
|
BLAKE2b-256 checksum How to use checksums |
11918c5fd56836102c181ccd04a57806865b8a8d2f0327456a76cd73899c7767
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
21024d094c2f51c831d6cf1e7dcf1ef45bbec62c1119a7a1afff0c27ae56b7c0
|
|
BLAKE2b-256 checksum How to use checksums |
2fc2e56a2a5a32ad8508d3406c56aa95eb1de65173a5c073ba510565290ba543
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
5da1994b6e23d89afeaed25db57ef94fa60489cde54ba9634a44fecf87f1ea77
|
|
BLAKE2b-256 checksum How to use checksums |
2547b5ecad4ae8f6f41544e1d24a3ef088d136602dc0938fa361eeae3d3e87fb
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl |
|---|---|
| Size | 3.8 MB |
| Tags | Linux glibc 2.28+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
bc4ee615852fbf680607d35382c1588f0038775719a92a2b627d265ab8555b49
|
|
BLAKE2b-256 checksum How to use checksums |
634a9527ff4fafaf8ddf0c8dbe70327f78e5f6044fc436e996bcbe2d8a034b7e
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.5 MB |
| Tags | Linux glibc 2.28+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
ebfd4fc6bae498d3ca32cafd9177d81223e4e6b1b600b6b1b3652df4da5fb216
|
|
BLAKE2b-256 checksum How to use checksums |
6bc9be0dfa6a09026d71b84948495526e66094e519b1ed8a6842c84d54b069b9
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
70406d3ff87e3adf3e748e00b2de9b670f71b48a831783b592b9c01d8f36ffb4
|
|
BLAKE2b-256 checksum How to use checksums |
029f0bc5826ab54761eeef71d17414ee041d247e994749b59d2d0dba01e55442
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-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 |
b2a4a6c1723ce0d887552aa8198723992ce918f0520a67c31d261d6e3246eb02
|
|
BLAKE2b-256 checksum How to use checksums |
475be0868cbe64f5eb671bba6119fc244d7e94752b8643d5370ba09e55a9cd39
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
77094a1297429de84693ba851305628d80fab9783fc12bd58fdb7d19c4075efa
|
|
BLAKE2b-256 checksum How to use checksums |
1f599185ae025ec9722348e8923e66976cc2639de3a286fa7f96fee0def3b40d
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
b6ad576590063d63a4ec1babbf6164440e2b87facc37ec35bdeadd49043a9a12
|
|
BLAKE2b-256 checksum How to use checksums |
013d1dd9e68099ad239af75daffafc9a27139c1014e3a48abdb5cb316bebabce
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp315-cp315t-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
58d89085eda4b433fe5f98ebfb26789ed2bb4a7722bf8c62fc5c626b608102c3
|
|
BLAKE2b-256 checksum How to use checksums |
e3d3e32a82574954781c241ff75ba0380eb941e29e3eb705aa5c867669c2f836
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp315-cp315-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
fa4e644b0ea53e09a2ba8ce4e32b051a400ca6c25f4591f5bd58c2801373a2d0
|
|
BLAKE2b-256 checksum How to use checksums |
7eef0b7283bd036d6e92f451178f64fd48d8b91100285392bf5c9b37568fe2d4
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp315-cp315-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
2116c7a89f9e182b0e07884ead968aae91928d13d2f4dd4f146c08531b0dcd60
|
|
BLAKE2b-256 checksum How to use checksums |
02aa6341ffc3a7b22b08ed03ffa4ec16c8c09c8d6b757d14753a7cb926fca9ce
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
20d4be8f52829185002a2b4ff147e7b8571b373b9de74f4ca58574d97a9482a7
|
|
BLAKE2b-256 checksum How to use checksums |
7e521d8c5baadc16474eff15c7bd3c611bbc39ea70c0833a47b47b9a8ec036dc
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
7649f03b574f3d9ae0e0f5b2cfaa238d47378d62e8ca6b334e5a210379d961b1
|
|
BLAKE2b-256 checksum How to use checksums |
892ef424fc71dc132a9fc8e23ed28f3ff5025ee19cffef9406517fb8496e16f1
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
af5853386d8d1d76751dcb3ace8c1bdb5578cc4c1ef62c04601d71d0149e65d4
|
|
BLAKE2b-256 checksum How to use checksums |
49c4d4456fc7e67f0e88cf0555d5369a5b5a6a7214e1d56b6d4741365002cfe5
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
28246b9006b83ad4e28d4af5d16f1f16bbffcc81ff2164f7757845c4c23b75c2
|
|
BLAKE2b-256 checksum How to use checksums |
5a3b60672e8c45645e5f13e786b29a43550a0cb35af3c56e632ee83f91a239e6
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
be05f2dd17835205a86db296dd4c442b3df98699975582ce6c26be6ca941f4da
|
|
BLAKE2b-256 checksum How to use checksums |
20013b963b93ce6bc1705983d86d4f2af2d61d1d613e767fa8c718b99367202f
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-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 |
6e54202fd93f60eb7e93e2bd8650da4c8d7c866cf144a9018ea5ae19fd8c5af3
|
|
BLAKE2b-256 checksum How to use checksums |
74efee1ba54974a0810622ac6b8c8db8ce8f7b195cb368e82179ed461ae75e5c
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-cp314-cp314t-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
1d29e1a076677bec5d9c0882f85a2293a5a4ec5b4755dc1ed97d40c94418f754
|
|
BLAKE2b-256 checksum How to use checksums |
15ee169441406d5ed99e03309125dd40ee15412c5fc6454d8bd4649a35987f38
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
5a76fee55e31351ae94eab91783e2dccb03d98f79d078c15202eae966afaa64c
|
|
BLAKE2b-256 checksum How to use checksums |
b89524b82e720656221888f97334aa6b13ede7b3c0aaa3945d7ec625cc79b6cc
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-cp314-cp314t-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
fcd79a75935f89ee49b2b6233deae0639712fe2d49928746d68ec83d0b9d39f6
|
|
BLAKE2b-256 checksum How to use checksums |
e4e907929e2006dd90bedde3339ee69b4c054b155f9eff7e2063c8e8408a603b
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
50ac2b7833962b99f4a8824a185a39faa09b7b3d191473d20cec4b2a9d7b5efe
|
|
BLAKE2b-256 checksum How to use checksums |
a0930f22f0f1e48b25d52c0329bb2f28d254b7f75ab12bfb8271007e62364408
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-win_arm64.whl
| Download URL | rqx-0.2.0-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
72f035763e335025f6b02e687702eb08ec545f95abda56505793ed51bf631b8e
|
|
BLAKE2b-256 checksum How to use checksums |
d569bc56adcdc17d0a7c10e0ded5132373f6c3c89f4bc8d6079d0a4654a52ed7
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-win_amd64.whl
| Download URL | rqx-0.2.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
b869c0c61370fab1f77d931b61d4342d3c536fa05a6a18a538bbd75636fdffdf
|
|
BLAKE2b-256 checksum How to use checksums |
b090b23cc22da96014187821930fea60214212af97d1dfec48e0e201f1dd469c
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
5f00e34994d82e5341c585ae769ef23b40e73553ef7403bfe1a9b3835de6129a
|
|
BLAKE2b-256 checksum How to use checksums |
074cbc558afabb0da20b2855b74a312346f347b4ed4797dcb486f5f7ef94d019
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
4e6193c64a5d0cd3c0758aee88037b02cde9622def6e5c0075fb2a71e614c1ee
|
|
BLAKE2b-256 checksum How to use checksums |
ad14aee93b5a1ab95870a114eab6da4b4d768afd811c8b89e2a88fd13feb5b83
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
3d919a6daec863c4261adbd22f2dcdc20d7982a435878e33ebb51cecc6a554c2
|
|
BLAKE2b-256 checksum How to use checksums |
f06a8943b09437221414f90f33858d952c63c2410b1098fd06030353b41ee9c7
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
ee7ac4500aa6931d620422acb361b52bdc48aba2d6fa210eb1c669000232f9e5
|
|
BLAKE2b-256 checksum How to use checksums |
96503cda0fcd8bd0e86e6db8709f8aae030054d0802e19080f13251b6735ee43
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
e0b7de27b1a84b225bcb7906543dd44dfaf9979a8dc6172161ce0155d783fecf
|
|
BLAKE2b-256 checksum How to use checksums |
e7bdc866eee95590205cae0095632b7fe022d27afbd735ea62ef2267041393db
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-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 |
de28017b55af8273ec8a48599a8de248a2eb2e8958ea93b67936ab44f7468cf7
|
|
BLAKE2b-256 checksum How to use checksums |
bc74003ba9d9b66da312fd0af5275a56b3643f8d5e3a6b6c4518fd667bb065a6
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-cp314-cp314-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.14 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
8e3421df6d532c8b09ff4dc2caf61a19f874a2f5f0e230fa2d60404730ddd909
|
|
BLAKE2b-256 checksum How to use checksums |
9bec766909e2ef53131fb45b0aef7dedc4d58828b0d038b3b2f66febeb8e9abc
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
6574ac2ccc78c9cba21c57a76edc7488808adbd90aa9f36d609565fc0816a9a2
|
|
BLAKE2b-256 checksum How to use checksums |
078749628c26569f73a800eb488333d566c2d57af613e6ad1c4d42181891a2ae
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-cp314-cp314-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.14 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
8f98c11f56f89fc393dd8f000df368d6922050af3dc6ac171a6180de5390ad31
|
|
BLAKE2b-256 checksum How to use checksums |
82836e5c1fcd9f6fc6862cbb4e160d2d13c8294e8857acd33b74426c662f7590
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
8f702cab714b1fe4f3bfc7115929f3ccbbd3421dcab6f5e0805995b6744c7b7c
|
|
BLAKE2b-256 checksum How to use checksums |
28d4904841beed3b6ee3d63dcee655172665281c55e389f9dbf6f407f3f8c7ea
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | rqx-0.2.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c45ca7dd460abdde60ec4f16c55fb9ed9e6c3be03363db653405ab338e37fd8e
|
|
BLAKE2b-256 checksum How to use checksums |
ae353b857de6ce36ae70b851446a263aced769e9fc7d3efdb98c72cdd775d380
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
| Download URL | rqx-0.2.0-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 |
7136526f4c36ba48ad1cb44da24cb46c1e74ce37243f22f8d621016c4456c1ca
|
|
BLAKE2b-256 checksum How to use checksums |
34c373a33e8e9945e3688b370a9057b7bbcfc4f5a3171cf4e6c43db44346d8d2
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-win_arm64.whl
| Download URL | rqx-0.2.0-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
9a78239eea12a40d8123fadfd187973e55f1a81d625e18c12727d4ad68887015
|
|
BLAKE2b-256 checksum How to use checksums |
6682474848aced0dd571902c5f1e3caaac8ba830efb8102422ca117f7634b9fb
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-win_amd64.whl
| Download URL | rqx-0.2.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
bc831c37cc26fb0e6418056c54750778a5708a191a062bf1f4a2bae3c0e22cd4
|
|
BLAKE2b-256 checksum How to use checksums |
a091cc1138fa3870e45a6a28fcaf038221e58ada757236c4a68c0892d37372f6
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-win32.whl
| Download URL | rqx-0.2.0-cp313-cp313-win32.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3f64a04c1b014254f48ab5e2ab180e08c44f6f91a9b348fa88aaf02dc465524e
|
|
BLAKE2b-256 checksum How to use checksums |
04062069b58ea813dd6bfb74e7467820c58d02a8f66eaa8c00436e9b9b52c6fb
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
6b99212908b2d17efdb14d8eb8932467d0026029441ed7f71b87e45780b6f6fb
|
|
BLAKE2b-256 checksum How to use checksums |
556a9ab4cbf62794f1b98c9c44cb867586ee02dee834844dce6488fdb6100dd4
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
a5db59b545d0d670d9c5d392ac55aa8c1a4256638c0546ca1f96e5b33a91f873
|
|
BLAKE2b-256 checksum How to use checksums |
f29a19b6932f0d999a49db9d1d7c728ccf8b687431d7fb08169eb41ee6c2c097
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
fecdcccbeb98e5bb2316f5a2bb6c8e5dd08201b66b78949099a98298507d4149
|
|
BLAKE2b-256 checksum How to use checksums |
fcd63469784bc26fdf28fa9b85cf92b0647b6b4de5402ce8061f93b83306cb55
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
edc47a74ff4be0f142d837e37dc275fdd08c5bc43d9c29cd923a56819e01e113
|
|
BLAKE2b-256 checksum How to use checksums |
647e7b7267ddc4483b9459bfc07321be53ff39ef28dcb40f8b02184ffb0c0276
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
bd7af7ae5637289f05e98a30c7f9e7ff872e6bd9633a9bb8ee68217565f032ca
|
|
BLAKE2b-256 checksum How to use checksums |
e7cb2988d7ff5d8e1a94f7a753ad60c4d730cbdce39ab6a245117154d561fe70
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-cp313-cp313-manylinux_2_28_s390x.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.13 Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
c8ed38ae24cd055ff52a5f9b18a2c94bd65591ce03d97f3eb3dfdcf10592e837
|
|
BLAKE2b-256 checksum How to use checksums |
c1f196bdc814ca1a7bb247b164acf63c380d35b364bb56ade9f1ae3dcce87e52
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-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 |
3e45b35e99f416c2974c0ad4a159f4690764b64d5f75c144ab7a3d23558c2986
|
|
BLAKE2b-256 checksum How to use checksums |
73c810d30fbb48ac24620e8d80764403e8cf1c003c529f0f819d3c4ef1a9c4f4
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
f5404327c61e05614d0a229fff32a4b66088cd39066f8452e90cb2e483d685b2
|
|
BLAKE2b-256 checksum How to use checksums |
326c73dd0fe17b3fe614dff0419d740ac38b453c8c009f83c503e3f3ef5535d8
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-cp313-cp313-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.13 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
4e2f32b4a2a50c8b5be5b4eb520317b5c194a867954e9ae94820c1627f40e9a2
|
|
BLAKE2b-256 checksum How to use checksums |
e54733e8f8e5c621e3ef8cad0343e9b02af90490f7869ae310ffc043f7ad7f34
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
6b0e9f3744afa9750c44238c9c038b05138c152b2f5d536e120c494125ef30ef
|
|
BLAKE2b-256 checksum How to use checksums |
ec2d1cbe87596a028eb5376c709728f9516ac49257e181baf10f5625529663db
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | rqx-0.2.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
e3132f9d776f1e71837283e2f0b276304d0e6a3617c0c7b2253163a6128cff97
|
|
BLAKE2b-256 checksum How to use checksums |
130f1bcf7c5b410078376138dc83aae7bbaaddc31aedd6f978ce24f69bd2b83f
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | rqx-0.2.0-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 |
4f317413d0cc663dfbe6755b5b745a2a052af6f4b0a0b1655f73e87c4602a1e7
|
|
BLAKE2b-256 checksum How to use checksums |
52a312ef7976616fee7cc35fc8ab4ea0d1ab248a7610d55c4414397ccf5d6d46
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-win_arm64.whl
| Download URL | rqx-0.2.0-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
bf43b5c0db9e9700e8427f3c80042ea11b8f9c52c0f4a1cd0aa9df15d9cd1cb9
|
|
BLAKE2b-256 checksum How to use checksums |
9b9eb48790104655670c5761b7fca471bfca620bfbc0938575b27084454859ec
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-win_amd64.whl
| Download URL | rqx-0.2.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
dc62e2fa9492495db2bebbf9468cbf4a92e1cd138d9db939d86cca7926f65ffe
|
|
BLAKE2b-256 checksum How to use checksums |
b2c6af7be8818ab4999e02067e893f17caafd2f967534ae9eb7e870b39dbd38d
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
c72a4ca43641918d5c442f239f73765f4cfa71fe1a0a0a65e5cc9491c67a0b10
|
|
BLAKE2b-256 checksum How to use checksums |
41aec46a29963f2b63f0464a1038e73c695b18b9aad25bf26970c7d147777837
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
950d016e7e62cc3f266aa68d2a99266ba803aedce3ee2a9d61a83b3809a857c7
|
|
BLAKE2b-256 checksum How to use checksums |
2ae6d7be73e1b9ef1055fb2e2ab57ecb5066112e4c9b15997cb6f8c79dbc4dc4
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
6f4b32230bcfdffb6537612160c0aff28924609935bafa77911bbd65fce2e1e8
|
|
BLAKE2b-256 checksum How to use checksums |
05957b54dec7e61393f2ea8f490b3236be9a200c0aaec3dc739c3fd6d49ce945
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
7a1c2f388cee12100482a36761f82cc9efcd3cac779e4a46e3fb71590ad9c504
|
|
BLAKE2b-256 checksum How to use checksums |
cdf0b5f92444132d5d9dfc390d0bc8f5e6fb61136a6fe2c6c0181cd1e2789ed6
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
9ce435eea505f6ddf15493adb4fd7ef28b878e8b9b2f0f9aec9e17b86a4d5838
|
|
BLAKE2b-256 checksum How to use checksums |
1a74d7b1699b5b9615b7b7b9d0924b2620016df887e6c728bf2cf84e23d68cc7
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-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 |
574d16b33cb76b26bfba63223c7fb180ddbc0abd66bff43607c5dabf0853749e
|
|
BLAKE2b-256 checksum How to use checksums |
5e7a3de5c1c24e5ddacde08738b6dbb3996bef93fab38f03e6d087cbbe889662
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-cp312-cp312-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
d0657ceb18929578d766716737fc6041e061053618ba4a7caf52f034a39d22c3
|
|
BLAKE2b-256 checksum How to use checksums |
78b80d61a0cf37f4c2574e285f414c5e1e563490e78b9c4ce90d95b6c0b96101
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
59afc2e80c36caa58e9395d3f2f1d5677a8720a54a924241bc225ecb075e6292
|
|
BLAKE2b-256 checksum How to use checksums |
3d2aa50ae1f38d43444f7726f147344173f1d50c83974c16a011c877f08df891
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-cp312-cp312-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
eff4b8664ab8583fb97e63ee6843bf92e97fd2582a65a292fd8141e2060b1592
|
|
BLAKE2b-256 checksum How to use checksums |
8e9e9f50062a8324dbe3ac0d0e68529f975686fada9cb6d9ed818fbf93380930
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
802ff8a93ad15991fac23dfb8d043220f0fde3bcfa3a74ef1507272f93e486c1
|
|
BLAKE2b-256 checksum How to use checksums |
3d4bd04ae4c95a69095a0f9a0f530f48b22148d1b51d3c32b2971b899003fcdc
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | rqx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
9e6e0e4b4ad81ac46dac6a3a89abc76c63f7a7a31313133484b2506021fb47ea
|
|
BLAKE2b-256 checksum How to use checksums |
2b654ea2e9cd16d34e1befc49e19d932d928870a072b065a45e0e30610f96906
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | rqx-0.2.0-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 |
40909624c833e990f3b687ff34ab3c185ae58ce47c26a2a057b62abba863916c
|
|
BLAKE2b-256 checksum How to use checksums |
2525e6d352d023cf11b849ee010c6159ea17959d506d0ede698f5405c7c1e167
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-win_amd64.whl
| Download URL | rqx-0.2.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
16ea8097906c51f2535791969f7d12168d102ea8144c9026f85b7dbc99962dc2
|
|
BLAKE2b-256 checksum How to use checksums |
6b32cea04d5f7872d0bf817b42e3f307a55fc1d922907ea3fde3a67c64eb6f20
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
2ef67fa441ccdbf30ba1630994420c0498d3fad0be7fe15ac178522990dd431d
|
|
BLAKE2b-256 checksum How to use checksums |
07f7839329987859b06bed46dda32930b1a1d6740e6f5e12c37d8da57a47292d
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
39bab2d6d63d6b566528bc387295ed5c5fda34e8b9c3b569de54aa76055bea2c
|
|
BLAKE2b-256 checksum How to use checksums |
40e270caff68e2b918102dacc41f24f5fa471692394a8400514fdb35d535b45c
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
68b8e38b5283b0a834306558dc360c186d848df3a87b8f76b060035372cc3c92
|
|
BLAKE2b-256 checksum How to use checksums |
600e2c856c823734c3d564e8a410782e741a7c4294526eda44a5da005e61e75e
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
818f42b7fa57004d6d9090482eda6ce1975d24aa3b75130bf5d47756bc237a45
|
|
BLAKE2b-256 checksum How to use checksums |
77fb4e8f6877839e44a6a1ac424b02b1990fe2dd13eaf51f4e9c1898c2cac1f8
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
d2419647e89a6d5a2414ab654479de1ec665b2c238e2a514766863d361956720
|
|
BLAKE2b-256 checksum How to use checksums |
026c57a9f02c039b9913c436ad442c142ff001d45de83e9e4954e9a5da887b90
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-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 |
35bd165eedb74e784f18338b64057c7bb983025b58d8967d993db8c0315bbe30
|
|
BLAKE2b-256 checksum How to use checksums |
422f6e22ccf0d564379179b8e89b321f3609af216ab8e0faeb0e1506b8203330
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-cp311-cp311-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.11 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
70afa2f2af5bc05b1e321b8fc22ed069e25c5d1f504fb9c4122cee43ad416ec2
|
|
BLAKE2b-256 checksum How to use checksums |
7655e0ec7efcea433d16a60b7aa477e50666fa466e707d17240360b7502521a1
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
c0a4fc31e5f91e26e15366987dab43c6038d655581f8bbbefb9cd35838a53469
|
|
BLAKE2b-256 checksum How to use checksums |
85202f27081e1e6a605f44d3a3a8b28a7ade9099fd9edeecc6f020c84a9dfe24
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-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 |
5484d3a93019b0558ae09c45d09bdcbdb9c4b25f361501b6fcfd356d5d6a52bb
|
|
BLAKE2b-256 checksum How to use checksums |
d04583136ff0e53e9f422ad06941c15ec57f8f2b8a55522e73180cb6f937c34c
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
62c3a1a13f83b96a27667a94862740f5b11e5a276a91ccea5240876b6e8441bc
|
|
BLAKE2b-256 checksum How to use checksums |
256695be616816447317dd0b97e94ff5b20cf5afb15a4e4907f3ddb7f09417ab
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | rqx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
17a937e3422d7eeb419937b3269226a79d42015d97dbf1903d7740dd1354a72e
|
|
BLAKE2b-256 checksum How to use checksums |
ee0501bc6fa1224272526f69d5898dc462b71c038b2afd7e868b7a00b4898a24
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
| Download URL | rqx-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.11 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
13252841b435ca049a159f7f1e6b6db34f0db7c374491b8127a1e7da984a15f6
|
|
BLAKE2b-256 checksum How to use checksums |
3847f59b84de9add1a43f4d8f0d71199e4b8979b8ca51c74b86052cd12d7789b
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-win_amd64.whl
| Download URL | rqx-0.2.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 3.4 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1699df9fc8eeb41a3724c431d0648b84d98140eb8d61113ef4db3e0030f598ef
|
|
BLAKE2b-256 checksum How to use checksums |
3f629131d3113f4d84ba6fb6e3a4164be458662756d8e54a94b5d1f525e6cdd4
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
1e49518aaab0a32a43d8d9875c3ea891cc6485be343e5edbc276312b3bd443e8
|
|
BLAKE2b-256 checksum How to use checksums |
3e7259b3b97c2754cfaaba783e04962794fab424b0b32f5f45b868d313271a0b
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
8da2d665a6a2e1bf59bb329d7a1fa012e7cefa3b1b376368019f9ee35d470cba
|
|
BLAKE2b-256 checksum How to use checksums |
bab43c6a5479ec9211bccd2cd781098b70b0d22696f2ce27824bc80b7fcd5b5d
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.10 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
41a4eac5dcd48b0abc40be71362e23888e2b8c7d6f288c0ed25b55259afd79e4
|
|
BLAKE2b-256 checksum How to use checksums |
bf21c68f91c9bc28698fc365369c9d70ecc79fdd2431ed176a523d2da733d649
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
992c96650fa0be419a0b2fead7aaaac611aea84b7c573b26613df1c0eb7c6481
|
|
BLAKE2b-256 checksum How to use checksums |
aeef017296c79e304391ac93e93535b3a17b4cf53eae932442a60cae3fe6a7e6
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
43146fa9d9efc0ecb73586c11d69761f02064b7b652c62d8c2fc16b173c57f13
|
|
BLAKE2b-256 checksum How to use checksums |
c47bd0fa1445b00dfccc53dcf873348fe87448e5301f83842afbde5bce4d794f
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-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 |
2bf1d644da88256aad8314f7ba7e0b9ebbea109b17f0df4316fcb544fe414cdf
|
|
BLAKE2b-256 checksum How to use checksums |
0cb4746a957b59a2e9d27da0528db0a579e44a1f451a99907fcfdd3ba40e21e5
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-cp310-cp310-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.10 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
bc3db03b0028a2ceb6783382341cba39445b76aff5a8fea96fa84d0e4ee7bba4
|
|
BLAKE2b-256 checksum How to use checksums |
3fb22b50e775aeead34dc038f2ac2d3aed98c181c74885807e7a903ab5826839
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
daa26ddb9754bbeea40d9622b992b1f967f8945c7f1376213a803042db59509e
|
|
BLAKE2b-256 checksum How to use checksums |
a6b36b5d997bc72f666803bdf333ce606206f815984b00814df7edc2166617f8
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-cp310-cp310-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.10 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
893869045abae4e419f88a3664220c4628f28b8d6eb345789e96ecbb8f5b80c1
|
|
BLAKE2b-256 checksum How to use checksums |
5ecde1b3a111a6b326cedb54f28502438a0a638cc63bdc912b7848a0c38b8306
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
514fb222576ebd1794f2c14c0ffb59c45ef1339c35841ff1098953d7dee445a4
|
|
BLAKE2b-256 checksum How to use checksums |
3a401a5f8661ba89c5162822edd13700d9cb2c5d1899c312687e7ceba9f9056d
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-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 |
a2b70f0c3baa03887616a478a758cd06e3232ec9b55dc0dbf3884a9c36d37452
|
|
BLAKE2b-256 checksum How to use checksums |
42f3006a0e3c3f2c4d8d302f029a88d7062b70bbe1bcfd40a81352ed6cfef04b
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
6b050025a2d605390d3e43549e406afcf0b961b64454518aa82b374c2807044a
|
|
BLAKE2b-256 checksum How to use checksums |
a5cc32c11e8ef075a2e53ef0f059174d500f631399f1d15d9baa8f8029b8ab54
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.9 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
397b3e677a6933719404e54ada6e5d6e7dc71ec5eeb2abbb70ed974d00dc1ec7
|
|
BLAKE2b-256 checksum How to use checksums |
b21b3ecb6187788bd9b2b5452c2f33ff2ebce7c50e2eb5e8d7be9449cdd00dd4
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
0ae373ce65290298ab0e45ea8cffd1e32e82ec9f508c9ab295ae7deb87d03f4c
|
|
BLAKE2b-256 checksum How to use checksums |
041b066ccdaf955edbcc088e3a5cbae39be8fbc2e40748a2aaef66e1b6b6a651
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl
| Download URL | rqx-0.2.0-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 |
861f56e0b3498b720aa018f553f44991f46973236ea1053a180b781d010e3d00
|
|
BLAKE2b-256 checksum How to use checksums |
b341b9638bef9113659be5492c40c4088f75f404b471da223b5ece2429394567
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-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 |
cda0d7a64216f6532ff883db53791d516b5af0be99476c066d9a48a198d63b95
|
|
BLAKE2b-256 checksum How to use checksums |
0217e785fd121943c39ad6c1e8bda22f2c000d5ea8f0afdab9bd3b2cc9ff1ec1
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-cp39-cp39-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.9 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
1469753c767514191f0644285dc0313f0bbd20b0ea762d9c06da7185dadbf48e
|
|
BLAKE2b-256 checksum How to use checksums |
3c57bf5b5875eee681472611c5cd82c6cf5adccf93e1c7231a5ab66cdb094f37
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-manylinux_2_28_i686.whl
| Download URL | rqx-0.2.0-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 |
43637074c5b6a873680a318eb81929d5ef37d115b9afab42510d904b55a467d9
|
|
BLAKE2b-256 checksum How to use checksums |
b87b1682f45e026edc15e4fd5ca5bacfb31b862c621535930c351eee4967c0fa
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-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 |
b6d6786f9e5a5f94898c0d1ba1cc4db1d1c4b19ead36f16e3eab4320d11a3814
|
|
BLAKE2b-256 checksum How to use checksums |
4e304db820ceed5a8f2271cf2833154f8912b780936603e60ba8d14f7b42267c
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
e5bdd47706a382893049b19e4e6a25265ae363a00625be0566c92ad8f846e14a
|
|
BLAKE2b-256 checksum How to use checksums |
40a16e6b1d5d6402aeac0b7b2e64d963884c358cadb037f9d9885fb876f419e2
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
| Download URL | rqx-0.2.0-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 |
aad41b3d1cffe216a190b3cec1d88a0ef87f3d90934e677804c59884e8536bea
|
|
BLAKE2b-256 checksum How to use checksums |
8b434bb44d66b89d32bf149ab3e4696877e798aca6734d5593a2fe9dee379140
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
| Download URL | rqx-0.2.0-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 |
9770a0dd66a039cdfb0b3ef790af5a51d9a909f9ddce0ed8ad4829daf850096c
|
|
BLAKE2b-256 checksum How to use checksums |
8699edb2b4973e5f16e98d3da9373803502428539c898fa312c3eeb27a885c39
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
| Download URL | rqx-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.8 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
de3946d9d6f148a2db5f03a832a959db8b6e976df582830d4169309d4d5e3b04
|
|
BLAKE2b-256 checksum How to use checksums |
4280d55a315f9185eed8d284617217bd0d40efcc06be5bfc57ca3bf63da925eb
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
| Download URL | rqx-0.2.0-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 |
96b7927aace52e771fe2cfdd004e1d4fbcb456193dfd320d1746a8f50f6a4ff5
|
|
BLAKE2b-256 checksum How to use checksums |
240ef6fcc107c48adc635150be060f1b3fa6a09b07a835d0e3a13ca1e82ffee7
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp38-cp38-manylinux_2_28_s390x.whl
| Download URL | rqx-0.2.0-cp38-cp38-manylinux_2_28_s390x.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.8 Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
603a1d1cd70b8dd7adfad3f9e22bcfb9059c8e9cab14385ca3d2fcad9f7637fb
|
|
BLAKE2b-256 checksum How to use checksums |
cf8467f758324c1b657a56377a8fa8b3428c613e9824a41e01784bb9c38d591e
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp38-cp38-manylinux_2_28_ppc64le.whl
| Download URL | rqx-0.2.0-cp38-cp38-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.8 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
7ff2fb09dc9b06eb3e6f4334d47299b0f27c8dc0450a421c55b2ab4b5b768c5e
|
|
BLAKE2b-256 checksum How to use checksums |
d88f0fdeb170a81b34b2064a674caee8f189302d115b4875da7fe599e07a9939
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp38-cp38-manylinux_2_28_armv7l.whl
| Download URL | rqx-0.2.0-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 |
f5abbfbb79286873f9f94be821536590e89a2c84d61030e8e336e4dd6d0a3a61
|
|
BLAKE2b-256 checksum How to use checksums |
5a2d845283edd0516b67c772161c8e6b4fab7ed366347c92c2f5a4344634f32a
|
| 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 13, 2026.
Transparency logRelease files / rqx-0.2.0-cp38-cp38-manylinux_2_28_aarch64.whl
| Download URL | rqx-0.2.0-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 |
72576dedab4db8ef8f02f579dd8b091a2277d46642fdfd9665a6a87652e3bc05
|
|
BLAKE2b-256 checksum How to use checksums |
45f5eb2bd3f94cb4573494fa39e004bf22fcc34d16f540655beb0116b738eccd
|
| 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 13, 2026.
Transparency log