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.2.tar.gz (484.3 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rqx-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rqx-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rqx-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rqx-0.1.2-cp315-cp315-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

rqx-0.1.2-cp315-cp315-manylinux_2_28_i686.whl (4.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

rqx-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rqx-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rqx-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rqx-0.1.2-cp314-cp314t-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

rqx-0.1.2-cp314-cp314t-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp314-cp314t-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

rqx-0.1.2-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

rqx-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rqx-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rqx-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rqx-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

rqx-0.1.2-cp314-cp314-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

rqx-0.1.2-cp314-cp314-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp314-cp314-manylinux_2_28_i686.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

rqx-0.1.2-cp314-cp314-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

rqx-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rqx-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rqx-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rqx-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rqx-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rqx-0.1.2-cp313-cp313t-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

rqx-0.1.2-cp313-cp313t-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp313-cp313t-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows ARM64

rqx-0.1.2-cp313-cp313-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

rqx-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rqx-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rqx-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rqx-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rqx-0.1.2-cp313-cp313-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

rqx-0.1.2-cp313-cp313-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp313-cp313-manylinux_2_28_i686.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

rqx-0.1.2-cp313-cp313-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rqx-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rqx-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

rqx-0.1.2-cp312-cp312-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.12Windows x86-64

rqx-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rqx-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rqx-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rqx-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rqx-0.1.2-cp312-cp312-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

rqx-0.1.2-cp312-cp312-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp312-cp312-manylinux_2_28_i686.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

rqx-0.1.2-cp312-cp312-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rqx-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rqx-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rqx-0.1.2-cp311-cp311-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.11Windows x86-64

rqx-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rqx-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rqx-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rqx-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rqx-0.1.2-cp311-cp311-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

rqx-0.1.2-cp311-cp311-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp311-cp311-manylinux_2_28_i686.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

rqx-0.1.2-cp311-cp311-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rqx-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rqx-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rqx-0.1.2-cp310-cp310-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.10Windows x86-64

rqx-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rqx-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rqx-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rqx-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rqx-0.1.2-cp310-cp310-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

rqx-0.1.2-cp310-cp310-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp310-cp310-manylinux_2_28_i686.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

rqx-0.1.2-cp310-cp310-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rqx-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rqx-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rqx-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rqx-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rqx-0.1.2-cp39-cp39-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ s390x

rqx-0.1.2-cp39-cp39-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp39-cp39-manylinux_2_28_i686.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

rqx-0.1.2-cp39-cp39-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rqx-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rqx-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rqx-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rqx-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rqx-0.1.2-cp38-cp38-manylinux_2_28_s390x.whl (3.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ s390x

rqx-0.1.2-cp38-cp38-manylinux_2_28_ppc64le.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

rqx-0.1.2-cp38-cp38-manylinux_2_28_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

rqx-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: rqx-0.1.2.tar.gz
  • Upload date:
  • Size: 484.3 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.2.tar.gz
Algorithm Hash digest
SHA256 b4897cb5f080ee9c0481f1def7fc192129cac894b82f2ecb63514232c412af1b
MD5 c4c42cd673a023eafee1503a084abc4a
BLAKE2b-256 ee26024d83acf88e7c6c839b4c43510040bb1b5b485ae27d6e988b332b927644

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2.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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2463a5a29615766587ad0e75ee3bf94ecf40d21bb046b15ed2259046a340d62
MD5 97405ea9e1a4b6b189e6287a259d29af
BLAKE2b-256 33cd262428657ea880a52806f2b1033eea23339a62bcb3000492172a549cfdf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fc349ac36222b18762909d9f0139caa8d569dc7947c5604e7bc284601430d23
MD5 d539fae2e463f108860327be8d1c888b
BLAKE2b-256 c3db56771172231abcaff6ece2426cdfcae7bfbba3b270b277af512359b88e0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39af6abc3e64d438832508168f78870eb63f0e4cdd580143fecdd4dd853d30a4
MD5 7cc712374c821f0a046c7a2ecf2f767a
BLAKE2b-256 2f059f5f1441eba01a5af98550cba2291e1da9bfb70ca4b948ac713e43f335c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6278c6577bf4322bf32881bf6b582df4dae3f9cc26dce6cb3f175da5379a10a3
MD5 89f60630ac4dddecd78fde07506efbd3
BLAKE2b-256 551ca1cd3d30a210a9c66c30126682d1430602018e0a0b4a26cb62272e8f8af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 062cea15f012ef04efd1f335283a406f42c9c12a6a2ff9cac074f208c5d296ba
MD5 de647151e0d32eaad0b16d764068140d
BLAKE2b-256 93570e01064a60d7643b31794378a01a3ed0b434cdd7bb6a383c9531589a1e95

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 55aedeaab17dea2733c5a821e27ec2ea03524796b22732917a2d4c7baf08c6d4
MD5 1e1cbb60157aa0b50e61b9f348831605
BLAKE2b-256 9e6e7a45822edd4fcf85860cb37e4a5d4998bba31dc81675326e0d5a8ef34515

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9fb3e9fee28c65a21dffad5564fa02a7b40c128f16dd153776fe6400128ece2e
MD5 731a952d469aae2f48af37dc0935f8cc
BLAKE2b-256 5a1fd3b8a59856cad3581cee870e8d711f62eb870471edf92739f8f54a21bbb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fcc7f4226ceb462e45be7dc5f9a4427e818cb366095ac5673b0323aca503503e
MD5 154108aaeb285286d864fddb8d0f8cb8
BLAKE2b-256 0bb085ec60bdae8f46561691a1a716b8212a0a6f0780846f628255eb860fc0e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3408898793954cc1197a14cd48cc284e3ba3b33236643bcc1cf97b9baacac86b
MD5 6d28c055796ee8390a78dba6beed394b
BLAKE2b-256 c3686604051b62d9dc2f2247158d9448b2b907378effbb6689aac7c6b9ab9963

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2227ba6ecbf50bd925e32f7b5d9d442c30116dd752831cdf815066eb7a2522e9
MD5 9fb6180d19c283240c32e0429825e1f2
BLAKE2b-256 3cf408056a2bb73dce92883d953fb09997c48b514febdbc0d25d901ee24ca6c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed4e8ed1e754398335c878b6f3378b03100f284f1a463c0dbff6612f37e25aba
MD5 788e59a5686893463a2d619f913fafaa
BLAKE2b-256 dad0fce5c3d92a10daebcc6d6ca29d446f5d8caa5a632d25754fbbe392905228

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp315-cp315-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp315-cp315-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.0 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.2-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0d31657949101178f676f7518bbee189bc45d00a9faf2e444778ac813f00cc6e
MD5 e0bef87caacfa77e63afd573f82483dd
BLAKE2b-256 28c52ea0178cf2987ad073672b5d51be524adb33eaf4cf9281b0dbd08ba7da4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1dd317af6d17cedd6fa1036314865259005ec5821a5a4dc32fca9e0f851935f
MD5 43d4e0fe0c2934d460650aad869937de
BLAKE2b-256 ba20a0d60223ce92914341dcaf983330f8baa5bde54684c5de4b95c4c340a458

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8dc137df80cab50a607f140c561d3f303f6d0dca81ffeab1c0b99944b707a54
MD5 e1aba55e28456c638eba8b6474b09530
BLAKE2b-256 62021fc4f3e7969b50d44a52bcb8cca0fc4d27f3c1b729f41d64ac5b991615aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 09e1f40b8f38f238330e9c345422f0fb10392f384bb7bc6d1b942cbc61e666c1
MD5 680e13cb512a06630bd664f3ef9a31f9
BLAKE2b-256 cd28310c5e2013fe68e0ebc7ef93846261fdad56e8f40566a2ca701a2caeda2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4b85b9d10f9a7d05b40509fa878d4ecc99a1ada4766c4a7729294068df10b87
MD5 abb93b3033f0c8f956af1f10a6d62d27
BLAKE2b-256 6cf20996adbc905dbcd9417ed690e90fa143d1f9315eb39a3d0bb6e68a75094a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 eb8425c6a8c9f58b0a2bc72975927ca172b066da1e65e362bc34e4d51f9e39ea
MD5 3603d95c6ab5478669467a2603737f44
BLAKE2b-256 5dfc51ef00bf265923c1acd1030605c4db3b16d2a1547f1556a63a3a286520b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dc1586f298f19571b73b85a2d6c31a290edfc4334757755a79a7fbd8ab6e4b6d
MD5 70f2dd19850370d22eba9fad47031ed6
BLAKE2b-256 269d0e43a6b5d248dde05be7cab264f999c1dfcef2af243195c2a2dde4bbeaa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e0d45237e703b138ecd0b29b9e5b85b3d62b89ec0c94ff0d22f52d2af989ba73
MD5 8d375569a93fb66aa7429fa6f0fd3793
BLAKE2b-256 c18b8596326b101307dbfc8079e1d11de7f8064adca9ec256c84fbd12a155bf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0108e613171b504774fd76903132eea11f662b8c9fd34ea4c88337c23e900b8
MD5 c6e3a689a87b2c619142f19a8a24a80e
BLAKE2b-256 8a27a7de2a8b4949269c3e5c3dc5399c2197f4d14721a713b45912baaa5a0457

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rqx-0.1.2-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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b778f3313dd133fca15dc970a16bcd82035f3445e4cec4b1d6f3bd61b1090294
MD5 a9a6e557887119249a7efbe74dccb223
BLAKE2b-256 adb559a0e9d0314ebeb9b96405f5e52c3ba8291be0dc58042fd436a138e2d4d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bf24a7539a0a731aeca2dcf37fc2a6689674ed3d35ec7213d9adf40f853f9bf8
MD5 42d3f3985a912f6a751a5ec7c8b8076a
BLAKE2b-256 c9c452ad209ea08d9e87f2e3a8e8b2e1bf1781c51bdcbecd1ec353d3dce7b2a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 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.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99a14427f72f56c45cde675e6d45dd9a8e056a23802b21b32fc77e185f05cc5d
MD5 2d70c9f219ba18178d88842110ba9afb
BLAKE2b-256 7fdd4f068e876d5c42114a09b25b5d9f44e13a96f67679df35618eceb714f9df

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e20fc6850a45900c5fba7d1e33d4458332322b8603845c0ec9d5c3cfbf8e3b64
MD5 0b592d71f5686dfb2510df8ac0a262c5
BLAKE2b-256 96079c9916f54dbbed827d5d603f9654b50c2684a3b0af76f881e6035d682755

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.8 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.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ddab959bb150d5b713584683d1af504e05ce702c7e8930d7a5115dea25b3e787
MD5 6717367da32ca031f583c0969291e875
BLAKE2b-256 3f995dc9dab98ca46e65fcd445123bc9dcacf914b10bcc912ff0d562bc38dfef

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f19a787acd1976011dbe16c5a67347d6cdb0ea659dd34c5c394ada915346e433
MD5 e146deccb2ca32e44bf763690fdc0b4c
BLAKE2b-256 b1db92f14d5b84f0030b5d781fa8b61dcb0de2c7dd2226b8a12d850181b307d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72c06d4d5a266674f3962403a3253a57ea208b013755579c20dbdc7dcffbf6cd
MD5 ac3889b335337f4f2445722be6bf7ac6
BLAKE2b-256 a8a106971df967b7ee58562ec2267e95b8269ccdb73abe16cc63a88da6d7291c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.2-cp314-cp314-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.7 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.2-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1e25358c872fb7649dda52fc069fc83b93f831737ec19b01ff1709ad90b8932a
MD5 42b90249b78d7363a44b91a6d8e2ef1d
BLAKE2b-256 331b5baae92ce708259ceaf3e517d105d6efe8e54bc39a61f6dc0796cfee41e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 770af2031b45fa5b0a7683af76ebda2eb42a1e0ef0936066e052052ff94cb407
MD5 2bbbf83e78c8fc287c6bce317460baf1
BLAKE2b-256 b1bf4b3da9846bf19101c49ee7f985d960521c500ec754a184002a995040d361

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.0 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.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8fa1cea79ed0c9d44d80e357c8dfd494d17fbc587bcf32b76e36d15f1e8a9ec5
MD5 ebc8a14403672273b2a50a0170bcae99
BLAKE2b-256 d7ada025a1dd9c4909594d0807e0e601b8ecfd6016ac0c2d38f080f61f465734

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9dfa8b9092f161e8d7f354c41673cd1cea4ce3d5e7684a0a932960c96e6e9c4d
MD5 b5be5c23a3217e3e98b411c587341d9a
BLAKE2b-256 6553dcd6272a130f45f40601c08bf9c095aa8fc05e0ff680e506b815f824d054

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4665964186bbd28b178c8f5ddd1c15ad9e06bab3f17678fb221328ec9b5dc75f
MD5 c1e8757161322743cd012cae42c870fd
BLAKE2b-256 97aa874e7d424ae517799b0e02167477fbc45d9bc3b811f40b22df9500dae911

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 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.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00f2d79d1a1b9c395dd0ef09e5d6e6c4e378617a4a9478f522c24e903687ba6c
MD5 d489a784b9efd7aa780b34a05be163ab
BLAKE2b-256 d444a164de3c1a615f8b1e1dd918f8957e4952d3cae798370d1573d1ee8c0cc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70a92788e2e05d98ceee90f64ca4f466787119e8d2daa2f7ded1578d18f4e22e
MD5 b1d2d9e12cbae0edd9fba411eee53954
BLAKE2b-256 4709bcf7aa9dc4f89133bd51697f4ee8cabefeafccefff721c2ebfe871de8819

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c0f7d7705fbcd01a48832b34cbf29884c5f9298cff808e3786b1b923b689b87
MD5 a0c6f3d904acb497c45f06439e7050fa
BLAKE2b-256 6d6077d067c9406ed66eaa65087a265792e016c6023231fe0f923b7984d57b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d97ec89b81822ce1002f2e96420bcceae347eba6bd9f7a778c91313b57e6bd0
MD5 92db310c6ff3452d51a592259a6a68f9
BLAKE2b-256 cf7ab9ce074412f8e8db529cdc82ded12776390d5bcf38a4aa79161c908757a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6c0ee3bf9b71f9424050a949272ff5b459b027eb2403201b40ea380aa7b79f8
MD5 f3da75b333219e541b666b7943c3ea15
BLAKE2b-256 95f5ced566ca076734d702f17f173b401dcb57354575db145f546ba7404cee54

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a90c47240e5ce45d8ef82ea16ac6061999099979aa9acc409c1cda5af182360
MD5 7e5e88a9ba8899f056bd564e07a3af3b
BLAKE2b-256 fb9a6f819f40d5fc20d3f0ed08608153ac54dcd66372e32854a66c4a97a55a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bda89c823e5003df69c63f3fb07b52ab608640ad8ad3f98012c878b240dd9575
MD5 2f47b03c27075fa40ff88a9365585207
BLAKE2b-256 a4854ad61c37829a7977764cdddd93339ced9539fc04937a4621517b2377ce8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8ccb0b6f2e916457521e095a765bf5db7bc2f25f2cb05a79744e3d41c8653742
MD5 461c6d996423cd3df5deb244b37d419a
BLAKE2b-256 3ee57575458d4d58dfa4b4cc9ed8221ba879cfc8c7d5810f336f0dea8abb98b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0d938360160c7d7ca062fe51b2a58feb119c9b28d73d856fb1793161893ec5af
MD5 55396105136189e02936c6d54f64d03c
BLAKE2b-256 6926446d447db7165b4ef583358bf0b32ce3613098ddd4331927343e16b4fe02

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e782b5a60df4183c4811c93c1253f96d4697b041f4b591c756ab3f4a80c57d8b
MD5 a1769884cb6da1320dede7193dc32792
BLAKE2b-256 09c1ea06b1ddf451f71dbcec3b7db205cc9c13bd68a378ed89938c0bfb3c9431

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rqx-0.1.2-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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 726a0c973a9950a17bbc97b07303d1c4347b947f85d1d45b0d83401b00917705
MD5 158aa6e4edff58f8943b5b8d5b3381e2
BLAKE2b-256 eba3726d0be80eefab7e717fcffd8131fd889e43aed43e7ca3fa3c474a690643

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 18b904a7063ed9292f19fb9eedbfabbbd4b5ef14d4e9edd04a5dd7ae1baf22ab
MD5 ce4efcedd7766f3c582835a77e108dd5
BLAKE2b-256 097028d23e68c13dfa1f349959d65d806ba6da10fbcaf5eafc4716dcec1c6272

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: rqx-0.1.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e571ea0f1deb18c496e16dd1e98a891567d1dc26ee39a1208470c9e66f635a3f
MD5 e5120f6fa40d6728513906afc2cca82d
BLAKE2b-256 bee30a38695c3c593ad1e56c24c3a2860c9837217ff4b0d521007d7c04b4419e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 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.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e961c0056dac63033d083abc42036405c7455533fb5534fed68a2dd3005720fc
MD5 c4d72db5b40509797f95b0fc01f620ab
BLAKE2b-256 7fcc72956af129999a5680446d1bad912a977b4c1cfe79d23540cd78e8cf92fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 558854d1916959b867587fce9803ed6ca416e7fcf886a2d7c3b2a28f2c46291c
MD5 f19975398101d7796252a1c4eddbb81c
BLAKE2b-256 8dbe78d860006b7ca970e506c5a781eabda153754b00ff7a8c8009c27bc5c793

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.8 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.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8f3c38f6a39c98ab91fa68adeb73702adb49ae28fe2bf3882d699bd43d62388
MD5 58cf1ab6e9b661ac8448b15646673410
BLAKE2b-256 342f5a78b6ec5e8fe8ee20e21f6442d5392a4675a5223987ce653312022992c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f81e5be69786f0379e60f872f22b96d9890953c2565f216428434834e680495
MD5 933a08713182ce4c0908883f4aa04eae
BLAKE2b-256 44c54cf9eb3d449192036eb5f9599ff412f76902dc4524cbfc2cf610e8f3cff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac2fe9862e7ea8c894f4682ad25b7cf3c03ffed4beb89c7ac84330720240d1cf
MD5 6403c1f72ab106d89b0b64f72ee5d35f
BLAKE2b-256 6610a43c32944a807dee79e84bf06e249ddcbd8ec815e7014e1db4df782da5f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.2-cp313-cp313-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.7 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.2-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1e2b14fd78b39e47c499eaefe462562eadaecd0121942f0b006efd2c1d804151
MD5 23113093e801ebdd564eab4918bec6a6
BLAKE2b-256 d9639982084153f1182494ec76eba052d58952d4f7d16a71649729d162ee7d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5c10e42d067bb6e5bf8389adac6fbed7e60ac78cb74c8f8f0da5839c00ddd8d9
MD5 41ac0249aaebdb63b0732c00e3b92093
BLAKE2b-256 f2e609375a166a28f69e6f5ce8331bebac2cbd20d6c0e0736256bb7c8844ccfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.0 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.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a0c46c1317421947a5d0c720b6b8ddd25d09aea73305a87cda0de36a80b38b83
MD5 07becc77270e82435a762013b85f5ca2
BLAKE2b-256 e1b45406601083e003d692222fb881441ccc6a489d9e39238fa55675ffd397a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f34577c427a954e60e8335c8c94113fb7cdf95e9ea2848dced3df397619bd554
MD5 9f79df59eb3755009fe88c50560f4f48
BLAKE2b-256 c9bc9eedc462e1d185d81f07d56679ee0bdcead5b6af1e84ec0b736ab7d7aec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d23e32ba8bea5807bbd55285f606d44e8997be2db203d38a2b2e71b7b2f72b27
MD5 b77eeca42d026368540bcd8399fd5e8d
BLAKE2b-256 b8b79e3e3411346c82c0895a4bb2bff5396e2cf9d3f1374c4474671055815794

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 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.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5d1b8ef10031cf248e9aa201d06f42581dbd47333877e947b0d242f8957a4ce
MD5 6d7989ed207f72a1349c95ce61ae0e04
BLAKE2b-256 f432a1144823c3d0d751dd38b6d3bd7251035fbe966ac1213c061804d32aed56

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb35b53331ded7685c660930ca78ad807e1b62f69511837aea6a5ac3c92ad623
MD5 c653a1b76ed296a8bde9d03516581158
BLAKE2b-256 2d4e9bebe8aebe2eb29e6434dd54cf6cdd883b25ed292f4fd85e2b9036b31a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rqx-0.1.2-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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3477edb714f2576157272d8128d9fc2102697a365326d4d63b54ed075c1addf7
MD5 a8b2f53448441ac3433e3e43c4d1b618
BLAKE2b-256 7c8de276129c28671c08e79dc773b4cb96aa6cd9d2812f75f08e5c00c8f3948b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3db21a12b25bf9c385a6553ce8d42f2a8bf055b83b7a089ae765dc06243ad0d8
MD5 d9f12444753c803bcfa255f984e3b4a2
BLAKE2b-256 26f37d19c0ff3e05b269842ccaf234d4b62d275c4ee45cb7faafc0421b63f151

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 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.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae16fc62b14109a3c30f5ebf1a385097279b08762d5a7e2c4f4166dc610a22de
MD5 9b7877cb3de04c7e43b33fcbe0dd78cd
BLAKE2b-256 1fa260147a3e2881ec6d92eae45c7c1bf053b21073e4efcbff86390e5abbd2a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9abc4011c5836560872ae83e78d60448c47c3c5a4ace90673a8ab5f9b3848ebe
MD5 c22a010c1704f5b6a8c943aa61ba4f26
BLAKE2b-256 38f2f34c459b54a762e2e99ed8a0d80a284c988f22a88f982419bf3d43142c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.8 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.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3c9d581882214df81d69949f40ea8bf944a7b6cf9d6f066f7d507b415e9a71b
MD5 f3da056b504efc8f4f2cf559be12bf9f
BLAKE2b-256 6b07ec2dd7002de5304a4cf6c65b953d5fc2ddff2f77714ab1c95b2aaf643c36

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5ab53b6db755be50b360e90b8f6ec67c2c4a093477ae480075c355ddbf75bd0
MD5 3e6a71e3c4d5ed0177e974fccb8bf2c7
BLAKE2b-256 d21964667b52f0ddac30a8629add4d6c4eb4c4f84f1f4a187c032fb1f78c3e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 012b1a437235aa7eb813ff21cb8fd73aa3b017e3bf71ac532b57f0d2f0bbea60
MD5 6d4ae7c1ab79bca3695c9293a96068ec
BLAKE2b-256 c44acbb549a120af27145b0f94f42e3b3055cc1dd63ea65fdfbd5ca027f2a27d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.2-cp312-cp312-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.7 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.2-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 46b9c42658bd481b31a30a14d8b2d20606ed4f689e9eaf89afd3a7a7364ca1d2
MD5 f83dc3c54efa7882d6a02fde88871ab6
BLAKE2b-256 3992d03c764821d0ea20a35424ac4b735275df20568c434fe78757152b914600

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d13e98d3cfc0954e8f02b95be959f82fa257885fd76a9092fc91033687702cea
MD5 eb62b7ec810df77729aeec115acdace4
BLAKE2b-256 9d4efe5ae7d72e0fec4be0b352d8a83c4dbd104e91793b7c77f0742fd0adabdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.0 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.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8e0c19bf201f57c23e6868ce0d9cb81a622576a5f84ab959e90bb266fefae74a
MD5 e33db685e8fea897ef8524bd3f70ce69
BLAKE2b-256 756f9bc595fdb3ae5a5e7120facc0fb933b0e95eede506b1b3704ad3fcd9dd94

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e75fc751097cbbb7627a39c317558438c186a17667b0ad72f62f213e0c4dc7e1
MD5 e62124123b3cb147d1278181821193cc
BLAKE2b-256 37f7374fd9353bead11ccdc900514cda0a028dd0fe751caed5c4a932af20e30a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb470e7d7346853f007b77b7cccb3119a39a902fcf87dda8f0cff0a04a5b399e
MD5 00a061e378ec54577d580036e3af60f0
BLAKE2b-256 f3440846b96578fb818849c1dcfea0752d3316cdfff285af5d6a322ab13f7c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aeec8e222604921fc207a6ebc722748cbfd2e58bebce3d4f2f426385a3a26dcd
MD5 1e281ac3d94f9e26c630bbaea2982aed
BLAKE2b-256 3eca6a1ff5880f1e364fe4aa67ad63d770e37faa9d53746e0865e7105c8c9de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 345a30b7840828db66f9d367584c35cce2505b422bf2fbea3bdbc92b6762569c
MD5 340ca9a8006f97593b59a83c52a9a428
BLAKE2b-256 5922342016a7e2e9e8a029134527d3b3f71ee95b30186276e2c520ba43bd8a50

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1ac74f668666abf71bdadeb9e45d2e0bd6d945c8bb33781236726de4ce158684
MD5 ad9a22f67dac486e28dcd8a1d41bf4bb
BLAKE2b-256 939f9f8c411c3a3f4392f27a9a432146fc5edd6a7401ee512615b96b6eb828aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 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.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8d57eebd967fed249a568f03cb45f33aee130716627f55d0eb087eda363bdeb
MD5 af5624549544f5b6980c81df8a6f97ca
BLAKE2b-256 00d2a45fecdbc7da5628368af52ecdd1bdd369da61771590487372019b2b0635

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5c165356dfbaea8112938eaf02bd94b42781682778dea424da148b88a7ff4e8
MD5 859355d007eab89014cd9b30576c0a72
BLAKE2b-256 d0947b4600c4ebfa3266ce51eec56754348f7cc97bbcf9d8053ecfaaf4d61bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.8 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.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 721af4a1527e949f9920e20335e13969d573717adcb4789f7d4feeae53602805
MD5 a4ae60bbfbb253e83e33a8c168785731
BLAKE2b-256 270f73b2e5e2b048131574df1db079e71d7975527fca90a044b420f1bb6790e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5922ac5691bedf2c3c1108ad7b171b091581363dfcdb5d44263dda84ff8bb28d
MD5 1d66e48aa382ff295172af84f0d75d94
BLAKE2b-256 535f4541e08f08e9145cc2176d2f7c95e788b84ea77f385f80d83391cbed2016

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3329c2e57f44296df6affcc3ad4aca82c87e8a2205346ea06974ee1d3d7fd743
MD5 937d21ac8a559321ad5ba78a72678b7d
BLAKE2b-256 2945aaa6f1993e5c308036d22205b945ca84ddcf045eff9ccf20daf2347584b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.2-cp311-cp311-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.7 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.2-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6f307de322f1bdac7468454ecc011731d1623c8112daa59d8b268616a07362e5
MD5 6d09bf51fad2aaceb4bcf481ab914f13
BLAKE2b-256 04c922592d75276bce3bebd940f88c12418945ae48d3da6823bb710b825b7fb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9f0b340e035643d9270b6e9aaf6e7298b09cf67cf880dc04b8755160936a377a
MD5 bb6a19a97ec7db646e080a1dccf7e948
BLAKE2b-256 13f9821d294b0911d3ce92968aad38e037cf980afc234942ca11c5ee531d89f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.0 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.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d373541cd86513e00873f884ed2f18bbba75243ab659cd12426d63aafc25ac33
MD5 1b1f979ef3770b103408a432683183dc
BLAKE2b-256 bed2fdf3e39f49914c6277320ef4f0889d3d923591bf46726755e4b09986d61a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a9c4ca5df00b6d488a96e8f6238b3ba86a0f65caee3c8f530d7f7a37ee0fd3d9
MD5 88146480b87bbd3b6e9ae5358e1fbe39
BLAKE2b-256 64f34edb62e3ab12dbdcc7c533f56d1ac8485e1cb90d6a38f75659978ad34088

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20fea4fddbd0c8ae8bcd89cff3d6fc87329ed09caa80ce9f9bc94941ec86af4c
MD5 a7800a368eb622761dc2656f6452a0b9
BLAKE2b-256 332c0e023cd731beb18e93f158efd1f8fba428f3652cbe4feda2c32586ec9414

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1670cdd79ccc7db4c2cc2f95637d4f62e1cb8f921bec2f384845cd43fc4a952
MD5 74a70e52d94faeedd57b3bdf3af4d005
BLAKE2b-256 b582158d7f2189777d28572575f9937ed2cbca087dae5da9d9eee27831586de2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9aae85063b2693b7415c0de96ad642f51a8d64b971639eb8bcf790db630753e9
MD5 aab51ef1aff5043aef19e24587835e44
BLAKE2b-256 71f1f97035ddca12edc3edf12c181d3629967c98e26762b835fa2fe421f5cdd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54f4057500560d77defc78035a92d3891f02635f7dafde2ee4bcdeabc08a7daa
MD5 2e878221b95a2b1bf5ab5554eaa9bf60
BLAKE2b-256 e8f62b8a6a7882c9bf4b45ddfe4ed62315e79d694ce371145d900bc3c7b15b61

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 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.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f92629ccf011237616f131549b8489265f09b27cc721826abcbb6f88f7294805
MD5 17df32ba150bddb09985750dd86a8e84
BLAKE2b-256 1e4a313b98b36221615aec4f8727370b7c5cb3e86ce1fadde962f16d28364d00

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77b58c8a51a1f11d0fc0523d73629f6ac4af8c63ac52344b0add3a9fe0fdfc49
MD5 f9c873bbb1e83af33165e2e2203722be
BLAKE2b-256 5673000d02aa8a896bd4802e3457955823f0a73641b0a362d7cbaef51325ca18

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.8 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.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8aa52af154ab3135e293f7be42646f29ab599cf81dcbabc9c169837b5ba6c270
MD5 ede8af2d524753bda372a68d77e1106f
BLAKE2b-256 6f0418dd065abfcb90c1dadb24c525079f38101c447d9828e424a52dc49cc4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fd372d5d5d740e7ad3efda6855363d96a089a15d54f444002d5b00264b04db2
MD5 7bb894ea98faeea391a8b8d121b59bfc
BLAKE2b-256 ddfcf9928f16d88cd077a73762f14780fbdfea58cacfc799d05eb3e71270a21f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c26843cdd6e6f33ea78520c38ef17368a8d6b21339a04e27cdc539fc7f28758
MD5 4e0ffdd358eb954c352c705627f85635
BLAKE2b-256 94eef3fb07b48305be536dfb2b055afd435b0430c6745c1f16389e0eef143f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.2-cp310-cp310-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.7 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.2-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fecb406faae0bc0c7bf33ae93be114800e2afca8acc05e3b9f8306657db1fe8a
MD5 881c91444a14f68c70bbaf27b3d2f97b
BLAKE2b-256 fe00b2d8fdc3cb71373a222585755b230367a7c47b27f50309409f99ec86f733

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9fb73be21620573450f8f48545d70bdcc2c32ba9b5b2192572334a6408d45ab6
MD5 3974e625f347f4ed28b24db7bee1c1b7
BLAKE2b-256 f5ff4a25930388d12d9f2c290c9adb3b77a2e54c72cb566beaa18c66249156e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp310-cp310-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.0 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.2-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 55598f3e83254b77923d47779d788f6277d6e1ebf7558cd8f54da742b6cec060
MD5 6a7dc0f0aa5af2d913ac87069c160e54
BLAKE2b-256 b2dfca21590c4c4cf22da0b63ced372ccba9eb86dbe00c6b95ec0fc1c2141e82

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7d3b74dee2817b4bb64ce3642cfe795fddfe75e364e852eec4433667a27286af
MD5 fc30d11ed27b34e8b873f5f95c94c89c
BLAKE2b-256 60d8dcb4f07331ba50d5f406a1ccfd2c74eaffb312d18891a094670b3638604a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rqx-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0be1953fb4a1db6ba7637b5622c48ee62c50068bde1d5a4c9946cf3186ea2a95
MD5 200f11d0ea0695102670b1da19a1a12b
BLAKE2b-256 5be9b249e467b8ccd2fd3abfc9819f617982b7721d31fa94b714db9f9d2637e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 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.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9208c4660c5ff658727501912c329d4ad282816f7243bcaf57b9d73a102bed5
MD5 5b6eb7ea233283699f2e9af1fa2db0db
BLAKE2b-256 41aa6a212a9c1caf2ea7b9a5ca463aabd7b0fb57e3807a6d5c0fb0d407bb47f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb065b84a386eab87ba9bf799ab1c4a6e0fd95233a67291631decefda3c666e2
MD5 8c64fb56ee4d6f08b2618efb7e6ec4c7
BLAKE2b-256 a8b88cab8f3a823ccb37541b0825a40f502cf942b73d29c53a1d6b0c42dad91e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.8 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.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ba8ba00deb3b073461158c3fe73e3bfb8faf4559aee892adf1b871c16dec38c
MD5 2d160a58cd496e2ea51193a24c1f03b1
BLAKE2b-256 e2f3fd0a97c7e85a9aecfe687a6a51ad7471871d147243ee11ff2eb9178ff837

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.2 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.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa95e0419f0ee3306b8019a7f042dd4e68010216eb5a7524508cb808aa6ccb19
MD5 6a4d9f2688b6d4a7df9f1ea13d9eba90
BLAKE2b-256 1ba8242f9b34c9daa917ac3d9237eb1e862405715df96dc7a7c7c729344f28a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.2 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.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 976dc5dd2ed7a2471a0359df84be65c4373520c3bf460dd040dcbc4e1dd66620
MD5 13140a964d5800ad0b59311cdefbdc90
BLAKE2b-256 325240ae1b8bc5af7cf33d79612cbf2eff5f894da20c14dfde2620e8c6fbef7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.7 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.2-cp39-cp39-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2e5088afc547404d9312dba73e79a92a45b77f6f2ca18056e04a78c4cfe4b09f
MD5 528692554101f4bc5aebe1af13cfd62e
BLAKE2b-256 e78d59208988e43bfb8e7dfc74d540fceb53827d47d53f3b2cc1ef2b7d27970e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.4 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.2-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2323370674abbf59de82d3fee2438dcca0a88406be3038ad4577dd6e7b784344
MD5 44107fca1782d04217de1df0ddf8c2ad
BLAKE2b-256 4833e66b071c205d2dcb3c98c2a8e29e27092e8a2d2eb08d1492ead387d8ec82

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 4.0 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.2-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7390ca33ffadf72d952a816667470d6f1d79743c5104d9e5ff1186dc3e8ed640
MD5 3ccda82862587e13ff6a7aaefcbfb04d
BLAKE2b-256 1a9662cb3de0b98d1490416538241b3185be2b9796e1e49396572902bc7c1490

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 3.6 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.2-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1112143d6cdceab531edd084b09af89c60e413185f0f036b761b50e99cc473a1
MD5 8bf5571961abd54a7947556877741957
BLAKE2b-256 59357cd71e5c5a9a151166430c3a4fc261a75a9458ec144e2954690cbc8cf893

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 4.1 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.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e753710485b69f67a5d6fc8d4d5672e811e3b885b7168014df15a5fce4400a90
MD5 7117dd97ed642fa230ce60d1ab9ca4cd
BLAKE2b-256 bf0d2762529304f7d560b91699f45a6808d5bbebbc1cda9d2643a062e0874a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.4 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.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34ae797d2370ca8b1a5d21ae1535a1388efe27e87ac4d35c9581306ce282b7d9
MD5 0b8866013a09c38c7b3968484cab7661
BLAKE2b-256 76855af4906e59f2b9c0cf7c0a78fc5be885c5609937ba8347e0e95507a71b07

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rqx-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.1 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.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfe2257cc744cdd6cca0bdcec64602b16753c869439a47ae264095d0818aefe6
MD5 a027fded6180a60cddfe597958728f70
BLAKE2b-256 baed38e21a88f8738125803df1dcfa4ca76e0b40938470ee9a04881483761f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.8 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.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 158662f4208f673c1731bcc09bdd319b3e518d3a7f264e85f5029c0894302770
MD5 f11e673d722241ac4d869a991aeaeb27
BLAKE2b-256 03b1cd39807dbf2b9e5beaa0501316a6833d68cf7f488ba11f49ce8fed2babdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.2 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.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23fcd64bf8384abfb13035a22e701aede6ff63029f546534dfa885dee9491fcb
MD5 a38347ac6afd4c9a72918e5b2ade80c4
BLAKE2b-256 9d6f198814402aac2aaf60aef1425623c0310b388601940c1bfd09925a43b3f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp38-cp38-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rqx-0.1.2-cp38-cp38-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.7 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.2-cp38-cp38-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 00608f9282cbc25f3791c02f845e9b0846c21e8fd902f985f0b7b32a511d0814
MD5 9121ae57a1879409ffe77c797f53da2d
BLAKE2b-256 9f3741753665cb6235371dba009d5b5b95c8e9b468be058e20eae037c1e6bfd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp38-cp38-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: rqx-0.1.2-cp38-cp38-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.4 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.2-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 06597d9505d7220be5a039f6f990f74a94a966cfaea3f05f88ebea7370af860b
MD5 53bce037c31fcabd63f15c13f18d12f1
BLAKE2b-256 1bafa90bad9bff5a852e0874d3f20b16121a6c65f9dc320d959c95a864536046

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp38-cp38-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: rqx-0.1.2-cp38-cp38-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 3.6 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.2-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5ca3f0dde12628f3b88bbf8583f0f69f04d6aa5d47e520ab4c2a9cef3657355b
MD5 cc564eb4f5a70b96cf9c353fd893e41b
BLAKE2b-256 1478843a2d1e16679e23266805ca7fe6d19d3081e2cdc6c24bc99ffda895b3af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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.2-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rqx-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 4.1 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.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28ac787eb669fbd58d2945b24a9dba82661f181ea1edcbf475bc1b526236b4c1
MD5 a3f22f99e119708e4f219ff7e20cb4df
BLAKE2b-256 10bdf0e92f3d53ede376ae0e0624b751cf25bf47088090d0104e58eb0bd4a001

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqx-0.1.2-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