Skip to main content

rqx

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

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

Origin

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

Two documents capture this:

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

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

Quick look

import rqx

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

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

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

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

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

Installation

pip install rqx

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

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

Benchmarks

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

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

Throughput at concurrency=100

Memory at concurrency=100

Median latency at concurrency=100

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

Status

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

Contributing

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

Acknowledgements

rqx builds on the work of several excellent projects:

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

License

MIT

Release files for rqx 0.1.5

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

Source distribution (sdist)

Source distribution for rqx 0.1.5
File Size Uploaded
rqx-0.1.5.tar.gz 1.0 MB Details

Built distributions (wheels)

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

Total release size: 437.5 MB

Release files / rqx-0.1.5.tar.gz

Download URL rqx-0.1.5.tar.gz
Size 1.0 MB
Tags Source
SHA-256 checksum
How to use checksums
aa71d4a344e88d83041fe61aaed9371115bb56002d0d44a4c497eafe016d4604
BLAKE2b-256 checksum
How to use checksums
55d4d76f2efba295b40740d216a9f61a1f23534fba2577cb819a052a528a81f9
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
86dc5a043b965af31b12ae38ec30f5b89034c877ab574475339f90cf10a8c9b1
BLAKE2b-256 checksum
How to use checksums
5256be027f10a8a7f24edee972a6d446ba73b68c964e98037cfcc2f6e26804ef
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
1e4173e6b115173d5074413ea75ef2cfb73435e9ba9e57bfe29273509a723065
BLAKE2b-256 checksum
How to use checksums
81cdf841c7181814a79970cfc5a183c82dafb1b8c947d5fd5b63f0d3306aede7
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
76675c6a4534cf395ad98bac96fe8de33ba3bab8f4c87644c235567176fcee0b
BLAKE2b-256 checksum
How to use checksums
7512e5d96481a7903c05f3420b39d7938851b5d9cd23f133664c686958a5d9e5
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
353e50d1bbc901ae13d609bde097b6d0b9da4cb28fb8bf04ec89e24f682995af
BLAKE2b-256 checksum
How to use checksums
47a5f2c81c4e2c3c511c0461a86e8ca5a11ab08c0e708d45aafd49f451679b7a
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
6d160169bc5b469887088b87284d8051b75d1f7cca1b9aaa55c568f80302333d
BLAKE2b-256 checksum
How to use checksums
ffc25bae261b7e8508fe854ba9288ba5c0bdf88dcc2fe209edc78719a65a374c
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
6302e76eae983b654f6bba5ff05244aee4248324d09c6cf088250db40256f047
BLAKE2b-256 checksum
How to use checksums
2f5598bbd6d9ee657676d600bd9b97341d43d92bf1e176f08b8936012635a993
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
2433aa62fb76481a48cd371c2dc38ac7abbcc8695db03ca9333507c4927090b7
BLAKE2b-256 checksum
How to use checksums
08df2e9a178640bf51f35f1eb9b16df4bf03f7eb5a6d1a960e8f322f0a5219f0
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
c56cf918d9cf548f3a93bceec02474ecdc233c84967dd3e500208ea710f6ab59
BLAKE2b-256 checksum
How to use checksums
68e9bb112ff1e8a1e03f860c4b7242fb1aa64a146ce55fa413d91b3de0cd39d2
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d01d3bb1ae9c94c68ac36ef7517afd2214c4a414663286697968789e2648295c
BLAKE2b-256 checksum
How to use checksums
3bebcf9c970eb1517242b5f504bdb987d59207953df059fcd5aa9df485829eb8
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
e34783b1c71fe15609b7387980d900b643a0c5ce8952ca842da2c96b90c2ddf0
BLAKE2b-256 checksum
How to use checksums
744d0aa7d75cb8fa339303adeaa5b38efdcfc5ecdef1a9b78d22e1c00d45022e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
958ff9d78f702673e35911694a1a9f84405e500240142b283a853f40896d2575
BLAKE2b-256 checksum
How to use checksums
2722732d75b9fc3c1528ae15d39ac69c567f0f3b6ffc68ab2ac93a94f774bbe8
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d59fe85f541a5889f427aa59a74881e0eb3c96a0ed8e2475cc7c41a66db2d5e9
BLAKE2b-256 checksum
How to use checksums
edcc23289ee301334e11a0cf98ea555e1e371f788b96ea8c88f8755e40acc72f
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
2de71475cab51eae1b67d1fd9ff43c8e0155ba22ce2338ed3b18d4e2c1ebada6
BLAKE2b-256 checksum
How to use checksums
278b37beb1245e401dd4583621586fab48bf48f92601c3795498959b6b04f85e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
259c52ed35329323757dfedfb2468791b65331e216c59f7c833e9f6f000f5ef6
BLAKE2b-256 checksum
How to use checksums
6bb56e9a332651e51cf47fefa144e8d5e84fef030e6846526550a3b006d30e0e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
fe62bca94bff6e62350bec5698e7de6e3492e443a2ffdc5e65440f1666be59aa
BLAKE2b-256 checksum
How to use checksums
1d721134225283168f653c021414b3fd685d61227e5dbd364a00f066bbb235bf
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d7d6a5b8999ca9f4a7dd09724d998d390c403e5f2145d074d1fa1511f52ebdc3
BLAKE2b-256 checksum
How to use checksums
67d149043e9a6ad3ae52f5d143daa6b71c7efa36f26560f88677ef3bee5a281f
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
f2b84785d2a479d368fde6398aaca843935ea333d935c942df3350564105d616
BLAKE2b-256 checksum
How to use checksums
cbf60358987233f7571fb6c58bb5253e67923862bf0bf5885b988b5a3c1aeb08
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
7d75607fffef01e51ce6df4257d9115764f6536dfa1a29d51f12c82971062dc5
BLAKE2b-256 checksum
How to use checksums
e6eff8bfaeaba78fd8f3597d747eb84e0e00a7e941efe2cb8e5ad80db66d97ab
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
b029b9c99bd88ca7b49e6f965f0435979135b1077e088c0959d7dd1a16bee42e
BLAKE2b-256 checksum
How to use checksums
c3ec82007fc6d9d69214239481c774a48cd1b6c996ec8a5802522e2faff6ff4f
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
f898d041f5c583e5d507fcdc3200bba5131815d5b1f3b360bf46182e8bb48f2a
BLAKE2b-256 checksum
How to use checksums
feb42b731403be66e9f485f51e8ac12a5b82336d203c4eb603a47f9373a79d70
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp314-cp314t-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
22dd056a9426053ec52385a7c5bea508fafe314ff9855301f1db4f3fe5c0c87d
BLAKE2b-256 checksum
How to use checksums
19096cbf523d7c76afea63bee9500352e0c99b4b905270f3c085eb745a9e0560
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
534b7ee0410cfdfb166cf7ca72dfde94e7a79be11edfbfb3dfced559292a0841
BLAKE2b-256 checksum
How to use checksums
1f8b332239850c7edbf1084900f6a4c1a05aa6cb9ca2c88ba86841b21b0daf88
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
b014f3200592a8c7b90ef0f44cbdc4bd3b352359136abb3712fed41569426827
BLAKE2b-256 checksum
How to use checksums
5a8889e1a18d952c64142e817c8e228e57ce8bf2c4d4b87d42b4d08dfa8983ba
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
06c792b138eebc06ec3d3b003521bc7e009e45bcc8e18a62a81c896673ee0905
BLAKE2b-256 checksum
How to use checksums
cd07b156507c5119c47d73eaf32c7bd2a917d9fa5218a24958a61cc91baf89d0
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp314-cp314-win_arm64.whl
Size 3.4 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
fdc4321186bcaa8ae7474eb7d8e8f8818e43a51872302f4d8bef02a5a2931b0a
BLAKE2b-256 checksum
How to use checksums
7d361aee20c928c600082630bd0dc90f7144af7d314aa8717de7e07bf5d07015
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp314-cp314-win_amd64.whl
Size 3.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8d93a586bee00064467d2597e2d4e38e2562020134737c7dcc0ff8cda6c69849
BLAKE2b-256 checksum
How to use checksums
d2c86b53e7440c8abd610a50cf614cdcfb1638e4a1daa08d26f97e23baf8d028
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
b45b2f90e4d8361ba74a372c13d966829ca74b5ed5abb728c37832d729b30941
BLAKE2b-256 checksum
How to use checksums
06b70aef6ecdb6d6badce41bd53309ad5065bce18a52f8a20cc644aaaba70463
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
43e8e26087fcd86c9597faf5244a8bf3046459153f019045fe8ebcca6dab3097
BLAKE2b-256 checksum
How to use checksums
6f1f83a91f2b944cc73aa9c6b142c0f8690d0c25e79c6a4cedf9ac2fe6baa574
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
699210dd7cdd26cf21cd4870759fab931aa3005e7328ef34d2f73c5027c82f40
BLAKE2b-256 checksum
How to use checksums
75901607669a9d5dd5ad6ca1d236e78ae21b84459f6d6693dbee4e96c55bafb8
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
0810c058984ad156d1ce81b6fb873a62d26e22751e8aa6ccef149c02f885b39b
BLAKE2b-256 checksum
How to use checksums
6d09d5c46a66485b6b6caef3979fba68abf892dbd63cb398df2abaecb804d9db
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d2fac12f57aca9b304478c6a274c00d51a0ec3aaacc8c2f89cdc4e58a54748eb
BLAKE2b-256 checksum
How to use checksums
8a790acb2c93ad391d065452735cabe9715192701fedbadd965870eb598d22ef
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d15c30ad74a9a0f46626d531452abd85d12983558880750ecc7d68ef0222bf00
BLAKE2b-256 checksum
How to use checksums
3659943ad6012ea4e808302f57068c462d8b3809a6164d131921ba8d884c83c2
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp314-cp314-manylinux_2_28_ppc64le.whl
Size 4.4 MB
Tags CPython 3.14 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
19cb24a20176e05335cae4fa21e038c4f9ebc8bd59bb648ff12ac3ab2bb2df25
BLAKE2b-256 checksum
How to use checksums
6d072b4b8b7fa06ef57828471badddf0947118741d5a77bf400defc5e9456688
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
b9ce0e487b35c5bc043d43c2db778e39be2d378de2dc48dad0fe6a7240ca6265
BLAKE2b-256 checksum
How to use checksums
d15f5da8ca85609255c2d55e6bf853bcd6656f8713363de6ef9b5c0ff889cf78
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
366060093709261b451cd167db092c238bd04c8d5ffc62be6d29fd0d350b97ca
BLAKE2b-256 checksum
How to use checksums
db8de58e30d9644dedd063ff14b144b0e7bf916ced42ad890d50e3cf243555e8
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
1148c7cf8f689ee64432da445270a156cd61201d3a97ac5b7975cb9e582fc884
BLAKE2b-256 checksum
How to use checksums
6a32f737fe25a47976b66d7104b03d162a1033621e191fc6757858be1a380e25
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
dd4884a53607aca84100903986293e7c082b906ef14b4915feffaed67d91f2b2
BLAKE2b-256 checksum
How to use checksums
fde4e55725b3e8b3be078d730b8ac78818d74279e64a1f2010731a4cb1d526c9
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
1958d6d5fc20e71a2a7d616e34a96fcd1549bd86a46fbdf7f27f1fd5a5f13f6e
BLAKE2b-256 checksum
How to use checksums
34cb14521fa68d2aecf954c26e09ddbc5988c75b22c796658fa5788730fc8a6a
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp313-cp313-win_arm64.whl
Size 3.4 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
b6b09c7b5c68493868e3385b54520c796c97fd8fe41596851778e7c4e2b92482
BLAKE2b-256 checksum
How to use checksums
ae1f82a526f63c92af0e5a1f99998ab7dadbc7037c0117593c82b73eba4d9f7c
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp313-cp313-win_amd64.whl
Size 3.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f910a9e1f68ff19e7fd543a5401506182f3e7a3bc4ea0bbd5733b0cc103074f7
BLAKE2b-256 checksum
How to use checksums
b45a7b27360d5bea46cbe3ea6f0bbed238bdc61a2ec527982e6a067ac128930a
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp313-cp313-win32.whl
Size 2.9 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
56c540aea87ac46a66fec686989949c052606bc7d294c305e84c2cc9dc315066
BLAKE2b-256 checksum
How to use checksums
443edfe4a0c011594677c07048ce75443e8f5c14df0529c58b4b260616edd3bb
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
58d96275f4c5d426d5d96f01dbcd31486827d53e34317f6999204c723d3930b1
BLAKE2b-256 checksum
How to use checksums
4878925cc33e4d8a6ec0f14dd943b83ffb768600261313b531f817d9f342a405
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
eb22025b5b6461e5be84eb3663ef89d9ef17852a3bc1a723987175aaab79549f
BLAKE2b-256 checksum
How to use checksums
30ac13d9188c72c144ccaaafae32475b0fac95c111ad0904c96d5edcd625eda7
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
8b4664f89405e1fcc0f1ffcf549fc511b73576e77427baf36f972bd874679a03
BLAKE2b-256 checksum
How to use checksums
3ba8e626e48d3717de12faa5f0c0bfb65752cec47d89ec5cf2ee54c4c1d11a63
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
e129d20c0b524bc7bb92531f142586044e0397629cfa364d105cb6979a5e01fe
BLAKE2b-256 checksum
How to use checksums
ed8c52b26b6b7cf22f09d216cff0b4ea19f2ec00b63487a44d8153d9b230467b
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
f12128f916d1b7e5bf98607be45de54fdf8bee8ce8c3d5ae26c38f9fbf50417d
BLAKE2b-256 checksum
How to use checksums
b9333d7a0cbb5fa1ffadbfcfcbe0b1b30d488f453484fe1759abf2e1319ef2f2
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp313-cp313-manylinux_2_28_s390x.whl
Size 3.7 MB
Tags CPython 3.13 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
70c22b15c30c94c489f8c53f122ffea488a616d715a79b3aa46c727e36eda069
BLAKE2b-256 checksum
How to use checksums
6be37aec115c1740dc71e43624bbb20432642c8a9a69e5abefaa63463d0a6066
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
c1f1cb752e8f6a2bc31a6f3a9b049482504c4c6deb3c3552e7319a1450a98472
BLAKE2b-256 checksum
How to use checksums
2fa7427785e14af82c0fec767269ee27302cc9650ca279274b93e6dbd604031d
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
85dbab7012185b89132c20419adb7fc339a7dfe0f8a09ff5abf98e6a3b76a39e
BLAKE2b-256 checksum
How to use checksums
c3057be58cb978dc0fc849b8a18a3465e19ec370286be33e8c888ec585132f4e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
af4b0e48340f81ca4787e00b905232b4a07dfbc740c324ceb7cca57aaf4eeeeb
BLAKE2b-256 checksum
How to use checksums
99497e3d099028b4b0fa3a3c6a3a5815687fc9cbce46f5b7b0d9b0c8dc075333
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
c923df4484453c7fe9b1b61680b96b0bb719141803435546e5af3d948de88e61
BLAKE2b-256 checksum
How to use checksums
46d07f12dfd3ed3d5b9f532be8b8ce2bd7c3837d7eec35958faf9acbe10f267b
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
20fce487dba0e7fa235b81fd0d2e8ab1faa63dd9df378789027c496c5b404c90
BLAKE2b-256 checksum
How to use checksums
9efa49c2ef4b7fb1bb37477814c3a9452fac15988aad894f503cda86b889d489
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d8dc1feaaa97936379ea0dacac58845022773019979782a590d6ff93b9f1cb19
BLAKE2b-256 checksum
How to use checksums
ca0bbe324de2710824f0ed8c82ba1eb3897109d822f3555f4fd12217be39efac
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp312-cp312-win_arm64.whl
Size 3.4 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
0abd5bb35974d5af9822bfc46775130effc16d577e8631ead9ea0d4a001f6c4b
BLAKE2b-256 checksum
How to use checksums
233971f6d0954c871a0cddd6d5b9e5019b50c1894a58ecda38a79f32a3a3d398
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp312-cp312-win_amd64.whl
Size 3.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
82db6f137dddeb89d3d120073b13f6cf565d1cf9750126b25124b25fb7460987
BLAKE2b-256 checksum
How to use checksums
d2b11fbabf7a651234d64f77a56e8cfd2ae5db17960c6be1b119337047347c18
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
6ae80d9bdbf7b607ce7d055056f066dfcf7a14c096c6c6386f1044a3ec04df27
BLAKE2b-256 checksum
How to use checksums
9a14beeb454330daf99ddfc7e4acce87da4be62a43558e5fffb0e246ca33b87f
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
e5445439648784eeec66c5b0bf922a83768517eac368f5e65f32bf3379628e7f
BLAKE2b-256 checksum
How to use checksums
9cebfa58351aac9e19514e621f95d1ea06642428cc68a054d9d0fa17867fbbf8
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
2b65079b0aef5b430dd6130fefb31a739a7ba87cb58d127028f490b373c355e5
BLAKE2b-256 checksum
How to use checksums
6520403f284bce4d29eda0cd9bdfcd56417fa584d2ad70b4d9afbf03eb36fbbf
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
bf1f67a1fb5809b388af147462e20bbf452ab486a91eb6337171f691e7f4fd35
BLAKE2b-256 checksum
How to use checksums
6ae0c40ef3cf051e857a8e7912de6ea241ed9ff6c2da847124b7cf78ae4b0c85
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d37f177e3028d2f6dec1c4f9543efef45ed751498b6f8d8c9ee4a3f9cd9a2068
BLAKE2b-256 checksum
How to use checksums
443431e3e38428dcab9f79305aac1b0c258cb744e6e53ed69e54f1c2d73574a2
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
ab90805113250c145581d3930c12a82d726a4f00cc17e8646d8f5ab7d6b500a1
BLAKE2b-256 checksum
How to use checksums
d17c36d2a9753d4d6f01cc531ac7a94381981e33805b8c692ebf018b500bf97a
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
275766381c2fa9f1f1ee8603c00c2bfdb277bd738ea649ddbd1eaf73b2ccda3f
BLAKE2b-256 checksum
How to use checksums
7326871c226fb4c481d0f2dffd38c226c30699d65f27ff8875365f5a31312fd2
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
facb5210d0f2f9a5c2ee66db5247bd77899cff6ff8f3cd2d8adbc5bd153de11d
BLAKE2b-256 checksum
How to use checksums
3f41b1ba67ca4cb30c9d7c907c9f9c038b30a7201163f6d07d9425a2469e9391
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
f76e0feef675899baf823ba7b16503f594b42c396d6291caeeb6a4aff89d0038
BLAKE2b-256 checksum
How to use checksums
b703cc0a74e86cc03b967eb7c20fd2a1f0ef112d767e1d9d2ebd7d6a18184e1c
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
c2ff174e75a91997e1eff3c1d6b67401b23e45bbfe20f1153aed52cfa21acc64
BLAKE2b-256 checksum
How to use checksums
c24c9b5821b09fcb810592230c688112ad4cc2b9ed1321c1fb46a9dc5b67a634
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
6f38b97dee64deaae2b0e965015d9fbfcec976e14d7f396d3d33cc152e47e023
BLAKE2b-256 checksum
How to use checksums
6ef2d234d0b92700e2869a84b44a8aeaf208ebdccf3633ffc72326e3b1a2d02e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
75adb781e1cb37a0fe2f35880674266a0637d95534b79edb6a5330cd4dada387
BLAKE2b-256 checksum
How to use checksums
be290e52f837977f1debe6f57f66bd567a0465c52e32fae5a935588a4d05c0f4
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp311-cp311-win_amd64.whl
Size 3.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2b5444a5daeb11b0f87635d7161ad00b36ca344e7f6ea83712a3878d51a7e9db
BLAKE2b-256 checksum
How to use checksums
5cf43e18bf7a0475173411c64235f42ece4e0e14e2711a5b1a4783f2d567e6f1
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
cf6b7549cf89dff3cba0f8a168c0c24b3730546de311ee4397cd4f9200806801
BLAKE2b-256 checksum
How to use checksums
63596267909de71cb3e2559ddf250f68e9a4aed26baae49584d8a5c77947ad36
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
5c55be332a61b41254d6aeeb26523fc6d07df1bb8d56a53bf7ef1f6b4881652a
BLAKE2b-256 checksum
How to use checksums
7d249e8a608351bf6aa83da8089281c12a3aeb2959b38ad54088dc4a4526d02e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
836285b59be60f3b4061a59ea7afafd35936e122594c2e99e60c7d66ba1acee5
BLAKE2b-256 checksum
How to use checksums
5cf677701558fd9e6dad6217c23f2759ceecfd9d2f02d06e0d5d20697016ec86
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
e6a3a841e778533f0e5e0fd2406e57251e9ce1b89a4f853d78d92591b27e6d35
BLAKE2b-256 checksum
How to use checksums
6679cb8c429952aca859ba54b5f5c9595a65e78df8700980b50a43e45011c11e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
528efb653e4e3634b09eb3d069a39be656eb026bcbd484fb86f494c0595eaba1
BLAKE2b-256 checksum
How to use checksums
246097f2d6b319616b235ffdaccef54f4ab5b3ab86844ea0c3a05c98145aefcb
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
125a6016695e1ec31fbb1609491ff4b28a1111abe508e1e1b3b20a9ac055070f
BLAKE2b-256 checksum
How to use checksums
751be4e7e7978662af930977bdb7d8727cbc0e94669416369af4d4ce2ab66888
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
78db3444cbab94ed981811953f6eb9ca06f70e242aec1492e7203e74444f6839
BLAKE2b-256 checksum
How to use checksums
f7fc5387805d68122e6ed5e6d31e294d9c8c171db32740a82b0f7bd1c8dd8832
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
87a562fefece8dd4a324e4134cedab5db1b1a0658996e0c7a231e05d9d77ceac
BLAKE2b-256 checksum
How to use checksums
cd569d415960bb8f4d0aed7023a14892adf1fb62302e7a1c2c622715e73c1933
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
1d2ccb8e8587e22df4dfef61d352c16e36241e994ae94b9fcdbb8528a35859cb
BLAKE2b-256 checksum
How to use checksums
2f217d02d47d8a2564d1e52166cd783974992901e345d713306a995cc753c747
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
6a02a733deeb2dc07ffa35656826138c13cf0a5e741df3ae63ec1daae999e40d
BLAKE2b-256 checksum
How to use checksums
9c0052355bbe6c29eea0956202e97123d2ed3193df79add34e0fde72b2eefa1b
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
21d80f1410628e340dac1e0796b5ad8a1c12853fee2d1f7a6d3e5202a6fb685a
BLAKE2b-256 checksum
How to use checksums
d8d7a66e89e7e113be9bff804c09544489f3d52bfaf7d1ca3a68edb76c35e384
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
84e103ed8f47ef36a625f5ff163541606804d2446e5545c12a5acf6f493d8b70
BLAKE2b-256 checksum
How to use checksums
7923317caad52562b04fbd674bf71ddff63c370308a75ac691a1c68464504aaf
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp310-cp310-win_amd64.whl
Size 3.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3c7ad385e31742a9fc06b803be7c2388845aa01f397f8490ac6c88bffe237409
BLAKE2b-256 checksum
How to use checksums
aea55891315519e7e841ae56ac9b0d63f16c5517b077053bca6501b1a502a9a2
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
64da089150104f8b95e3039dfb332b6566aa5c4e4a6bcf659404f9899f1d8b08
BLAKE2b-256 checksum
How to use checksums
b2babaa01ff9bfe7075e0ecd114b0c494d1528f93e933de2afd9cbcb19ac470b
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
fc691e23c91d709919dec40908fd2b08cd8c4b1a7271bdef55b4739cf7f0d166
BLAKE2b-256 checksum
How to use checksums
2809600fc81f6e144da5cbeca0f47b3211054b2817fde278cf82d28990be63ab
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
ff0f383098c4263336a46829ee1bc2ff703d16bd54db7b2bd70a273c7de35665
BLAKE2b-256 checksum
How to use checksums
fb2938bc7ea3cebd37853f8e0f62e92a03f94418c23e6febd4567c741588be12
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d9a4523777510c26993ee5f5b45e46b201ce9923658b1ecdd09100c50909b361
BLAKE2b-256 checksum
How to use checksums
3be7da1ea3bd697d47b4ee64e011a4d726b35a29369e9743dbb3c2467b80ca48
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
a2266557c468fe3adfee46c368bfb14a605f6659956d22cb7cdf46802e1c7e36
BLAKE2b-256 checksum
How to use checksums
df50b62122e0295e742f169b6bd1fde02d08b181d91d9599dc3ba8e85ee60b6c
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
af9a8841e20329a2b93cdd7eafb9af9b5fc84019587474eebc4ed67b4dd9d4fc
BLAKE2b-256 checksum
How to use checksums
f41b1026200ccb5dddff6305c4c17a958a8eb56095d4dc4c4a4b11d253c54e82
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
ffc045ce412f9609733765c490c0f897b5d6a921e791c22f90cf4eaf782fe2c5
BLAKE2b-256 checksum
How to use checksums
56deba5454b449b8181ff344fdc4573065a59d20139b696875529350d8dcd9ed
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
5984a4386c1928ea79adcf3d1401338e9e732a39dd357cc687dd7f1a6f45ff0e
BLAKE2b-256 checksum
How to use checksums
d95e1d6c57d9e008db33a49e2e0f66b91696f20984bcfdac43f8d74ffd177440
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
91e5a50f8d6c14f44610fe2ecc2fc9503ec6edd15023683ff4257453a404133e
BLAKE2b-256 checksum
How to use checksums
a20d0d9fb97f81226c9e7f0f15ff95d2fd205d2d8d0b048b38509d8447f3b74f
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
1741449aedaa3ec7a1b342631b3f40e5b23b493be901fcdeab615c1e9561225e
BLAKE2b-256 checksum
How to use checksums
35a5e74ec3591d8f0c3b6965e0c70de2f5b841bc46f33fa974fed997342ed27e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
ab7a2aa3f888f38821a446445dc6a22491c6bcd63ae5ad0428c132232d246a20
BLAKE2b-256 checksum
How to use checksums
748c6dd6f889258c34a533d509e33092cecd7e49b47c3e03f93a9d9e233bd4f1
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
44eb8421734cc8edbb6825f73ec29d58536c4cc1e01bda4034890716193d51cb
BLAKE2b-256 checksum
How to use checksums
e851432278dff1c989ccb55c7bea0b14915fc2ed99a8e62ea59b656c40ffa035
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
c38aec2b19874d8635793e264f926e55804863457ed2a6862e69e000ae94315e
BLAKE2b-256 checksum
How to use checksums
32514908ccafb7145c100ad294cbf553784929814e83a7792ec18c39b83867b1
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
b30111471ffa19e81a4d0f2c66a0e4098f7252696beac37200b0ead825013a94
BLAKE2b-256 checksum
How to use checksums
52928452654061dc64c1e7ad02fbf8f5dd4e753bffc8bc9620b1b92da4d799f2
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
96850350f11046d1a26c71f238f1fe7a345c9d4519438f6e81e3fec93cb4cb7e
BLAKE2b-256 checksum
How to use checksums
7050241dd42692c4f3363555b052d28484fd0b9e4a06bc3e179fcc4580ab402b
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-cp39-cp39-manylinux_2_28_s390x.whl
Size 3.8 MB
Tags CPython 3.9 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
c4c5b83ca1f8c1dc00e5c8efadd2eec46aa7ce84bceea0c2c3aa20f3575a61ea
BLAKE2b-256 checksum
How to use checksums
7d9cfad91faa009360595841bc99279f62108f51287f327cc8546b634bcb7e0a
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
9ade622cb9e04319e03caf6e1d55a80518d0c2f632cb3439871448ae8e36edaa
BLAKE2b-256 checksum
How to use checksums
9e93253ae2c8a5c5421f237ec66cc18450344dacd67ca1af50a53b3992545bb2
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d85f2b079096f7c56714ae4b5a41ff21075fd25215d86b7cd096d444e560bb3f
BLAKE2b-256 checksum
How to use checksums
3091c62a5128dc93b2e72f18fad00a2da89f1546d2f57dc5588d0fbdb318a411
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
00f94d0c44b4f7ed0f1d14c8a13e5e08b89ea2b2fdaf72827eccca69fa324391
BLAKE2b-256 checksum
How to use checksums
a2074f02b412357a006be2175689cc03c92fb887cc285e86c7b41eaf82213347
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
b1e90b3efffe6f6883279fa8ada67d6d98deafd49268b82da246312807ff86b7
BLAKE2b-256 checksum
How to use checksums
81f481b879c61514ad50d3d0c8641be108997ddc7e8bedfb8b02aaaac4b11343
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
fb37d9bba9e3aa00026ba7aeb6c70b60af89b5e82800a4c2b71f207d4eac3769
BLAKE2b-256 checksum
How to use checksums
0e785902093604c37a841d04886679d9ae4d2e4206dcfd55a09b3fdafa38dc92
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
d7da77cf2f64804749fd2cfacbfc2b2ea1e97b54f7b6828934ca729c70edd5fe
BLAKE2b-256 checksum
How to use checksums
9bf823a8657f694ffb4e503d90a7abe01623cf553045ac2774ba6ce49f19cf82
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
01a000cbcdf1998d1876850195f296e7afa69bc4681b0470f9d5b9e71b80eb01
BLAKE2b-256 checksum
How to use checksums
53bf43a041d098e3df00a33b6c9fded77d21a5486cb82187104ba70d7d0ca78e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
40790ecb6a06674caf923dd64e6c72c8251b00e843c10ac43df3692eb8379133
BLAKE2b-256 checksum
How to use checksums
d450ab7de78456e2af076077bd4d902a1e3b857a3dcbfa378e86d9a864460c62
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
e967ddffaeca961c5f392714bfa0716ff8c7d9c24029aa5d455509e96f215c7c
BLAKE2b-256 checksum
How to use checksums
049112152d4e2c76f191b457e29fce6757113bc68030881f87fad7a9c510a82e
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
9e99d36cea7426fe3bbd3121c87bc3dd12924acdbeb14409b89d82d9c0d07afa
BLAKE2b-256 checksum
How to use checksums
c817c67a9a3eb917b82da2d2a559004fef7f85a8d4fc613f31801cdd526802f1
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
4d1d8e466283f41db3b0b62de0b118375d73022b376372017d1552bd7b4af070
BLAKE2b-256 checksum
How to use checksums
589aca655f9b35e3bc2c1cf084184159c44f35434d35c09d6cebad14393ed51b
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 12, 2026.

Transparency log

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

Download URL rqx-0.1.5-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
531a1a62cf1f21e9711e879114703aaf11ad864951adad517af96973d2f4c83a
BLAKE2b-256 checksum
How to use checksums
c0c7814015f4a842e3831bb2102525fc3edafa8bfbafbc20b55a667fd1990745
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 12, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.5 This release

110 release files

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