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.1.tar.gz (331.4 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rqx-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rqx-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rqx-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp315-cp315-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

rqx-0.1.1-cp315-cp315-manylinux_2_28_i686.whl (3.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

rqx-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rqx-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rqx-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rqx-0.1.1-cp314-cp314t-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

rqx-0.1.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp314-cp314t-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp314-cp314t-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp314-cp314-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows ARM64

rqx-0.1.1-cp314-cp314-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86-64

rqx-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rqx-0.1.1-cp314-cp314-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rqx-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rqx-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

rqx-0.1.1-cp314-cp314-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

rqx-0.1.1-cp314-cp314-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp314-cp314-manylinux_2_28_i686.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

rqx-0.1.1-cp314-cp314-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rqx-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rqx-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rqx-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rqx-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rqx-0.1.1-cp313-cp313t-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

rqx-0.1.1-cp313-cp313t-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp313-cp313t-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp313-cp313t-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp313-cp313-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13Windows ARM64

rqx-0.1.1-cp313-cp313-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.13Windows x86-64

rqx-0.1.1-cp313-cp313-win32.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86

rqx-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rqx-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rqx-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rqx-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rqx-0.1.1-cp313-cp313-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

rqx-0.1.1-cp313-cp313-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp313-cp313-manylinux_2_28_i686.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

rqx-0.1.1-cp313-cp313-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rqx-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rqx-0.1.1-cp312-cp312-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12Windows ARM64

rqx-0.1.1-cp312-cp312-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86-64

rqx-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rqx-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rqx-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rqx-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rqx-0.1.1-cp312-cp312-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

rqx-0.1.1-cp312-cp312-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp312-cp312-manylinux_2_28_i686.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

rqx-0.1.1-cp312-cp312-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rqx-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rqx-0.1.1-cp311-cp311-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86-64

rqx-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rqx-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rqx-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rqx-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rqx-0.1.1-cp311-cp311-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

rqx-0.1.1-cp311-cp311-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp311-cp311-manylinux_2_28_i686.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

rqx-0.1.1-cp311-cp311-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rqx-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rqx-0.1.1-cp310-cp310-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86-64

rqx-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rqx-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rqx-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rqx-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rqx-0.1.1-cp310-cp310-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

rqx-0.1.1-cp310-cp310-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp310-cp310-manylinux_2_28_i686.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

rqx-0.1.1-cp310-cp310-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rqx-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rqx-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rqx-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rqx-0.1.1-cp39-cp39-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ s390x

rqx-0.1.1-cp39-cp39-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp39-cp39-manylinux_2_28_i686.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

rqx-0.1.1-cp39-cp39-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rqx-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rqx-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rqx-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rqx-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rqx-0.1.1-cp38-cp38-manylinux_2_28_s390x.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ s390x

rqx-0.1.1-cp38-cp38-manylinux_2_28_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

rqx-0.1.1-cp38-cp38-manylinux_2_28_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

rqx-0.1.1-cp38-cp38-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: rqx-0.1.1.tar.gz
  • Upload date:
  • Size: 331.4 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.1.tar.gz
Algorithm Hash digest
SHA256 7339644b9b0651565e46117c0d5d2e7358d4f051e4eb02bbe37371a67424f43b
MD5 b6bb0c71be09fd318a6b8f25c4b3b0e2
BLAKE2b-256 7d9c364a2a4187df54ce864334e44b6dc4f4457ebe2ed521395be367ffb4e599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aae98eb00db0dd4a9b21af3fc318be5fdc7c2716ac9813830db0c96033c8c11f
MD5 bee3ec45c96bea2f450cc81a721403d0
BLAKE2b-256 fb46fcc3c3daedc970ee21486ebef39f968083067afce8a6af82994b9e307910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b09217c6bf326dc5d1918eb2f35b03ceae1b48b4b051c2331b0dd1fe850990ed
MD5 51c8446118475066ad5655c0276ab041
BLAKE2b-256 4f511e7fc53ab91b6be5e09dca9eb8a48ad0bc85ee79405a465e25ea9ace1d14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c8e71a3b8120a74234580339182e0a35793742de658ab304e42bce7e35bc477
MD5 32a9830d063bd5caf47d9775dc834fe6
BLAKE2b-256 d3066bba90e655328260f07a8302b728b6b8daa4799db3269df2e19146ea995d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba8da43612fcf8f2a992921141fff0e39839929a578d7e7e7504d26defbf8951
MD5 28d3ad542958598acce66c454405d599
BLAKE2b-256 ae21c23f0944d6f074bea666cc2a624188b93beeb4336e3121ba854960c8a160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 909997b27781afeea27c50c96dfe001c26da6f0ccdf54cadc00bc7c378f5103f
MD5 b449f6b3392c881a08ce92577aed5d51
BLAKE2b-256 a4c9999b51010e4e7a5510da03f010495211bc9e96db6c3f22810f8fc5e74eed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e7b2a785fbffaf9e82a762a0a241710edaa9db177dccc009e6adbda52597552f
MD5 ca3454381561276be391b8ea2ebba924
BLAKE2b-256 b9ab6e5ec192a2378fcdd6ec61b8099c0e6538ebb3eb1fec463f04f537027f08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b1d7245d70128b5d9a6ae2b396efbf6c004defc050585a5f46d64a951fc0da36
MD5 62e87f36259890c0e053a857c38201f4
BLAKE2b-256 639a85dbe38a10851b7b88a86c732f7ffcccc8a2350d62834826309ae5577417

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d91d0cdfe516c43a495f6ef1b38bb7ec6502122fd6dedb19eb2c58028312c420
MD5 3cf3794039ecc377a8c781a0de6904cf
BLAKE2b-256 583c6a5006b234e2454ecd11aad824b1e4ed94f31eee306bed99ac838aedb1a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c2fac4d9e73c1d96ff8510520314ae61eb974935bd766003d94f20e23ab39e1b
MD5 c3ef62d968846633027ac77de182322e
BLAKE2b-256 c6a4c9675e3b346d26e6071ab30a85a841a398b123cd0c1eab429511e8544844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 078f4ba8406be2389d997382d6b653d3f2ee3bf32621e52c809fdc7bbb5aca25
MD5 ba90ebe4b1b0cdb6f9b56bcf2ae9d4b3
BLAKE2b-256 81869223d768f39b5c594c5e44521480e3af8457db0ddf84321b14763d721f04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f8d2ece210fd65eea03025287007ef4e665d110e93800611431f3aaae688f62
MD5 562eb985dc02d5b3ef8a0b5c7120d2c6
BLAKE2b-256 2768aa037a39c8e766de64c9f464e5765909f89c645e7d80c6c45f7088479f5b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp315-cp315-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 3.8 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.1-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fbf89900ec2cd3c9655f2f32db2022de7795553259edece84f871dc5e2a5bd59
MD5 f6eebd9682d5319769be3c1cf4b040e9
BLAKE2b-256 9f5da9bc0ae2902902c640d7c6c102d973ce0053028c11f8fe2d3bd8ee30801b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89d73a88b251c8585cff79c5b6229cb7f8be54ddb47273350fc78593f183d281
MD5 65d11caf83a629b91ff3c93dd4b34907
BLAKE2b-256 f6062c26a344c6daec89f5c3b3a1c2a974cdfa5b2a8726c2c0e4f38f91b73d78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48250c23db798fca7053d7ec80428ec01ae69ca4623983d02ad56d7938912a94
MD5 f67aca4543922ce90e360cf2298344f0
BLAKE2b-256 86d996829ada812f318bd524fc2c0f5c5050a5040973310700af3b8ac2b4f534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65ea527a6c1e80046d0f8a505c0f20fe4991500f1a2989105fc343fd59750d57
MD5 8594e494d3fceac393d9d2fe1b6270c8
BLAKE2b-256 690d12b83d6248da268b876f55709bd342c730f84a5b3a1c8508d5a1db8ff333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3138fead45501e63a4f3caa83d21e26be9b0682e145c3ef53e96ca963be61a6b
MD5 2f2102dbd5514fea53af3439ea20d607
BLAKE2b-256 a378573b0ad5b24a7be3322ecdc442db5595a4e1aebf75233d4131d14a1f3104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 672b3e93cf0900443f4d24b27b6f6863d79890ba41e224a87311d4c14145dd40
MD5 1bd966c70ecbe52eaa8e6b36debe554f
BLAKE2b-256 75b5d5592ab85792209ee8af570d813fba8cd67b62f819fb12114363676455a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4d08cb94533995196a1f4b6204115ff1ed0ca7edf90302b482eb2a0635011b5d
MD5 52ad0a07d49c2175da6b5fbd7fb798b8
BLAKE2b-256 e09fbcd34844d37028098bf15fe86ab38696c6b0cb17f7231973b1d2111432bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 69375efa2de78767c7f32a5d269aea2fba2b2418f4a95ef5daef79c11962b1d2
MD5 ba67b8194fe9dc71e00701f142a620f4
BLAKE2b-256 311271c3f1dddf4741bcc45fa65265ac15776487480985093ae6d2fdb6dd8e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e584442c51cdbe19147130fd5923e615b03e4368e20f3a63d55738a745501e3
MD5 a2568ac2e2c244b1ab1bd5cc35616edf
BLAKE2b-256 580c5577c5973697f9c3dc5068030282beb5b112dc0d6ab90088a0929b85069f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 3.2 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 94dba1563a16a97c34fc63f2873b3b8bdc5eda6b41720e28868ec7613b816ba0
MD5 da2a4bf19488d5e00cb53bf323864506
BLAKE2b-256 1b0a43b89245255b40c3612af81515f2693a68f2201b25ef67478a04092232d5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.2 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8dae380950f9dc1fc352cd0a028994b5daa453c0c5b39654745b2c8c0a7fa06e
MD5 0938f7aa62c59896a807a984cf8d203e
BLAKE2b-256 532d6b274646812a5a7ff7a21c86f4cf726e9c01e36cfd570850c73ee62e8347

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.2 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.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e834a830832b11238162d50bdb0d7a357d867159d59744fdafdf1aa4a1a4a52b
MD5 5f4ff2f36e49c454b04f5bea8d16b8f7
BLAKE2b-256 84e60c1c934df8311f0c4895501c22d73f72b456b4262607a82e49622118b7cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c74326af71c9f163668bbcbf0b0bfeee62fcea14beb4d39f6c85652c16afb45c
MD5 fafb2f63af316abd8bcfb231d591684a
BLAKE2b-256 9ed1dde1f625c95fc640777d08293afed6e967c6dc3c936809b18c6065820f6a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.6 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.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 832da982f782c5440230203b6b84b8c3039ceeab26dae211d6284747f9c7eeae
MD5 b7051747de9f54e73d1c5c13a1c9785c
BLAKE2b-256 687d32855eb3955c84fcac76c0bb4b12d3ba2f25217722f8df1794f9444b8d88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5393b33be5f0a6effe82df9ede0ad44abf7bcd152028a3e9aeb944c5a5a3da99
MD5 0ef2e3820e598adbde41c510e1529953
BLAKE2b-256 fdbb9b8ac76000ef291e6f813cc274f1b7c3b2d59d5d559b13ddbfbd8e6f9692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2aca0a4c8349d267bf8e09271cd5ddffa63d34a3b78626463a500fba5837f66
MD5 9892b96f6c05b80b4a0f2119b1e7c409
BLAKE2b-256 2359a485213bde3666a6533016db788ac0f0869075d19396243327f4d5a91931

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.5 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.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 57b1e5bfb2cd7979278222fb36a1e28e8106c56b7bb94ca01c3793d0d2da19ef
MD5 f104b6c6285ebba3efe15c4c906ec095
BLAKE2b-256 19b24127a8c29b059adb7b86b9c06812ef7875252f0678567b94da263b8bfaa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4f3e4c1c80de1cf56dcd498ed9e4eae86b949f24e61730268bbcef509df288ef
MD5 1dcb16bc0d68f326f46623577e602ecd
BLAKE2b-256 5cff4adc0a47a748fed16374c01a660bd9c2b1f6a036827e73ba5e20e7eab658

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 3.8 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.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9f4d0357382a8a8a22d85e2e18129f538d2179245020aeb944a48d2c631cbc6c
MD5 74bb9275b3a66e7f3deaa9d3e5d91762
BLAKE2b-256 fbfe0daaa7a503dc8f3693ead649d8391e7516e1e393fe2bf4817ceee1746932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9c6c003c67587eef83fb65b628dc5f9dffa143aaebc57cdeb998eaa902b2dad6
MD5 0bf9f21439c05a3cdfe367d00080707e
BLAKE2b-256 891fc79f5b611acdd892ec563e41bc1f0dc9c708dcd9795df8f1388296659484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a985ce5723404235a6eb552b33b7737eaedd40f4147e0295544fea7f8dab897d
MD5 dd058babc58bbcc510e048eb8b37ddd7
BLAKE2b-256 04e95e06cfa897fe237fca0021b24c2eb2ea48c0730c5469feed910fe8b1b1b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7f6a54bbf008dacc77cdd5e5a4c8c53bb05a13e7632d608220e0ed5e7ce796d
MD5 395ec3e33a1f8f21892ba0e33f4a8799
BLAKE2b-256 5a8bb2e87bd1833a2fb664c28c9bad467302336eae8d11afdbcdb85961da0536

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b30f69f4f6732536336a6116e38904b41f2ff969e01721bed35ea2e4102d620
MD5 9da5ba789eff223990cca64020a4f9dd
BLAKE2b-256 c49d49c91fe44dbd248f83ac10d613631550edb503e777a255bcc78652205e8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc60dca2e10ffe6fc62245bf9c94d65f63de59afcbd8a688efefc5a6d9817490
MD5 2b6ad42f0032d10ea0b495921d9a6d6c
BLAKE2b-256 6798c2968481b36cf704b2b6e508b1947eb54be2077c9bc654c1ca47014cbcf9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86339b866e6217a56fa9f3eb0de8aa4e0372e1cc532ef75c2912539c346e4c4c
MD5 bbdb5c4307ce600fdec84691d503b1aa
BLAKE2b-256 06386854596e650bc6eda638290d357791395e6940e305fd3e8c4da9842cac82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14c8914c62e4892ad5055688a1b0514acf035b633f58805c4256e1ba9fbcece9
MD5 0d14a83bf75088b38cf59356c7112fed
BLAKE2b-256 17a4e3ed7ba61826e239a386fbda2a5fb7e8fb599acc9808e30f5135448be759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccaf11ba92aca685f9cdb528ca27f033d63617bc534ceffb22696aeb74733f93
MD5 d30dc8361ad5a827ec05a920f26cfa53
BLAKE2b-256 679c6b2b420b9c7e76f988c904ca12ed348abac306afb13e9fb73434f18e6c3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a463af178260ed56d316d7121c4633edfc0064ffac4eca2eaf651f360ee7bf6b
MD5 2045e313d035c7665599c0a4c02f2a54
BLAKE2b-256 59e1f8299d1c757652638f9241886feb2c829c93c89bd75246899d2c243ee1da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5b64f94ea8e792b16051e82e2181f962abaee7ee00717728bd016ddcb21d85ff
MD5 e020169a97ac1b1f0709ea80be641c59
BLAKE2b-256 dbda5e9708d2d526156a8941111e0164db2f7b4374b5fb378c2813f319a446ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 77ced08e86584ee91c1dcdc8e4fbfff88416586113d68ac29d4d81a896af5513
MD5 db4524065be03e6fa268d5bd000ff3a4
BLAKE2b-256 d8672230b4e306290222627d5c9f34d93d4a3f1ff5ee178b3b0337e54e677cb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5034861c5510bf107d94ed88f5afe0d76e3f3aa257ccca8a83cca72294ab44d
MD5 c537cc52e4446d4a525696854069a5e7
BLAKE2b-256 bf49988030ff20b6022a36b4d41379b041a94167dc0d71c9c3a6eda7cbf43fe9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 3.2 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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c78bf7919a6c54386130c50d7339badc757316c10bbbd7499143d35efaeb5eac
MD5 a9e65756393319f2fdc140a53a06fe8a
BLAKE2b-256 e3e3ff2b564a6e3121ff818833bc6acc237e1ccd4791af7ff35466b7885e4999

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.2 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 74261cec5b9ff7ba59c8fcf0221a4ec904a59060abf944a9621e7050906d9bd2
MD5 ded15d12b9c2055a602d786061507759
BLAKE2b-256 5b751370abd601fa632697807267221ee75b2c73f457b1337307351db5d6b812

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.8 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e62865087247ced23b882b7551c4831347b11a7581a5ee1c86be98d3508ccfb0
MD5 6bf90a45d0219998cab2d004970c4dd9
BLAKE2b-256 7b08f5ff0ed4873bf35b314e0bb4e0e93f5288532e7c48eb5fbb35185985bc7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.2 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.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e355c46095ff45bc90bce00540378ad2bbd881c20b116e86b6b875e1b367dd2
MD5 abf1ded40c4702ef32028fec91665c85
BLAKE2b-256 4b59a6d8fdbadc069bcca5e3df5bf5b0effca8c617fc84203386aed5e8d98131

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9875c9ba718db1850266644b03ddcff3ad6e37675b0f06f6e82eea99317cff04
MD5 9c5a8c34d56ae19fa47e081189f57c18
BLAKE2b-256 27d778c033e4783fe59220f0fb68351315b0c82eefe7b8578f2a569d1595688b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.6 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.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c1cbf4a5bc3bcc4cbe5362a24b89af08b51ff8a57dbc06292a8ebb01ca501cb
MD5 a6c0652f16e85671aa53ae1999c70813
BLAKE2b-256 a61c519aeeeaf6b5e2de9fac3315c136750bbea7bd3e1a0a6ddd3ac2e549ebf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 715200c3b3b20a77ea362193493f4de849989260dd803df3555668e10545c120
MD5 49c894cdb6087d26710a12caff787e4f
BLAKE2b-256 ed8e46bda1a3ffc6ae558713611d0a7dbf126fa7083e0b5990ef08f90f9937be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5788e73eda2938623a81c790110206a96ee2cbdba89096b70e1655802845eaee
MD5 ac66625f2a0318bae4d4b338bbc819a8
BLAKE2b-256 39d27c592932e876fc1fe70b400fe1afb1b748fa08ae01c189332c52048914fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.5 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.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d3e8fd812df2a904e7e41cc194c9a5d91d19e0c405c5ea3ffc7943bc98c3e795
MD5 d85c358bd17aec3d2b6833521ec473f5
BLAKE2b-256 d083644ea412e4c948183facb0c0646ec7cbf77069fcf8a473eb55652679f938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dceb938f58052cfb07261a96c393e2f575d153f3558c42b70e15c0cceca1f5f4
MD5 2c188d8463727b266ddc5e01c6ae051e
BLAKE2b-256 206e4e4c0fc3e13566c744b9a8fa5c29b3996ee4ab78627f1ba371becb9c5619

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 3.8 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.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 65ac7d34e38f6269363f8e313f0682acdb484d1eb4b101807908ca0bbf7cbb4f
MD5 67c4ddbe46bd2fd62fccf0f60adae6ad
BLAKE2b-256 cc0df87c99d3d0880f8a3530768f29d5527fc4c87f7e18e9e9e7d7ae148963fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 285111d497b6335d56eb1b57a4b4608d81e41369bad522d63d03e5c72c7fbec8
MD5 7be05f2a55af4dc539aece205c0eeb7b
BLAKE2b-256 f4effe43381eaa007f25f1bc69cca72f17a51f2d1fd28052e08118a9025030d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10abeff367e482a61f219e2f0788d9f3b2ce17d79e772fb34b360d7acd2be0ae
MD5 6d24eb8366a09c8859ee5c8532caac33
BLAKE2b-256 5b5a40bff6856bce6002395d07898b42d2e68e6c7f9fb7715291036a9976a40b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8cd68485de1e0cfdb80362c5d8c7fed5a580162698ba196734c28c041c01d06
MD5 14e7a5ae5c3fdcc70c77d9305fe587cb
BLAKE2b-256 3aa887393987f51a17f4ee46fdefb041e401405e38e11514765247646a1adea2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42763a852635689bb00a6bf561b52b893f96fe99cbc0a771776bdc552c69b499
MD5 6466fbe228fd4800d3bb9806899e9dad
BLAKE2b-256 7478cc4f36e754f739999b493f72c8716ce48781fa6cbdb0893e8cd000e88ac1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 3.2 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c5ae1b0057c3f24c0193f1fff95bfc802aa27f35ac4f2a849cc80599458e22cf
MD5 17441d9c270f9e1f05748c8d61446013
BLAKE2b-256 8f7dc6eba93cab9744bbe77581bad2ca00a9b3bacf4c296b18208961b22fb785

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.2 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0c0c627aff3e50bdaa5609f92db86eaea17de2bfb2fb1faed1cfe2ee29eeb0db
MD5 d826e0e332ff3b27cac8af00cf63ff5a
BLAKE2b-256 dfd10d463a26ee277c136dbc4179d4523eb3c36e6c8c1e00331f6c1036fe54f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.2 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.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72947db7658c71454d70a78bed08e242d48b19e0cf0d04797e9eff1c6f34c078
MD5 b8b6f4178e5d68910663228d1c6d7c07
BLAKE2b-256 82ff8e375c46b500baf4cd7f8173ed85f9366c04cfe1f07817b7945ba1bf90b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62d015735c98ef88103e45d9417e5daba3b2ebffae68ce7d0f3e5081f4807245
MD5 7ab5f30812d947e937a97840d556d0fb
BLAKE2b-256 25a2df1923b9c98cb7ace2d73f3d8d38ef1209d73cea88a4b811032b7297b05b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.6 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.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b64698e69871f970c46ac9e3f652a92fd648f2ee993bafc960b85e019679545
MD5 110d90776a3d6b5d3f5c48d4ac7f7b44
BLAKE2b-256 9bf88a2c8a917b2e4aa67d915a041876a909f5059fe0635be1a16a33bdddd167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e451f4f016a607c2a109beb319e52977206857853f8e14a633c65474e7466dd
MD5 29f675c2707fb5d4c3373d0cb7d64f5c
BLAKE2b-256 2fdc6e053f5412548bf4d41861ccda753b7624ce06281405072a2a3fe82fbf50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 644fa31c90f5545de20dacf331ee8afa5cec92942fdaaa7aaa64d76bf9d426d8
MD5 0044d071107c1daee35a93d09040b637
BLAKE2b-256 3956be21309be82634cd3827c09b81df65c1e37e86987abc19cb8d49d3d152af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp312-cp312-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.5 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.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c3ab1d3a049abbf88733f3b28f2da2e90fcb613b9352849cc119c80329bf7539
MD5 3802991c3ef877350ef84ededcc4555a
BLAKE2b-256 87b6d16697946379a41cf81570fd7b6d5532667b6ed30dbe969b825d0f80ac87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f9e16582a09d60805fedf8f0c06933262ba800783e445b823908c3306fd9cb3f
MD5 3964821a4f6963d8803030190a7d9dec
BLAKE2b-256 02338ff2f8bec7a8466ec979fa573982bb2db3b590187a8c8d7da25b9a858b72

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 3.8 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.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c41f4cd746e9f3781077725dd1cb024c10376a504ae1986cb7dd412eb702f21e
MD5 4b891e712ae7848f14af34b392fdc54a
BLAKE2b-256 d8536cf0eefdfa4cdb6231a97a73def53fafc309759497dd5235c4b7cc3c7da4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5a58c7eb4297216590238a8738307daf70177bfdcbf6474f4dddefb2a8fe7b15
MD5 59700d1954e35f6521454dd0da05cacc
BLAKE2b-256 5994fd4f0c6c2cbadde07cb8214ba24b8db614fcfb8b0df016d4be9f5c026784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bda9df7ed99fd8fa7e8877e16229cb77d448e1177459c3df9e28924a9646cf02
MD5 17659fee1756fe61b97d8d24b10e97d4
BLAKE2b-256 def217153e05b22e5e9d7423b9296bc83d5f852442af1146102274c58a58956f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f69cba2fb86943a017e3792f9eeccfbcb8735fd9c25eba409bc654df9f2852bb
MD5 70601ddacfe328dc4207c0c6513b331c
BLAKE2b-256 7c47c192ae635437d544c56f0ca3d1358d0abd7c0e336b44016258f0b4819cfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 945c9b5e24d8b67035d67545a86a93f013ecf3da5ca99320a8c9f3505d71806d
MD5 d712fe1fbdd290a58345da9089f9e7bb
BLAKE2b-256 4c2877c3702cf8e0ba6417b6ee2bc199f77d65043f93e3e97819217045b51068

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.2 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed21f7b5835a8f9c4df42b8deda89da39d9c84a83c2c80990fcc0ef0862bc604
MD5 185c3a5125d777d04935afc716df7c30
BLAKE2b-256 87c8dd9c9f2cb965ed135714945678f04f8d87eb4889b52c252a679bb9007f97

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 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.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8245c5df3064d247898ec11845a2dc355d542342925d587d2fb69e1111d485c2
MD5 ef838e7df649ca419522a51578d5c260
BLAKE2b-256 c11ec63d571db5a5d000c3a50c1b1fb1a7159eb7cfdb2dcbb018623c9ada7a75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 254360e93c29aa2b9a4de8fd92f5bfbd03ce9f8aa61da92b08004b73a7d966a1
MD5 760219575ac92b8ecb11ab137ff53387
BLAKE2b-256 dbef05457234240b032a61280e2a8b0bfd3e13eaf25b417d78875a919b74462b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.6 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.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 341a577c802351aa3e03b57b58d73fba09c993f592f42a9ff646a408cd9af076
MD5 bb0c5affce377366afcd69f5859356cc
BLAKE2b-256 795b66c7032b13dc5183604c2c04a3e8b26b0fdeabd4b008967e3ee130440f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 492e5112b604bf0ecb944b8068995b3b296791ee17d15baad0286c3688af2514
MD5 1fe156824a5138529f58a9926f6756b1
BLAKE2b-256 18b29135b3260b1f43f44a239a69aab4da2e90aa554585345d9c6cee065b00cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f68d7772c25a7db8c5bb22f68243779140d71bb3eb8a765e4127d813bda6f148
MD5 fd258aeb194852afeadce1208426c63d
BLAKE2b-256 cbc6a66d356e1525df7b590e90102f91fe9d6727a6eb118db99be62e08eddf50

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp311-cp311-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.5 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.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1a715a36cd7976fd35755e6bb49844e61d8fde9b5d9636fea7bd0cfb21a24e39
MD5 78b774e6d0f1b411f231366c0ad50f78
BLAKE2b-256 b2aa8e800ce891f104a1e8d486248a7381fe92733215f67426a3de1177eb5e66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9b80f93e1c1d3be5917cf9848413c7d25ad30b604cf57a001e0c895283405e78
MD5 a9139ad811974757c4ea2c82820c3654
BLAKE2b-256 ac02758c03e98ccf49be7079156cccee7a1ef1e62433d9c957f9df23b50ecf2d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 3.8 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.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0216234617d12014ec0df6dd76d7a99ad8486d5c419566a2477ca27d25229afb
MD5 9f244f1c53efc5407e65cd6501df09fd
BLAKE2b-256 ae80f380a95dc3b98a90216dc05d4bff4696e251e74c95dd678be33aa53cf2ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d597e1e367359987d43b96fa5c53d6e081a38c76e2ffe83e0c17c8ed6c87c00d
MD5 bab3f3e4cdba87ee8384b492bbc5aec6
BLAKE2b-256 65a3c69f57a96dd6590e17847d4035eff81b292fb2701e23034b1b07a7be7458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26aa0558450dcedc0714a59fce4b868a5f531dd07178f8bd20bf79263a58c84d
MD5 0f9f4e203cfb3aee5d7c4f73b81238aa
BLAKE2b-256 d172af1c62a95f3ebc7656481f885f54af3c42bdce1360b8e754f823ac6f47bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e13a44dc94d85a1e327c084445aac0b0bf8ec2a15a6c6fd2bc64458ff3f23c9d
MD5 c81138afba133464208d2abf4138de34
BLAKE2b-256 121889ec1d4e6e15eec7808538125a7f84cc80d005d384b8d4ea1b4f44231219

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17d28ea6f959e4854cfa1a3930bf96fe66d6ef2032e0e8fc684339cabb70865a
MD5 beb89ccd5b866579f4aadefeaaf0f03d
BLAKE2b-256 23f4e36ceb65a9934f85c3218d46605e31a03a5c8b6fdc5a80b8a63fd1c6ace0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.2 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8763cea7a2caae6b7410c6e6d04f9781971248c9456d1eef55e13cee3d8f1992
MD5 9265f8fd8ccdeb5df06bf5f614096ebc
BLAKE2b-256 ccf30c62516392a5af85f313dd983d3b61ce7adce78cf785e4031250f615f5e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 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.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40276006f3646048fed7daaca78cce662329cf5beb23efd17f66ae528a2ec2aa
MD5 897380df992cc23478edf91aabfab32c
BLAKE2b-256 bf086dd3dbd4ee785b5b4efdbf39e40dfd24955fe166f3a3f8b0e810aac4dc21

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f902eb01b965ed7b120b4bda204e965687b2199756369d794949f4cfd5bdc953
MD5 59d4910ce156fb988daa7c254913e8ec
BLAKE2b-256 d0487dc5b31f3d9aad8ddc822c57c812bf899871e44c32158ec508a38160ffe7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.6 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.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bb7a9f0cdff2644dff60bb476c61120c2bed46c0efbec77e1d1e4e640a86408
MD5 0f7fa65a61ed58a44449fbd738ce70d1
BLAKE2b-256 d85598fdf4a632351783c2bee599a12a050742541867a24cbb60d179fce27f20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f92e83d3efef47c0cfe1d7b297787f3d5fdd74c4b6668f38406cd9a50b0108aa
MD5 1d6f016248f19f4636103246b18b6b8d
BLAKE2b-256 edd1a2cb5953fa9d73240baa523e57250762b587b9dfe8e70c1fb2930fc030bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08b970eb7cf256e6d7d7442f0e367a9ba0094cf044f4926185e465a02bc22417
MD5 593d15ec709a913f9ab15bcf2682eacb
BLAKE2b-256 93b5753907f17be146dcd8cdea0f2c2b6f41d52629c5f4be10cd22efe1cb0a2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp310-cp310-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.5 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.1-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b03528d7dc3f819ba4c6e9ec57ce237be30d1c3d94e997fa26f661334963470d
MD5 78f7394a6dcb9d3344709dad76995304
BLAKE2b-256 c5458289aedca0677e09ee57623f280aa4e04df431c42044df65eefe449a4698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dd010e365975a364de6f86bede50ee733c266c9291c77afabef3c6b72369bf32
MD5 be79f9c35e2421f8095737931f500b2b
BLAKE2b-256 c6c72df4467f6733f20ce40ccf51e577f3ed925f1b23839fe4fe87d6756dff93

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp310-cp310-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 3.8 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.1-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fd5bff9dee5492b3d9e04f2378d2e1821ec9c95f595d5b01f2523a3363ffff66
MD5 dcd8bae47522d9f9d55e09d472216360
BLAKE2b-256 b48dca83c88fb1621469b9acd2ccc4c26dcc35e7a27dbe407d7dbf3a21477550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 cc5835388af101115fbeab7851ba1f5b146f8c3f2707f8ceff6ce8498486b47a
MD5 f0bc7b46b27438542ce25c18c6ba282d
BLAKE2b-256 74a5314875845b81d9d1981d27e54e428cee0c0a96327a80da3a2d8e88d2ce1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rqx-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04af0225842c2bb296a29419b6d3406923401c09b5381bbd984624be6ec0cc67
MD5 2b6b49ff47f98571631b2abc9a3dfc31
BLAKE2b-256 9ed848955e9a16be71c6415197127375d6e0db72c25eecb6107f6dcceee39fd5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 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.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3be59269d72a3d305c740ee9ff372a148a6fcdf990394df330010621f496970d
MD5 eb218477a1ca4bd317997b7be1e28db3
BLAKE2b-256 63dc05f56f559f55dd509cd84e60fd5b9781e75de23044ed58a2cd25553b7109

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68809afd1ba19f35c02667477505a40503814405095a1f3c07ddc7b787ecdaa8
MD5 1eb03b8757e7d0c9d526c4a2de86838c
BLAKE2b-256 5af394281bc7169e902b7ed8752155f1967b496cd8dcbf36fc1a55bfbdbdd65f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.7 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.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 014951bfa699b025999caffa31807e16a31302d1e2fb35b697345cf22914ff3c
MD5 4f9b1dc6943d7a0265ccde581be27bda
BLAKE2b-256 9fbff3ba2af89cdefecbc05b0552b256da4ac3081721410ee54ee6d863e4bfff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.1 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.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b073edbd584460079ff49cb66e8eb7579866437698dd86eea0d5aa6834afe61a
MD5 174dc7af13d7a888cecc780d4f023fb3
BLAKE2b-256 547908bb00068d091ac9db63b7505baaba1dc9a95497a2f8fc6ea6023cc619ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.0 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.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3837d24051550c070695e5b4106934d1a385421975dc61f806a02e4ac306ebda
MD5 0b67e84836e92b8008bde957b38e61d2
BLAKE2b-256 a129c0120f2d5b8db977a2a6bbb51356912deb0640212135386163d1e5940f1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.5 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.1-cp39-cp39-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a7d5de6d908ec90673a535279b0a4b438f47710160b195f5c17d9775c95fa123
MD5 af2d6bacfc303e93e8d19f3c4533602b
BLAKE2b-256 990a17d840356c27bdd518cc42199fe6bfee4f189fead615d2c212e2d7b0935f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.2 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.1-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f5938383e9a8615e097fad1ef7c627f76d598285786b24245301968c40b07f49
MD5 4fffcc8cb4d10ea3d2bcf7d00f98e387
BLAKE2b-256 4f176f820b097c20ee24e2c0bfa2f3b79e52c551f12a7c7082aabac6b6a3f542

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 3.8 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.1-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 799b4a853ea9cc3b8397e66c837942192fbfdeefcf4904e268397ffb723503cc
MD5 55107d29e7555af1d75060a8852fcf03
BLAKE2b-256 d346d543d761e773c24f9d2496fc6ea5069f520f388e938d88f5ac79afc0e7e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 3.5 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.1-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5000a194bcc0e522cccc24c071af308ff7b101ae1b8b4afbd978d039ec7eb041
MD5 9b6495fe7538c1aff40ba83c39151bd8
BLAKE2b-256 23f5ebe7e46abc438e1aacf98fa3275bb487035ec5dbeafb83ce1ea84d930fbb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 3.9 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.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15f575d92899e0ff186aa534704dd194caca278b009ab8075d6871e7b72f75d5
MD5 48c3719b75890902b0d1a4cb2e8c3403
BLAKE2b-256 a7241e0bcf683d98645433daf0d82599c2aac550d4b30c3b104d02e17eadf4fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 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.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91cce0673fa69c6bb0218dbeab709acd3d1ff114d0a4922b573e6b1552041a81
MD5 4f8f4e0c3ce0e824a4c1a02abc090899
BLAKE2b-256 712594da3d747f07467d81c00a111ae306afa0d63d56d34e2c8c349ce9c7ce4b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.9 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.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 748f07899928d41b399aa5c33e3b4a6c2286b5ae96751f05e4277608605d09f4
MD5 d5ab5797efe3141adc9e99ba2f4f3be0
BLAKE2b-256 acf4a8015404fd59e0d6405550504065af8378647907fe1f4860da41e6356ca6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.7 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.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99b28177e0ee236a44b5144a3f4c49ed71c526c35a0ab83febb3ddd336e1b655
MD5 2a29e49edab1c28744a1b2a26e63e057
BLAKE2b-256 cd92e718533087306a7c683989c3291f978ea25ebad7b479463b41be54bcea79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.1 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.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3d9de815566614d310c4f8bc1a19759962cd32394c92ac9578cdff3136499eb
MD5 6d8264d76949011028c80440c2ca3df4
BLAKE2b-256 ff6372f6ac092ebd57262f335ba6f3d9feae9f4f0d7fe05164e3e9498bf1290d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp38-cp38-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 3.5 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.1-cp38-cp38-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 70450efcbd0e598a29b84ec66b2ae910fabd08fe542aef84bb721a01a439a156
MD5 c2cde3c4ef5ab1fd20f8bd8500c9d145
BLAKE2b-256 0d6a3a8f29b5f20ee77d8624a3fc9453bad0905c00f31804fb955bae69ab4f3d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp38-cp38-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.2 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.1-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 783fff85f32c40fc9912e37f577e8fdc9d8d53abfdb484742085d56f88bf01f8
MD5 796a6bed2686a451768c51894cf2adb2
BLAKE2b-256 4d9d7a41fd395acb0a9abb26efcdff17024d95b21a33a5c82d104562e22714a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp38-cp38-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 3.5 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.1-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6b20de7a0264a249e927c969d9a00945fee154ad7cb98f18748fded28aac2a31
MD5 92927c42469231a88765f287983cd5fa
BLAKE2b-256 bbcefae1bfeed105c25e3d9fa87b26bbe7e7048c1135431cca9d06c184eee66f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rqx-0.1.1-cp38-cp38-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 3.9 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.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2eb79b4100cef98e3c5e973eebda4a56c3e238f3e18b361789a0886905b4d989
MD5 8f837d896611ed7e6549e6719cc5c50d
BLAKE2b-256 035cf3c4c368a55fbff473b0487ed9ce21009291e015dfb8708989501e6c012a

See more details on using hashes here.

Provenance

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