Skip to main content

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

Project description

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, benchmark methodology and full measurement results, lessons learned.

If you only have time for one, read the report. The benchmark numbers, the architectural trade-offs (sync vs async paths, retry placement, JSON parsing strategy, runtime singleton), and the things that didn't work all live there.

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.9+ 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 cell 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. Full methodology and raw data: docs/launch_report.md.

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

Pre-0.1.0. Usable but the API may shift in small ways before the first tagged release. Performance results in the project report. 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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rqx-0.1.3.tar.gz (618.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp315-cp315-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

rqx-0.1.3-cp315-cp315-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

rqx-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rqx-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rqx-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rqx-0.1.3-cp314-cp314t-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

rqx-0.1.3-cp314-cp314t-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp314-cp314t-manylinux_2_28_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp314-cp314-win_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows ARM64

rqx-0.1.3-cp314-cp314-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.14Windows x86-64

rqx-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rqx-0.1.3-cp314-cp314-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rqx-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rqx-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

rqx-0.1.3-cp314-cp314-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

rqx-0.1.3-cp314-cp314-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp314-cp314-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

rqx-0.1.3-cp314-cp314-manylinux_2_28_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rqx-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rqx-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rqx-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rqx-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rqx-0.1.3-cp313-cp313t-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

rqx-0.1.3-cp313-cp313t-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp313-cp313t-manylinux_2_28_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp313-cp313t-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp313-cp313-win_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13Windows ARM64

rqx-0.1.3-cp313-cp313-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.13Windows x86-64

rqx-0.1.3-cp313-cp313-win32.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86

rqx-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rqx-0.1.3-cp313-cp313-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rqx-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rqx-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rqx-0.1.3-cp313-cp313-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

rqx-0.1.3-cp313-cp313-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp313-cp313-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

rqx-0.1.3-cp313-cp313-manylinux_2_28_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rqx-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rqx-0.1.3-cp312-cp312-win_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12Windows ARM64

rqx-0.1.3-cp312-cp312-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.12Windows x86-64

rqx-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rqx-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rqx-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rqx-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rqx-0.1.3-cp312-cp312-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

rqx-0.1.3-cp312-cp312-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp312-cp312-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

rqx-0.1.3-cp312-cp312-manylinux_2_28_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rqx-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rqx-0.1.3-cp311-cp311-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.11Windows x86-64

rqx-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rqx-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rqx-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rqx-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rqx-0.1.3-cp311-cp311-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

rqx-0.1.3-cp311-cp311-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp311-cp311-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

rqx-0.1.3-cp311-cp311-manylinux_2_28_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rqx-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rqx-0.1.3-cp310-cp310-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.10Windows x86-64

rqx-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rqx-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rqx-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rqx-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rqx-0.1.3-cp310-cp310-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

rqx-0.1.3-cp310-cp310-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp310-cp310-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

rqx-0.1.3-cp310-cp310-manylinux_2_28_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rqx-0.1.3-cp39-cp39-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rqx-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rqx-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rqx-0.1.3-cp39-cp39-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ s390x

rqx-0.1.3-cp39-cp39-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp39-cp39-manylinux_2_28_i686.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

rqx-0.1.3-cp39-cp39-manylinux_2_28_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rqx-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rqx-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rqx-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rqx-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rqx-0.1.3-cp38-cp38-manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ s390x

rqx-0.1.3-cp38-cp38-manylinux_2_28_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

rqx-0.1.3-cp38-cp38-manylinux_2_28_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

rqx-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

Details for the file rqx-0.1.3.tar.gz.

File metadata

  • Download URL: rqx-0.1.3.tar.gz
  • Upload date:
  • Size: 618.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3.tar.gz
Algorithm Hash digest
SHA256 8f990865921eb48e140ca74cd1630cf3fde9c3aae8fcf1a7180571520ef3deea
MD5 9eddd156b33aef150a8082accbced961
BLAKE2b-256 8c10ddffa562bec58e8927c5af1ab3f2e609f09368aeca00ced9eb9ad2a03442

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3.tar.gz:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 843229a729e6eccd4a82e4ea844bf457bf39aa86a1d4300b712d8ac33237a741
MD5 00765bf155c930581753e14ea6b9b4dc
BLAKE2b-256 c25ba0b070c356ca6dbbd91de99ec3ce7e5c4513c798b32ba9aa485582c7c1a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb42ce974e1315ed6ffafa610aad87cbfa91907c09c8101136f797a0a97c89d0
MD5 618594ad4b3d6a6d9e427deb7e601928
BLAKE2b-256 7d487c5f9003e1b2aeaa0c5a1067178a146db4cf6f5091bde6ce93cbed9fc605

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1b5d379d4d3d21c9bf19aca9584c03a04dba316099a282c36f763e170d8ac57
MD5 37acc88c88faeaeebc963b745a480738
BLAKE2b-256 737c62f435c032b4f53e73058c3c69dacb6399703f93436728185e0f4e7ff2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5473820a76b436abf17a452c4c0587fff65fe9001bb708cbee80a0db418ac3d
MD5 76e3d7dd6d9474e3eb82ffb2fc2e8463
BLAKE2b-256 e6f1dd5a69d56e53c7df6f13251dde75aa72c851866f4cfc5cf3e9e602b72545

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c2156d895b3495f4a3fc7719aa0b4e106666f4ecfe5dca7f5ec8ff0b44544a7
MD5 31bffa6c394a5c80244863ed78f9d6c3
BLAKE2b-256 6601927ce57441f1b015ad01d7ff3af2aaec1982bc1712e5421e81ce2ac701c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a624f74686b888d5df770ae13a258cdb1e4571a24ca11c5f7b1f426329c7f232
MD5 5a538bf259cf0aa32ae57aecec6fe72c
BLAKE2b-256 e5ecfcafa6ffec1376b697c7b3302c46b76e6813806de6f9cc394346791df13a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 43389bb594c6dc60a869be08cf27024741697a26e44f848cf0b77900347a28d1
MD5 fb433ff51242b9c7e8db5ee5f6e360f8
BLAKE2b-256 0515910a6e7edca3259d4231e9acd22c1c0fafb954770ff2eb2fd6710ad82077

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5af70a95d84bb5bdf65c6c5b82fe3af7a5a6abd7451ea3a81ded5bf1e1f4ebe2
MD5 c0504eaf57516f9d7f6b69bc12a29745
BLAKE2b-256 ae9b978fc2863e8d6d7a6d3ba6efc1fdbb7fba5410624f72e9caaa5dc296ed21

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1ac6a8d37568c58de0a7a3f43614a14236543d41e8a49cba6996dc9c7f38b30d
MD5 6f44677cc4992c93c4c580caa78e6a82
BLAKE2b-256 e9f707d0d957260e47948291e1665f1b8284be77e2a75b9c94a0086dd927a315

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1ab69aee7a907e1cc6123f35f002a077a5f1a849d18d31ac31d06404200bdf7
MD5 b68f0188d320956031ab43d1e5741068
BLAKE2b-256 ca285447479d50b19dd4b7bae4f83850787edbca339b146a535f6815b2896049

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b142704c85bc29c202c821f84ff22699f0391c1cbcfef27284d952b0fb5dc8cf
MD5 631f3a2eceb8fb501be1c065e220e948
BLAKE2b-256 563df9d3e8163b683c0f1b0d63f425777c56f4d46f541aab9bd521ef7319b603

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp315-cp315-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp315-cp315-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 462aedca4cfa5e54e0743d8d99661da8246bbbcb503ebf70b3ebc7b422160758
MD5 c2e73c488d15088b1abb8c2a64d8378c
BLAKE2b-256 04c0f23de3d0e6b826d8277d6350181d319e7a4f7fa69ac7159b1bf790ad536b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp315-cp315-manylinux_2_28_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8796f6fe8f71a6b882d5645372a2e7c2d0b9904b9e0a28bc8ddcb886218d9b96
MD5 ec98a265bf33354bd7b1016e5b99ba67
BLAKE2b-256 e4699a0c37e2c962cc7cf4bd33c2d095fca88132670ba929410c018125629e0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9ba5c7d641413362080ea3901d550b4af5d631f0025cd989be775a58d802a3a
MD5 6af2352a92ed24df0fd83c929081a7e5
BLAKE2b-256 6fd3f676a6c04ad36299acba03def2ef45a0e9cc19e13294d8eb3ffc04065b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79d3fc187c2bf0dd8a10434ffc1e13bc5c34baed1b78e4c74733beb3e7b41d24
MD5 6ba1263442725ee5fe61d8b5eb932614
BLAKE2b-256 82e9599d73e3969cf721eaac9c225ab571b8d181e0565590cc4f776c2712841f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03240b410a00b0c662c0d6beb4cc0b4c8e91f6a271925947e4f7fed9146003e1
MD5 2b0f53193c822ec457eaf50a6e604802
BLAKE2b-256 1b904acc5d7499c891a04aa6b9afd19fac08ba1ccb67b9797edf34a8e90ff879

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cdf56fa33dfe06962644f976673b4a89cf737c30644158eb10483a90d2a710e6
MD5 a52b88f900ea05e5cdc328ab44898912
BLAKE2b-256 acbc1baee5bc7d1fc9b2033192d65190ea0a949a841c3582fc6ce2244e030257

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314t-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cf551bba3b070301ba9555676c9dd9d02ee2a5070fbd4f8180fc090b9fe9488f
MD5 41d5a37446201cd8739ab21c0a580629
BLAKE2b-256 9cb9ebdf294ccf0ab4ca7c1917b88eeced4a52673c06d13f66c3d15eab7abfe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314t-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 febb2140748e2b22c0011a4ced5fae185df9c182db199cebc95e0e13bce88ca2
MD5 8531d3e35864b7184b2773d851790290
BLAKE2b-256 920f84e5250a23c45c59180eb006e55565df56088ec2e91e9ad0753532b1ec5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314t-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00b1173785a86c4172bd2c1c7b01e4953fa7e29488df3762e9c67d7913ecc5a4
MD5 0517ef2a91722d22f5ad7a453004fd04
BLAKE2b-256 2ff1162915a2fc0bf45cd086414f251c8cb46b9b5e07f072b49a269610895e5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 53ee4972a47a7afbccaf7ced7f60120f371df24ea0dab7e57db2bbacf30d976e
MD5 f2eb4a586a220a8c86eb7f2c93a04fdc
BLAKE2b-256 5de1accbed4b2a2d85e62e1377fd9b47fdb87694b3e9ff833fb1a8d8e8d0e620

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-win_arm64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8ecf6fb596bb1d962210c0be7bc4cb877d6b27d9c879ecd79df9a3df11f97249
MD5 62734a454ffb1e5b1ee36dd2e33e157a
BLAKE2b-256 7ed268b06c51fa2afc22a4c8ff3bb523471ae1624561e1e00b7aa38977edb77b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab21858c243ce8f70d0cf8fdf0b1823d2d2457e41a1a3aa2e5a8824575295940
MD5 dcc6b90aa17c4450ebff4f133b250e93
BLAKE2b-256 9e22b7b1a2660fecf931804861155adbaa63d3a529ef2f35297f29d83ead865b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68940a0ef4df750bf9a7d85607dccd56b915c31d1f00ca422a2702b497605416
MD5 06e71f79455ac6e8506716569540018d
BLAKE2b-256 7b249aa64ba4b3a0e222c82df9ee220c17705d754d9e9cef5d760dedbf4c4c2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b413fd382ff75c33c9ad144af1b667a765245f4a50c792541e96d19842be5d1b
MD5 8246fc2698388d9c72f1e24193d83e90
BLAKE2b-256 3b1491d6119121f09499d1e7a1200e6da396e80bc4bb8ed4d9313eb71fc9b6c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 270c851d54f964ce9c6f2f0f789d63ef5d9a4e17f57975f35decb52ec1e1d612
MD5 a8eb30a5329db248c68ad26eb06a1902
BLAKE2b-256 15230c331895a8a7f46f085c74b7f407e593615e8380b9ceae8d41643bba628f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cbdf45409656fc0896f89f1efc73b2e19b230d5b4f8dc3494a14491f59558ee
MD5 f529b397b6bb62724454e320b72265f1
BLAKE2b-256 89d7070d13531f8528643ef14c613d84c3c59ab7a65d16a39f8575251065442c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ed4e19bc2fdfbe27cd879bc1c2ac3577d89a470c9efd2a14bcac4652a6201d31
MD5 28b34bd079a786dc35203684f0b2a141
BLAKE2b-256 6bb22071699c5c22bea394b85afce0fe94f7a8d541f5da095e6545c9e81cbbbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 69aabf94103444cf0372fae71d9aa6fbd1fb567146a25ec91d307459bce9d9ec
MD5 370fbc96fe29df9c1903c64bd9943275
BLAKE2b-256 b4bdb344dfc56cbc02ea75e2bb5311ee89ef42bdc2f6915f90f296f3461a13d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3ee5e42fec71d870fb8ce5ddbda54142c657d661825cb9e7a452f7813933d368
MD5 896a69613e41aab4e100a1bed586cb72
BLAKE2b-256 c8fdf65debb3567f9ae5d4fa3fd037d36fa867eb2f8d4ff6c22927e8229b5d07

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-manylinux_2_28_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 da1d3fe03c91fd9d7b1712173a74bac066662f34cb6c4c45dd4e6fb7627214ee
MD5 68dd416258921f94d3a16a7ba8a9fd05
BLAKE2b-256 1b79f8bfe7f3f9b4d088ec9b19bad6494ab45037ea13939bfb5490b5f465ec40

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2f02bf3fb984c56bb034cdc9e0e6393375a2447996496f38a233309ecb0dc1d
MD5 cb3bccbbc1ff3bd5791b6a806ac9ccbd
BLAKE2b-256 1f7c234e2427d7cf691c3a5bb138da26a8aa690da73e873c4da835d88ca07a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f027ec37b425d99785c769598429a4a2fb25fbb475816e5881da5b19d164b15
MD5 4cbf366bb325a93758825ba76045d261
BLAKE2b-256 25137325645f8240de2754591b9c8402f7382d840e0b145668adb7f6c2ee7d51

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e702a069be0641079e82678192f52846389f2c42d3576ee5ea30eb4fc89c1276
MD5 9cdfffcd01a48014f7addc41f73f464d
BLAKE2b-256 1e16cf4e2847e570bb036602445234ef1d145824fcea8e04002b01bf8a8acda5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b43e987d1feabd43019afeaa42eeafb1c20f08e8e709d292cc4cfdf0001038c
MD5 ad1ce3bf280a2ca78001bcaafbdd41e7
BLAKE2b-256 31ea3af34d0362a30c903f8af3147df8510727365ca31c87ed381b7147c4427f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efae1b42a389b5ba3f303fdce8924ecf76783c549d21ef183129dffdda0e2529
MD5 f3b93408c5c487aa68afa41f47d7790b
BLAKE2b-256 2dab2d62eba10fce9143323d78ffe8b710dfdcf4fb70b97af535e9a666241d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7689696ed630fef44132858a12bc9d44294ebffc89f6327e5df30d1cc6516921
MD5 1d818386778c140ea75dc6090b0763f4
BLAKE2b-256 d9f5cc7fb2ea1ccbdd2c30be7552147e686ca22102c72580aeda7b93f0f8eb88

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6400baa487ea5eb2ed2e839dd0da51baca5f0ae9585d24f7e17eab640e0b23c1
MD5 76e25ff0c891ac7c45dd35c10078f806
BLAKE2b-256 d20fbaed602caafa3b97b86520fd0b8c07930553ae2d5c76e3b7087a9162ca95

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a9ff1109f91e0dc1a142325a1954bbbd732e5afe700511631413b5fbf12e0ad9
MD5 92cc98603fb7ec45b6ff69813c0a726e
BLAKE2b-256 3d04c0101913a636613fac1536910021921967880931768c25564647af585995

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313t-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 86c27a855f9750ab3207b119ed7ff8b2f13637c000e8ae9aff3294d0688761ea
MD5 61b91996da3a34569934ad09c15616a9
BLAKE2b-256 7ce25dd576edc154d1a3f7586b0df9271a6dab660fc9729bf0cb49893640eb86

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313t-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 01050f3770060faa73e771a29543ee1f2416509fa3a5fa02950b7f536727a566
MD5 ba2d5bb917498e6bdd90998ebabee23e
BLAKE2b-256 cabea9f9da83bc2146733f881cec8398f90f98305f199e3712aa18990190c41e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313t-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0eaa7f3085f48caca465d5268732e1f2d66ad82e922548aab467ccab4f710c83
MD5 c8487cc08491c16cb27629680bd13e98
BLAKE2b-256 be25318c7ee6831ae0e366f89e97270fd7e8a75e546c364e29e33fd439fad6be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 90339c27e3e2e405efdc4a4ee72d9d5c4a5a6c4bf25732d0d12966405429d1b7
MD5 0bfb4f442bb26f9ed7597fa7723bde3b
BLAKE2b-256 b075849a71a0ebdd7aa04e922cec5d0d8a299879a3eacc772844525c4926e521

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-win_arm64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7a7014751853bb778ad83d449ff048b1c60cf215dcbd4c3351df813a1a5ff471
MD5 caf026cbb196a240f27c60f3ea07aa5c
BLAKE2b-256 92f0449d73590fb557cc504f1f221210704ac8ca949d88400e8ff879499cd3c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9a10b491617f5f664340f8ea9c39e38fedd716059233b1a8bb77c17c7bd56165
MD5 e8e10dbf41c0c4d8476880178717560a
BLAKE2b-256 2083ede1e4d8d0497bef28e1755dcf916cdca7003b8e8fa04dbdcca6e97fab94

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-win32.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 157cc19e1dbbec7c00e519b84b124df27f852cbc171dcf8baa929be4d23f4354
MD5 db77a204b326764b2a3f4f635c721e1b
BLAKE2b-256 2f8aef05ed07dfc74943ca1f3f89b6e4639164419ef1071bfad7d6e085450b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be48705358eab54fc44daa8a426830a2c6b39af648ec190a471291678121de9d
MD5 19cc0fd74b24a4b05b1ce855bad9ef89
BLAKE2b-256 2a76de0f0e64f55b47dffc8427455dfa2707168dc96a8f508f6a4bc8d8a22d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b01f97e94f184c415f32289a28696b0ba1e67af1437b48d0c650b44b975c4f1
MD5 eca246a4aeff835cd108d606982f5f92
BLAKE2b-256 4455704dd6f2b5e643ac39fc55d12f986061e2503d3411b543f59473c44a26de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9061805d798d3b357dd46d0787546083669b41e3c1ff9e139d23802686caf6f3
MD5 5b314a6278555ffb777a624b08518eb9
BLAKE2b-256 bf6bb970cf8762cf229f8714fd0e75df32f33a977e0bdcd6d740820ccb451730

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09e6bc698094cb8dc7a8f1dbe5ed91b36d7d8296b6ca34d304942c3e18207db5
MD5 7e10965e995519073343922aac80bbcf
BLAKE2b-256 c83e01026b269bf7d6f3cb6293bddc002a34f4c5ab45dc05d6455e617020d5a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 05a57c9095228bed78f728d427fad04dac572f05d81ec9612c4d07bbd5f5ab52
MD5 6eb3dea27377f88a5136a7817569e2ce
BLAKE2b-256 b5c8eb2c9da87c2e9d7be48ddaf5dbb0e3f5cdabbfe4ca2ada7b666474954e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 10aef3053e02d85186861ecb2d16bdfdcc2f40ddb25b61ea93306f47dab9310e
MD5 424bd9c2fd2b3b836cafd1c155322efd
BLAKE2b-256 27fa1a19713e37dc21e1548ecce7dd806ff450cca75e97a8bd8ea1077f0a5f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4b0abb97444e733ca030cb847257bb5c76e15399cd501ad646f748b9f169aa71
MD5 93685201c79656a0cd958bbd25bd4f51
BLAKE2b-256 240498dc952402451043ec0c738a8bd1141833b35ba4873e618fc110d6929dfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-manylinux_2_28_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0ff7cbcc020a0757d0c2f72e26dfdae509675938594779184b658c26ef4d451a
MD5 1151394a17c3c67b88377305cd1c0fa3
BLAKE2b-256 d39e35a421301b403ed6966e8faad41e46dc1fa04060b5c6b20b074f44112e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b47e91ef9b54d1d0ac7a94b74ffc4a35df5adc5526f1ca956d2391c4a7cad7f
MD5 1689f09efa087b5b0824fecbbbffcdb3
BLAKE2b-256 9413d47205437e9282ed53baf68baefd4adf31441f2ce5b582c55fcf052dc2e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cf0bd0bab128c46e97986e03896640f55e7fd2030905527a5ef4ca336386a87
MD5 20099d3f41e969012a78959bcf0e23af
BLAKE2b-256 2336e76684011c84c17cd6e40ee0fea0cf0c9da4fccbb42de2fb1e19f9a6d7b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6693c3716f87d7574b413ece880aa2df056fb4e12a5883f2009548461730a9e9
MD5 3efe1729358e11160ba198f8e318b6af
BLAKE2b-256 214dcfff80148d2b23bd67b49292a5d1a3718eba0071d31442c86f444d5b92a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 157db7329b36071b3b290814aab4b48a702a50127bc371deb0eb630b06102ae0
MD5 45da97e90ae5e4f14c449c443a154a22
BLAKE2b-256 7e52f99d68bf2c26f8ce634847b99a56b7dcfca79b498dd4dc86bb19ede9c0d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-win_arm64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 84ab70910b93ef1e29bdc40a223cad684729cdf74eb7386e450b04d66d722f06
MD5 aaea7b30a32492bfea10c5e2e1a25b1b
BLAKE2b-256 8b1a4203d838954b70c7e5b9e90e50c3065216791acf826af9f3003b475b0cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cd02e08897a991d1ccf16a895e14dcae06b9cd2124cff7006fa5ce162332516
MD5 71281c3444138732808319281ea9f94f
BLAKE2b-256 dcc109de3efcc1dd430bb104b7b5873bad5aa7115d554b60d8d563759d9aa1d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d26b6acde94a0ce272e3916bb457856a2ff1b29f5a0de2688ad1f2c606898eb3
MD5 2a233119d95b779dfe6cc593d51dc3c4
BLAKE2b-256 f7d74291fa29b92c7acfd0e2618b939ca6b405b9dc4e7467079ebb8a69605599

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44df761c3df41e5ae68f673f2804eecec7351d8ec273bd4698816afdc92096f6
MD5 bd8839ca9f8325e6cc75888d0655b0a2
BLAKE2b-256 3680b0610bef3883681299bbba697220c54f5ab15b8ef0327cfa0f52960d78f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0f3bde1015d0c3383334c200c79bd4ff8a8102ed75fc4292ca340480371cc5e
MD5 cd10842dbaf365311f17c36218ec2114
BLAKE2b-256 f611d0fadcdd059a44ef7b53c19a8ff662c977d5ae44ab19378ec4604f036381

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51180a01290e2151d44267079afb79250ce237a8ae8bfce96a0cb21f5b1c59d3
MD5 37a8d2057b30f2db7c7906d705546461
BLAKE2b-256 04aa9aad91594d66890d5fac29f0d6f72573dbb59f9fe7bf677405793b773bec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.3-cp312-cp312-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8e3896cbdaa9901d9cebce39aab6048af80b2d2f931e7c393f3e9e41195e584d
MD5 63a363e82786736f8b23ce906577d16e
BLAKE2b-256 bea9d57b06fe25c2287566791f58675ad77c0d00adda7d69a7689a236561e755

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8e390bc1bd50c078e023da73abff3a7b05aa2ca9f769274d40e44384b1247f53
MD5 3d62deb025a191f1ec81211037fac8de
BLAKE2b-256 5599b62d0a32293b66b6748f8946aab39b8dcd21cd43c0ce6a4f46419ebb0632

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bf25223fd4bd9d164289eb1ee177ebe8c9148d038db2509997cd3f9b2146addd
MD5 5e77076a0fb5b4753ec5abf6ff019a7b
BLAKE2b-256 4b3e583723edfddc33b7e338ec6d907fe6138b644390ded14516fb7bcd637ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-manylinux_2_28_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 53499fb4f43a8f48f88c2f975e530a982c8173e156212c26a02c592883581e77
MD5 b0dbe0633fd9fd1257a61e6779e90c10
BLAKE2b-256 e9431b4cc1f74e5eae3b7b2c89edad7e346e413f4186694a35d9598335e0cec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d266721215ff7bddaf35b7eb997cdf5f27cc36598db73f1d3e809ccab650f38
MD5 0fecb405f80ef421f1b292d4f608fded
BLAKE2b-256 46e997b6831acaf365eec2f77a631dbee646e49f56e422126166918f0ba19486

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 232d3af54cf8095956f47a1dc02cfbde618a03b1a4b259dd2b84692268b7284d
MD5 226b0b0d11d990964328cb18a1dca31b
BLAKE2b-256 2ea975e52ef5251a72ac41510d5efe21f2cd846b1863ab59a779bd9e5277f7dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db1f4d77fa800804ccb212013d5de08097e3f19a8889eaf73a52d9b57e071947
MD5 025fed1fab1ea22c97733d0a8e082808
BLAKE2b-256 2ec78c1194b5f9c81de03fd27bd9442d2fe889b22cc91b71afb78392d7fe7c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2410a995600c3b0598300dff896fe74d753cd2b9fe0813da7a90bfed06178466
MD5 70c41dddcb7923b7aebc989c0b119241
BLAKE2b-256 433f2450978f6e17436025285cc46745221033454ea56c637e2d3e683fcbb52a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bdc0842e282bf1b12a4b9d6c4a70db6b3f19a8f3921801025aeb7384599b5829
MD5 a38b6d5c4340fe9589969920911afe64
BLAKE2b-256 7b390e295a875eea7e413b1443a5266033377396c3c6f2bea288c05cf2bf10f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0330b0bb1e2700233fdbbd155fd91bfc0b470d88c9473ad7ec73e100d4618fa6
MD5 a2a8fd325fe39b070fcb3d07fb694ec2
BLAKE2b-256 1135b9abbde59253f8b0c38606a3ccab386d083e28ab6779c1ed5f4ce47e4775

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88c933ad527d1d61b7c7ed97bd86d46567b9ae3442870685a5005ee5da8d9e5f
MD5 9f89a8ac77e2b91abf0b92e6ed9678b0
BLAKE2b-256 cb471c647290936998d5f087dc1431dc4e4e0d45911f196b706f94536cd15543

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b210fb17bdc94af5971c1529fbfa8b12d2e4086d172c0a3dabf560205fcb9f9d
MD5 4e8d7e14320c6b470e87a474b4649a45
BLAKE2b-256 e3e92e6a6890a6cf54e664211f302642d2b9542f697cc92959fb4bc4f3d3457a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 280555be7b74d8c144ebfdab1a1eeee06b5340eeb0a46e53f5875d8d7a60f40a
MD5 a6d212ac56a14fc88d5635e771b1d02f
BLAKE2b-256 42de0eca19596e1243ec5e82dee8ae1bc8a51849a1251c689a86d6cd6905309c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.3-cp311-cp311-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b9bdb5822020afa0b42ccc05698157ac3c3d43df0259c51badf38ff0f9cf809f
MD5 ee5163f2795ead1d9b6b288ddaea280f
BLAKE2b-256 f4b29abcfd0e748a6c7ebb5bed2a8a773e352f4dc2872354035492e0e6fb471a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f578dc814407b5e3fa3d75a428142887255f1bded817dcf30680578047179d54
MD5 d8553141eabab4ec8d220541519c5391
BLAKE2b-256 79a2d48c11cb6e384637c367f387573852d23514299b7017443469917b791534

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 63276620bf9b62a23459aa654576e88eef8d6e9db2671ab424df80145f872e28
MD5 6abc8bb2fb8ed09ec7c8b93b02bc40f0
BLAKE2b-256 840e29c051e2f40d5649788ac3868484e9134290eb33d174c43ca84c2043d418

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-manylinux_2_28_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 aa74cb5e4f64babb189e9c7940660e0c3b9902f969220531895775b512550644
MD5 7587d67ae879d88a6904e13fe2065e60
BLAKE2b-256 daeaba3b55742f87c81c576fca93547177a2d67189897309a67213b5458e6d4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd60871fed8e9421fca947a5bcc3dce4a65b1af68b7a554bc5f0980b5490b88b
MD5 8ffe6f44909db9510437cec62b27b275
BLAKE2b-256 7bec5e52fe1ba11451337a7f25aac19680e942db61fa0af595c9333a27217b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f481292fe38a317832977de5ec1b5bc1619983671f3e60237e2ee3706ae12da6
MD5 49f23a9d5ffd3c77e7be1ec3870fe5c6
BLAKE2b-256 efcda36118c8908aaca051c337734381bf2744202e356c58c7af156abbc4efb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60b0d46ff0db618e3c5b8cb4a5c78f4590e89e076723891b2a21d65e71c15976
MD5 766689d6e738bb25e62ebb74f79488af
BLAKE2b-256 ecce7fac32b2084f6f8d0f1071b0344f0d2e158e5fa44b3012701c889fbf51c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7a04e18316ebe6d1e64e9f5b8cbb3321cd2dfa0d57a2d99a7f546ecf919c9e67
MD5 482b52e85329f237fa8611c620f67f5b
BLAKE2b-256 e60eb675c5ca246952768aa2afd689fde1e572329e2c4ad64132bb6e5c36af74

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26573bd5a10127c27b7b194a8e0d02c8471a0194ef976fdb415be2ea135f608c
MD5 4bcef06c1f40bcd712b2446876cb5a8d
BLAKE2b-256 84dd6fb1b8f583b1e85ba31feaa504470b117feb84d9853f3e0d10c847552bdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 172c3c02ca1a18b9a7edf56727bb221aef661e38eedbdcae1835b73ca625551a
MD5 08327fd374061c1ae09f5ff73ce2381f
BLAKE2b-256 95d0c6ed9c170699fa8a2079527bcc69237eacc4bc0b9d7f83d73f1b66aa26a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b08ff47da5b5c87d5e6aee9c28c0aae9c57d1a34666f35b68935c9720eb07cc
MD5 49dc65b815252f0325bf48dbddbcff83
BLAKE2b-256 fa2170638a1a1e1ada069bb5e91a582d67761909003a09311c373b6195795c2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d77b01dcf999c0d83d4151c42578f18bfbbf8a854a3d31e9a980ec71990e1375
MD5 b894e9c27656716346eb586e503e8920
BLAKE2b-256 80926bd8448f55a4c757f2765509cecd4c32472d944cb5d3888d990048f8b7a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76e861b05e498dcf13773475cee8e1a08c5a825cfffb0a1a3e8969a0064a245d
MD5 fe1f5e64e561252d3f2a9d260591459b
BLAKE2b-256 6f040d4b8f3f10958fd63ee501033c4db3f8b1db6e55c4dda4224ea17f4d6dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.3-cp310-cp310-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e8c23ffde09fe0f6640b1be28e2b1c092fcdf9e23dcc21081e12d7dc8c8b2d8f
MD5 985172df37a2ad7b093e2ea0df31875e
BLAKE2b-256 7c41de49c06a505d68dea3d58f69a1270283c36faa86d71571d1057f7e050023

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b616d1054a40431714dda83615603d8f0ad29c469b4485e7f46041773729ac69
MD5 a9f724159d0468c241b57241033de85d
BLAKE2b-256 a2417a707847e4d05cf2f39fdb1eac57fe84107f88dde41505ef62892111f9f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp310-cp310-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f7abf04616ef2b01a56f69cb6e287031668a32ae1696646f6e04f5d1e23a910b
MD5 90593f7a78d16e2eddab1e7b7da10d69
BLAKE2b-256 904a6e39f2855d29186aa2ddfef06d0552a76100f06d3f57335815eb437a2508

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-manylinux_2_28_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f5b31a4da372c88f2700196730061b40acc088cfbd2eb68c839edd016067569d
MD5 4615e62c9cc48281f3faae6180e43edb
BLAKE2b-256 9dd1f7b9df6e65d451b0e833c91e747a7e42ef5b9425fce81e01ad7c067934e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9bc3a37e5ca3e1073245af64d8d0f6bd1e9a4610fa7a86ea9d07398765d24dc
MD5 88ece81d11943cce8e2afb66fd24cf60
BLAKE2b-256 68fef5b172889333ed419b3689b8d99749668a2308fc1569e8a890a256f56983

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74dc8bbb0fd9fd0a36b0770fe0ae91748bc29d4ab7f48b446ada5c23702cc889
MD5 b3562a8d56828d4bf2680ce81911fc4c
BLAKE2b-256 5d2b13cffa416477958bda6a050490fd933405acd146750d6402b70e04a55cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43c5a202b952e7054c8a8dd4be376e7dfff0adbea1aa5059bc1a50e05c25898b
MD5 8a6467e510f8493abe884e3b40d00c9a
BLAKE2b-256 5562c8fa4ffd8fec80c43230ef250d63060d1b13989cd64472f8f0ad3475140f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47e503426a77f9b79efb330fd08660a4e5879b0fb58dd0ae08f877c4d0ebe307
MD5 1b70450ba88283ca5c7cecd942539c03
BLAKE2b-256 09ade13aa5c246b5aee07ca1759e9ff4eefd46f5b89727c4aa36cfd520a1ac0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34b318b91f333b71c8753050cb7aedc77a9b0d49d7d09a3f4a8d3c87022b950b
MD5 764e6b04b7cf1224fa55b9db4d392a1e
BLAKE2b-256 aad552eb7df6a73f9191e153d68b2b3ac745b73c9ea67ccce7c727020abe5429

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9704243ba64dccf9740bf40f4b01f066807c4fde824c0d7481f1646c36f315b1
MD5 40c8f630f4e1d045dcc0edc9840447e3
BLAKE2b-256 126fd4817bbddddbe249a4d882b03fdfa3004473521789de2a277f16d567563d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cbf69d240a5135dee1b145aa89b4b2aa1d1da24a88c41ce7682860000ec009cf
MD5 832201af5d7c312bf5bce410111892e1
BLAKE2b-256 9e5dd7c020adb7150180587013d51733517cf351f458e3608d6a80d3c9e4dc90

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5dbaf6c1f356ac3a69f9820eab2557e319bc615ccfdddf7a1aa8355326eb89c0
MD5 d74c473e4d8d221f71525e454dac6c71
BLAKE2b-256 5ed2c4218d19edd868ee7a9c30d16bd0cc03c089be02e14d62e69a33bfbb6d3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 044d39e78ed4c50a826a8c59e281e93dbdd9c2c94f749dee77f667483ae06bce
MD5 adb920347b82466cee7eea574c723fd5
BLAKE2b-256 cddc3cb4313c3168179120c75aa7c88fded7549b2fd49a86c25e54353c4c476e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-manylinux_2_28_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d9e31d98ab2dad17ac4a0e25a606b5d3c7f7176d2d163ed7810eaa6659bc2ff3
MD5 c6935603cfa7f5a3a99dc51bc2e71322
BLAKE2b-256 c2fd675e525c8f89e7eff1aec412c091bd44429792852b7ce2ec29ac3d624e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1159ed75aeae15a6f35cad7ea5866c6ca29bbee71a5edb5138822a98bc83b95c
MD5 000072c9e5582649a686419699182391
BLAKE2b-256 02533770e773707937cb72c3f72ef2d1d8ca9e2963553e9340f0dee9ca736302

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a298abb1a31e1285591ed09f6f0ce2799ff2e13150b9722456d72debea8216d
MD5 11be4867dcce45af27a501d8d96513f3
BLAKE2b-256 38b4ac58e4d0eab94f334738148165eeb4ebd1a6ae0fa0eb0a1c3899a2053acc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43d8628c99e367b704f86f6a9870582499270b7ccaca14f403d2e856cff92a1a
MD5 12031fe7d86ffd35df71635abd404099
BLAKE2b-256 703f4e057389824753616a449362ec2f115dffba3c5c84b65da3a466b05db086

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 998119010b353fb5be560505c192be118c39c110884926a6b15337166e602756
MD5 5bd84118fb82137669373605e64b78ab
BLAKE2b-256 ad44f647372ffe15b15092e18b553a854040ea1bb625a7b573c93c1ea85ecba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61f0f85a547ef5effdeebcd36f151e95d2a15db3c556fc29e70a0d575542e1ac
MD5 555f749a4daa35015798e54d72b94a70
BLAKE2b-256 f4fd3583e49e97f125fcb675597d2aa106add38da0193fe129719f955cc78af4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp38-cp38-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.3-cp38-cp38-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp38-cp38-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b7974e7e8ed699d99bd6bcc002faf6178d251c13210a1eb6a1b6d0da0eb94d7d
MD5 2027cdeb8ae48d31fdc60357d011be86
BLAKE2b-256 ee47b764245a76b59c88807505057a438889642ce727e3ca32da76c3fc371d26

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp38-cp38-manylinux_2_28_s390x.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp38-cp38-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: rqx-0.1.3-cp38-cp38-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a046e4d7ad57ab7f7686a3b34c0861f0675e2ceb34df52585b3513e2dfcaae00
MD5 68c815104bf49528ab8f1f46e8ed191e
BLAKE2b-256 b4d3cf2d7942b0447c00de9a29fc8e7a25d3a88c5c5162f0025fdccdcec7eb9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp38-cp38-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp38-cp38-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.3-cp38-cp38-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a780779bd32ffbbd0f8e0838da7b0a4c17767a520dc18ec6d7eb134571163fe1
MD5 2f8934ab9cd2cd4102a95705bbada08a
BLAKE2b-256 b3549b6c1bf9228381fd2dd4ddbfb5209982c1db58248d91b21da4f850080e17

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp38-cp38-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqx-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rqx-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rqx-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5cf2cb05b123493ea28eb06cb773ad9f416132887e86edbdce9b14f00644ee67
MD5 5c3ae3cb000ad879742c2cefa60db779
BLAKE2b-256 a4d19386127e591b3d6274cca9d8dfdee272db23557a8617eaa4198606120260

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on rodcochran/rqx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page