Rust-backed Python HTTP client with an httpx-compatible API.
Reason this release was yanked:
Incorrect version metadata — superseded by 0.1.1 (identical artifact, correctly labeled)
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.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rqx-0.1.0.tar.gz.
File metadata
- Download URL: rqx-0.1.0.tar.gz
- Upload date:
- Size: 331.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8210048fba889f3909d2deb48bda9687bc6bc6c9811b3d5776e991a656ae1c89
|
|
| MD5 |
660b822d2b886792004ec66950100b31
|
|
| BLAKE2b-256 |
347ea08d69c8de3b509cfe7d2b3571337393abbe972da7873910bdb5aa24ec79
|
Provenance
The following attestation bundles were made for rqx-0.1.0.tar.gz:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0.tar.gz -
Subject digest:
8210048fba889f3909d2deb48bda9687bc6bc6c9811b3d5776e991a656ae1c89 - Sigstore transparency entry: 1548768225
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fdec66cbb83671f9aad0a426ceaeb6c2b8a628e606f8cd872f87e81b0acfb92
|
|
| MD5 |
edf0669643ca525792ef16897aa622ef
|
|
| BLAKE2b-256 |
af4716893a5ce10ec6d2a6da11061ddb92f9ffe7fd25c43bf41d9a033339dafa
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
9fdec66cbb83671f9aad0a426ceaeb6c2b8a628e606f8cd872f87e81b0acfb92 - Sigstore transparency entry: 1548770826
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.9 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6786f12d4ebecd07936958acfe9ad02f6511343c92939f82791eae026ae62f03
|
|
| MD5 |
c4f00cc6c7a4f9a34053d506c7ca1065
|
|
| BLAKE2b-256 |
8c87887c9d855c53674f4e0bd9ac3022f96465efeb66b24c91ea39a66ced7685
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
6786f12d4ebecd07936958acfe9ad02f6511343c92939f82791eae026ae62f03 - Sigstore transparency entry: 1548768787
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1f02854a4e103dea6dee955d44e57fd5e1f663bd4930b0fb0d8d5769205820a
|
|
| MD5 |
28375c7b6c3a75cd7bd173021fb5bb45
|
|
| BLAKE2b-256 |
b8ad3c6f477c83d9226f046945471a19414938acaae0f6eb355dcdb4c7f25a5c
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
f1f02854a4e103dea6dee955d44e57fd5e1f663bd4930b0fb0d8d5769205820a - Sigstore transparency entry: 1548770375
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ffee9e97a387ad7f945073ad850f6bd9c9cd02ee3c3611cfe7d1ebcd18e912e
|
|
| MD5 |
becfa0d5cbd011decc1401182f20be73
|
|
| BLAKE2b-256 |
628b0dbaaaa61fdd6aea10dc34ced9a3baf3c09447a4ef728e63dc903a3d4a44
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
9ffee9e97a387ad7f945073ad850f6bd9c9cd02ee3c3611cfe7d1ebcd18e912e - Sigstore transparency entry: 1548771049
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a42e063511ad07e3e422527da3fa7f92275363904b9cfa85e880d352bd09282
|
|
| MD5 |
7cd45da5b146a194fc2352dbc1f9e03c
|
|
| BLAKE2b-256 |
1cf0929fc5e75ca1c09cdff85000986b0027318a65b50257e11e4ee9c5754ad9
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl -
Subject digest:
7a42e063511ad07e3e422527da3fa7f92275363904b9cfa85e880d352bd09282 - Sigstore transparency entry: 1548768698
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
- Upload date:
- Size: 3.5 MB
- Tags: PyPy, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
117a45ed16cc9ba6526b77f1b4f4f3840feb54a2d9d6a70e94ae25d5e8c9e572
|
|
| MD5 |
483fca9356461f1ba22913c36362a0f3
|
|
| BLAKE2b-256 |
8da24897e46a5f3a56ab0c2a50b2aeadb0403e7b2f41a91822aaed74fccb36eb
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl -
Subject digest:
117a45ed16cc9ba6526b77f1b4f4f3840feb54a2d9d6a70e94ae25d5e8c9e572 - Sigstore transparency entry: 1548770499
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 4.2 MB
- Tags: PyPy, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fdf02bcd046b98e7a1472e093b56f74099edd9d390b1c556a4f1ad98d0f13c9
|
|
| MD5 |
a66138080bdc566162fe66bfb897efea
|
|
| BLAKE2b-256 |
0cd57ae0fa67440d478777232dd19c9b85cdc9ecb28430f39a7c40f15879b0c8
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl -
Subject digest:
2fdf02bcd046b98e7a1472e093b56f74099edd9d390b1c556a4f1ad98d0f13c9 - Sigstore transparency entry: 1548770281
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
- Upload date:
- Size: 3.8 MB
- Tags: PyPy, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5738223e18c56dd32b67644b738e8c5ff3a2817af4028b347f1f6b2b8a744eb4
|
|
| MD5 |
56e5f9bb678d64aa0d055dd51e45cc70
|
|
| BLAKE2b-256 |
943318eb4095943d8a4e17bf300e897e360ce73b66fc7b9e16e1e298c8c9f5ad
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl -
Subject digest:
5738223e18c56dd32b67644b738e8c5ff3a2817af4028b347f1f6b2b8a744eb4 - Sigstore transparency entry: 1548768840
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bacd3fb75feb6c8beb1c196535cff1ddc633bce07e9290d5b13a08473608450
|
|
| MD5 |
07ecbc3089b9e06d35735fda91b49ba3
|
|
| BLAKE2b-256 |
4be96720666e905b89d3df117ac1d19aed744f430a882889a5b16b5060b1349b
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl -
Subject digest:
6bacd3fb75feb6c8beb1c196535cff1ddc633bce07e9290d5b13a08473608450 - Sigstore transparency entry: 1548770408
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45acb681cc49b285fd80a7217561c399bc88fad59424d6697b058b86709ef321
|
|
| MD5 |
514c56e05546c90f4a48be28a7cf3f75
|
|
| BLAKE2b-256 |
f95c378b8755de29b64c9a3424f9212d7ac5718ca9d370c4d0812aeabf28585d
|
Provenance
The following attestation bundles were made for rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl -
Subject digest:
45acb681cc49b285fd80a7217561c399bc88fad59424d6697b058b86709ef321 - Sigstore transparency entry: 1548768343
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp315-cp315-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp315-cp315-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5faf1c1de459f9765b198061c7a9d7c3910958f5b47c38988fbb9d2bc106a67
|
|
| MD5 |
0cffa02f3507250b26c769fca51df6f2
|
|
| BLAKE2b-256 |
d97b0bd4444e2edd8f27d9058b7bb456515c4ca00c47cddb961ecef31094543e
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp315-cp315-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp315-cp315-manylinux_2_28_x86_64.whl -
Subject digest:
f5faf1c1de459f9765b198061c7a9d7c3910958f5b47c38988fbb9d2bc106a67 - Sigstore transparency entry: 1548770315
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp315-cp315-manylinux_2_28_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8727cb4cd87ac297a230de64d91be9c7ff2c4286b4422e4546e9a5556f476160
|
|
| MD5 |
e1347fff69e22c99b7d35b946bb17872
|
|
| BLAKE2b-256 |
97dc501487b89879bb184ee1a56ec49d7f1694ab0018043ab16b92e1fea61151
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp315-cp315-manylinux_2_28_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp315-cp315-manylinux_2_28_i686.whl -
Subject digest:
8727cb4cd87ac297a230de64d91be9c7ff2c4286b4422e4546e9a5556f476160 - Sigstore transparency entry: 1548768890
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a54160945620c1f003c1d5a599e67901e183c6cbc4c55d47d6093fb9086ade2
|
|
| MD5 |
e4027d51ed353af445515c9d95da11e6
|
|
| BLAKE2b-256 |
5055c88f33de5bd4475444d532c717e0202cd52bf624fc3edf70f0b87f51257c
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
8a54160945620c1f003c1d5a599e67901e183c6cbc4c55d47d6093fb9086ade2 - Sigstore transparency entry: 1548770712
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
775b1a99286d68ea3e53e8852ccd114b187dc335ecbc24db0ac8f174d4a076fc
|
|
| MD5 |
81c3f73ab3f32cb32629fb1a9dafe183
|
|
| BLAKE2b-256 |
96ccae55426359cc05473cf319e9f85a7b227cbc0acce33e741f4b8992b63c9e
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl -
Subject digest:
775b1a99286d68ea3e53e8852ccd114b187dc335ecbc24db0ac8f174d4a076fc - Sigstore transparency entry: 1548769864
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff3a4b55c3c40340b6ce67b1e708c71027d15869ed40a55bb5e213a163edfe48
|
|
| MD5 |
4500e98d13d8b55f85ef219397246808
|
|
| BLAKE2b-256 |
15f0240fb2af37178c2264d6ecc9bb8b0749c250c0966c6bc167e849b93f20fb
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl -
Subject digest:
ff3a4b55c3c40340b6ce67b1e708c71027d15869ed40a55bb5e213a163edfe48 - Sigstore transparency entry: 1548768349
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83ce8223ffaf2ab537eba26c18bcf860c32a4cc7b0b46bcce7cbc880891dc144
|
|
| MD5 |
76c6f32074c4265294713e9b16054878
|
|
| BLAKE2b-256 |
59591b3184e842bb9bf104210df5b6c4fd1cd28170a6e960c9dbd8c5ccb9ea0e
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
83ce8223ffaf2ab537eba26c18bcf860c32a4cc7b0b46bcce7cbc880891dc144 - Sigstore transparency entry: 1548770585
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314t-manylinux_2_28_s390x.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d330db14e40f3c98aa5cb883e089a8b481a38e678f51e3a0aa0a32a4e1b75087
|
|
| MD5 |
fdfd800ff738e0e8bf0f8f18af0c2cfd
|
|
| BLAKE2b-256 |
6b92b0349c30a29763bab3d42ee3a62be66afcac97b3a08a98fbdeffb321a6d8
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314t-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314t-manylinux_2_28_s390x.whl -
Subject digest:
d330db14e40f3c98aa5cb883e089a8b481a38e678f51e3a0aa0a32a4e1b75087 - Sigstore transparency entry: 1548770346
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afce28a7abb303b7e3d875d3a7abc1d9063c5b56bf516631d89cbd2ea021db60
|
|
| MD5 |
998d0a4ba04496d7b24957321298e737
|
|
| BLAKE2b-256 |
7507fd0d991ea837e56283f6d87f6b3cf522bcaa75518a99422eeebd2814300f
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314t-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314t-manylinux_2_28_ppc64le.whl -
Subject digest:
afce28a7abb303b7e3d875d3a7abc1d9063c5b56bf516631d89cbd2ea021db60 - Sigstore transparency entry: 1548770890
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314t-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37ab0c1e7dbf283ef25de893b91f7be0a053cf8aa5fd96b1b5b67d1c3c5613d3
|
|
| MD5 |
b8e9f6f0a03762044fccb77fca2ab3c4
|
|
| BLAKE2b-256 |
25c5ede2d90e48c6cab69eb32febec9a92c643ab2bf4cbfd9f78d67cdada297b
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314t-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314t-manylinux_2_28_armv7l.whl -
Subject digest:
37ab0c1e7dbf283ef25de893b91f7be0a053cf8aa5fd96b1b5b67d1c3c5613d3 - Sigstore transparency entry: 1548770846
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
821ac29f078e527e7af471f161fdba63acf6ed6498e4385eb4ce930c89251905
|
|
| MD5 |
3e904a882b3b7269d599616f7609dc56
|
|
| BLAKE2b-256 |
cda10357588a0c515fdc07bf4e3ace8961cc592fe23694858b82965318ddac5f
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl -
Subject digest:
821ac29f078e527e7af471f161fdba63acf6ed6498e4385eb4ce930c89251905 - Sigstore transparency entry: 1548770732
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e460686b8b4dc9a105b395532dc99de8f9c3b26abccfcd1a955c9b2f94ef6864
|
|
| MD5 |
3348288732da308dcb8f7d1f5ba48035
|
|
| BLAKE2b-256 |
6bad55bb67965d130abb41f7cc45a6aecdd54d928320cca6c8ab6b866bfb0ed3
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-win_arm64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-win_arm64.whl -
Subject digest:
e460686b8b4dc9a105b395532dc99de8f9c3b26abccfcd1a955c9b2f94ef6864 - Sigstore transparency entry: 1548770604
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e0e883e91e42c5bf9decf2e90b474bab59d64108f920549d6828a267fcd060d
|
|
| MD5 |
ad9bfa1e507505fae2e02c0f373e1f79
|
|
| BLAKE2b-256 |
383732f970f12008e350bbc64766ed977af97bfb1eb7915980569db4ed432403
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-win_amd64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-win_amd64.whl -
Subject digest:
1e0e883e91e42c5bf9decf2e90b474bab59d64108f920549d6828a267fcd060d - Sigstore transparency entry: 1548771017
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13ba1f595f62ff9ea32c3c49827ea3086cb49ce1900ed56a45c7621764cca241
|
|
| MD5 |
d88aa3f009be1f62e7db8952633a5e6e
|
|
| BLAKE2b-256 |
6eb4a08007b9d1d657d0859561f3117a08cba7ca5b6ab1a44e18a1f06ac416e5
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
13ba1f595f62ff9ea32c3c49827ea3086cb49ce1900ed56a45c7621764cca241 - Sigstore transparency entry: 1548770534
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52d95965af7a3c802713c14ab7809eca05ae6d8941a43b3a4f73414ac7665103
|
|
| MD5 |
c54c5bdd14fc959a835de286fb729260
|
|
| BLAKE2b-256 |
6ede6c1ee0234eb4a7611630619932ff36df5c5a68059645a698917f5b62f66b
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
52d95965af7a3c802713c14ab7809eca05ae6d8941a43b3a4f73414ac7665103 - Sigstore transparency entry: 1548769341
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a91cba6de1b71bff03c473f366281a2a57cfb3f2005be61897dbc8b8d8c2040
|
|
| MD5 |
5e1325664ea9df6aae57cefb04d5390e
|
|
| BLAKE2b-256 |
80c694f26a8a891998f8c849a54b60136ecf5116d2963f1e6a63c5bffda96d47
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
0a91cba6de1b71bff03c473f366281a2a57cfb3f2005be61897dbc8b8d8c2040 - Sigstore transparency entry: 1548769224
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07cc52b6239310202e210e260fff3ec97d9d29c572b405e570f828c8487eed69
|
|
| MD5 |
9688634b4a8121d336aa2bda4387aab8
|
|
| BLAKE2b-256 |
f78c76c2d89f567953b7c948b31dadf73ff7ea29dbd2201ff3660ad5884aa24b
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
07cc52b6239310202e210e260fff3ec97d9d29c572b405e570f828c8487eed69 - Sigstore transparency entry: 1548770612
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c44ce2c9387d67893eae0023840889e8d9600037664fe0424bf19ac9708fd3dc
|
|
| MD5 |
b7d7c850865e7e34a357caf3123b30cc
|
|
| BLAKE2b-256 |
00ce8b383e0b7c6899d8556bccdd87c16f88c92c4daf74048c6aabdce3fefb6b
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
c44ce2c9387d67893eae0023840889e8d9600037664fe0424bf19ac9708fd3dc - Sigstore transparency entry: 1548768310
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d963576b5f22025df182de1550c7349e2ddbfddec7911fbe0ca5216e6c9cce5d
|
|
| MD5 |
e7f52deadee85b0b795e03f8069f38a5
|
|
| BLAKE2b-256 |
ceca95cac36dc12bcda52e165a161894b04165c492243535c3d1179da7516336
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-manylinux_2_28_s390x.whl -
Subject digest:
d963576b5f22025df182de1550c7349e2ddbfddec7911fbe0ca5216e6c9cce5d - Sigstore transparency entry: 1548769040
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a272e7a896e4dd3d20788df81c7e2d478d5c0137e0834293428e4ae191334a3b
|
|
| MD5 |
e1d71380d6298ae7a5c6e59dfa3a16f7
|
|
| BLAKE2b-256 |
af9f554eb0ad6f4291b2be866cf948c415802d083fdfebb50567c7f56f3d54c1
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-manylinux_2_28_ppc64le.whl -
Subject digest:
a272e7a896e4dd3d20788df81c7e2d478d5c0137e0834293428e4ae191334a3b - Sigstore transparency entry: 1548768406
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-manylinux_2_28_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6be4145de91fda43d3a34a2cb55ff464563c5a8d5d340a89f78219a398e28473
|
|
| MD5 |
ccc40852b13d7bc7cf94fe059ea5ec02
|
|
| BLAKE2b-256 |
098969cc50194fb96f551a8ba13f8b2fba3b5734f6e825e9ece4b24f55e9cc80
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-manylinux_2_28_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-manylinux_2_28_i686.whl -
Subject digest:
6be4145de91fda43d3a34a2cb55ff464563c5a8d5d340a89f78219a398e28473 - Sigstore transparency entry: 1548770969
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
221319a189d5d4131b7f9dbe958dcaec738a010686d81fb9de5724c559caf50c
|
|
| MD5 |
b29f463496770d0f3fd0019d3b2e58a5
|
|
| BLAKE2b-256 |
ae3ff8a7240107e3b0d11c9237fcc3af30f5bbfbb3a96081caa410b1db5ecd21
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-manylinux_2_28_armv7l.whl -
Subject digest:
221319a189d5d4131b7f9dbe958dcaec738a010686d81fb9de5724c559caf50c - Sigstore transparency entry: 1548769196
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4be6b8cecf8c65e6da49fd2ef021bd6a849a3fe3a51eb6bc4b30b02d8497e49a
|
|
| MD5 |
af5a2bd8cb43d28c21ea742b8212a023
|
|
| BLAKE2b-256 |
ce8153314ac45ce4d23059de8fc2a2fb0b28d9ed5e7626b98c7f824d0f505dd2
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl -
Subject digest:
4be6b8cecf8c65e6da49fd2ef021bd6a849a3fe3a51eb6bc4b30b02d8497e49a - Sigstore transparency entry: 1548770082
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ff39c22a0320fe7ebb4b6f49ca3efcbeab35cc4e20d304803ef864b7924590d
|
|
| MD5 |
0ce476cf632148583059426b414b1eb2
|
|
| BLAKE2b-256 |
74ce8387e45372ba88e6dd67ebe3a93961ef68eb3a868c268887df3426312a59
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
8ff39c22a0320fe7ebb4b6f49ca3efcbeab35cc4e20d304803ef864b7924590d - Sigstore transparency entry: 1548770793
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e767df888a606e04e0b89886f5aa8ec69df0bae47419a477177b6f9e235a278c
|
|
| MD5 |
5cad5dacdc7838314d2183a1dcd6c1db
|
|
| BLAKE2b-256 |
b2701dfd39d08cd267519e5a1a206dcd67ae7e186ad45d9e27876946d8458ae9
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
e767df888a606e04e0b89886f5aa8ec69df0bae47419a477177b6f9e235a278c - Sigstore transparency entry: 1548768611
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2801aa77f39e36b02ebc46207d3cbdbce2cecb7aac500123341cead5054ab7df
|
|
| MD5 |
9c7752f2b90f27fc2de6582a0099e312
|
|
| BLAKE2b-256 |
89c19be9464bb7079f47c4465ab25916564bece92e182fab757cc26a499e00e2
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
2801aa77f39e36b02ebc46207d3cbdbce2cecb7aac500123341cead5054ab7df - Sigstore transparency entry: 1548768626
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
968bf5f0750255379c7dc4109135026824db5b3eeec6401d108aef07134d4652
|
|
| MD5 |
74a60b27e45f794ecde0f3b8f547d2d0
|
|
| BLAKE2b-256 |
b2eb37bc1001f40c101225ac616524e053cddb94242b69e352b98a17828aed04
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl -
Subject digest:
968bf5f0750255379c7dc4109135026824db5b3eeec6401d108aef07134d4652 - Sigstore transparency entry: 1548768248
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e05007dfc0cf20d867d1fcea394322533680f739b77dde6a762e29448a41dec3
|
|
| MD5 |
9ff9b2e0a206905b924965eecf081ab0
|
|
| BLAKE2b-256 |
798b00e7f09a73f33a2a8e1cfb1064d627d8f0095154f6636ccfd59e3113a123
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl -
Subject digest:
e05007dfc0cf20d867d1fcea394322533680f739b77dde6a762e29448a41dec3 - Sigstore transparency entry: 1548768361
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a658cbd8bea9acddedab2550e024d349c16676eaff07836dbf42cb84a871a154
|
|
| MD5 |
86bc46e3ca23a2a17465def2522d1767
|
|
| BLAKE2b-256 |
7d0041e83e254631bbbf1fbc1d911670a1fb27afd5b493b643a50f00562a26c2
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
a658cbd8bea9acddedab2550e024d349c16676eaff07836dbf42cb84a871a154 - Sigstore transparency entry: 1548769755
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313t-manylinux_2_28_s390x.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6d3fd6a62a1bc300a44514281d12cec931ec97a17766a5a569002f0dde2ffed
|
|
| MD5 |
236a4bb5113ace21c091ed69a1c53bf6
|
|
| BLAKE2b-256 |
df490ef6730f4b189e7e1cc07205f423c3cb6764964e35c274667aa6c1e54bfc
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313t-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313t-manylinux_2_28_s390x.whl -
Subject digest:
a6d3fd6a62a1bc300a44514281d12cec931ec97a17766a5a569002f0dde2ffed - Sigstore transparency entry: 1548770772
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccdab03eb69aeeafbb7f48524fe789122d583bd1c5e7d4a91f2ad944b8a7d501
|
|
| MD5 |
f161e25f46ae6ab4d70073df8ca20c12
|
|
| BLAKE2b-256 |
2727aab2ca2a040d6d317ab26fe0717cd68be18a39ac7ec4ee8dc1dbdd5694fc
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313t-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313t-manylinux_2_28_ppc64le.whl -
Subject digest:
ccdab03eb69aeeafbb7f48524fe789122d583bd1c5e7d4a91f2ad944b8a7d501 - Sigstore transparency entry: 1548770212
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313t-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
436f31431179e4e1a541c6ed180733744b9af2fbb49fd9e46314cf58003acc60
|
|
| MD5 |
a16b291a75b8102553bc5abe588512dc
|
|
| BLAKE2b-256 |
f7f057b753dbcebd90691070d07f12294839c042eec9e52711dd0b63f894d908
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313t-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313t-manylinux_2_28_armv7l.whl -
Subject digest:
436f31431179e4e1a541c6ed180733744b9af2fbb49fd9e46314cf58003acc60 - Sigstore transparency entry: 1548768513
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9806b89c7929ac394768220bd318cd39ae052dd76dddcf75fd90c0682abba1c
|
|
| MD5 |
00f2e544ae3e2b300119c4451427ce4a
|
|
| BLAKE2b-256 |
1f9be93886bca5726341a15bd0a7132801ca730a81b78f0d86702176d2b86379
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl -
Subject digest:
f9806b89c7929ac394768220bd318cd39ae052dd76dddcf75fd90c0682abba1c - Sigstore transparency entry: 1548770043
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7563113125e26a4a7fd522bf7135b75278b02726f092fc82d7636f91f6ec367a
|
|
| MD5 |
e20a22696e5cbb2fdfbb3071546ccb0d
|
|
| BLAKE2b-256 |
035acd5dea3bda81bbdd1debfea0efa7c5bfebfdb80a1c1e3f4514c4f91649e3
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-win_arm64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-win_arm64.whl -
Subject digest:
7563113125e26a4a7fd522bf7135b75278b02726f092fc82d7636f91f6ec367a - Sigstore transparency entry: 1548768481
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39a96ddefa5260532af9873fabdae062996ae2b29fc39c4828246dbd487c5159
|
|
| MD5 |
3d56a6f7c9fb658ecd3674b53227188a
|
|
| BLAKE2b-256 |
412b69f6fd6f085c35adcb3be30f319d5126c4f6f387220908d4c63c0cf4e219
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
39a96ddefa5260532af9873fabdae062996ae2b29fc39c4828246dbd487c5159 - Sigstore transparency entry: 1548770865
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
079e5150600874ac269e6ce02aa3b46c092e0c9209c3834eb424362c7160ea1f
|
|
| MD5 |
fb7b4b0f5a7314c87117b4a7ee01f3c8
|
|
| BLAKE2b-256 |
971d794a8a897f21d07c2ec69774bf25267be4108b25c2fcbc617eb291cef46f
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-win32.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-win32.whl -
Subject digest:
079e5150600874ac269e6ce02aa3b46c092e0c9209c3834eb424362c7160ea1f - Sigstore transparency entry: 1548768432
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed1910e08e075c3291c180e7806fecb055cca0a8d7598477efdce75cc566da59
|
|
| MD5 |
ed573b91ea760ce18db7e97f4dd2e836
|
|
| BLAKE2b-256 |
ba4d1c7f88e25fea460ce1fa68f84e80c4fa85727c36d0e8ccf67dca64aeb78d
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
ed1910e08e075c3291c180e7806fecb055cca0a8d7598477efdce75cc566da59 - Sigstore transparency entry: 1548769812
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9b280ffbcb052e61c6302ee825dcb6f114887bb96736d4b502228016cfb985a
|
|
| MD5 |
0416f5bbc31ac85803964539830790be
|
|
| BLAKE2b-256 |
f053ce260aadbec3e29aba5a13ce3cf69d216cdbd8c15100c37e981853317f90
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
c9b280ffbcb052e61c6302ee825dcb6f114887bb96736d4b502228016cfb985a - Sigstore transparency entry: 1548769989
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3e8ce471c6ad6fc9b723b8854bf1e18c00ce3925e99439962102b0bf13ec035
|
|
| MD5 |
a0faee1a2f1734e4b8a98a63e73b6569
|
|
| BLAKE2b-256 |
9ddb337fd8c073e38413ce5eec50c77be3046dc6a5f7ed5031495d89b882bf2e
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
e3e8ce471c6ad6fc9b723b8854bf1e18c00ce3925e99439962102b0bf13ec035 - Sigstore transparency entry: 1548768948
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5944617009ea9154914f016cd2e254ecbf145d12bb63d74b6cc7a279aa7d741
|
|
| MD5 |
de83d4eb6b57d7db0491f5f7c6b79172
|
|
| BLAKE2b-256 |
88cb80b32e1c6eba073765fe86ef7e6a1dd2a4b31e9c96695d3491f6895b39d2
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
a5944617009ea9154914f016cd2e254ecbf145d12bb63d74b6cc7a279aa7d741 - Sigstore transparency entry: 1548768600
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48f2659193b038615d5ee002e919555508f6a1de11c22d56203638f2aa65f884
|
|
| MD5 |
0d328ea6a1baab1778ce18096782b12c
|
|
| BLAKE2b-256 |
439b4db000a5006761099be54d3fa34f226f89ac96af87a7649c5915ff011c86
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
48f2659193b038615d5ee002e919555508f6a1de11c22d56203638f2aa65f884 - Sigstore transparency entry: 1548770460
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1820d3c916e3e65d0b1d648cffdefa1cc573faa6d791645baf979892643afd59
|
|
| MD5 |
87e9f828c2d78d6f910fd78f342e3727
|
|
| BLAKE2b-256 |
01b826ac836a20ffd71e943e15d20ceec6293d0de479f35d0ad763a03cf9dfe2
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-manylinux_2_28_s390x.whl -
Subject digest:
1820d3c916e3e65d0b1d648cffdefa1cc573faa6d791645baf979892643afd59 - Sigstore transparency entry: 1548770756
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2926afe580a5e3a3edd17c9c17f70d698aefdae389d148a3ae784a8e9adb730
|
|
| MD5 |
65ab2f9fc7f4d4659c11d43cde47b89a
|
|
| BLAKE2b-256 |
168bf47f5258f30ac775ea59ffd7e8a9da0a7bb0777bcf35ebb9e05762a9cde8
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-manylinux_2_28_ppc64le.whl -
Subject digest:
e2926afe580a5e3a3edd17c9c17f70d698aefdae389d148a3ae784a8e9adb730 - Sigstore transparency entry: 1548770668
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-manylinux_2_28_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bbdd0c85e903579f24f21f5eb79b9f523d2e4bbcf7a65a4c538365555255274
|
|
| MD5 |
945124f08e23db470724459198feee3f
|
|
| BLAKE2b-256 |
5c6e9f6dfe65cf1f8d73f2206ca8322ef249a7f0ddc45bdd683f5bca64487bc3
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-manylinux_2_28_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-manylinux_2_28_i686.whl -
Subject digest:
0bbdd0c85e903579f24f21f5eb79b9f523d2e4bbcf7a65a4c538365555255274 - Sigstore transparency entry: 1548768867
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79b48c4de2ae659e44ec7feb1699db4763d94d09dac8e21fafa840a5c53f9e5f
|
|
| MD5 |
f652bc66d5a598c46814179fc4be2741
|
|
| BLAKE2b-256 |
80547129ff6afe4a24bde49626356b2fabde36b62713978d6bfcd284366ad306
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-manylinux_2_28_armv7l.whl -
Subject digest:
79b48c4de2ae659e44ec7feb1699db4763d94d09dac8e21fafa840a5c53f9e5f - Sigstore transparency entry: 1548769270
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff1ab9d0c32c05618dd29d78c1c10e53314fb4a8aa13c91ba22d3aa1d56d4b14
|
|
| MD5 |
98405e28c7851b1e263609b92464f5e4
|
|
| BLAKE2b-256 |
0d3d1af5db45da7413383b30471882bf194481aec0bd66ee988b69775d2ce782
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
ff1ab9d0c32c05618dd29d78c1c10e53314fb4a8aa13c91ba22d3aa1d56d4b14 - Sigstore transparency entry: 1548770639
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51afa9cd70b5db774b17f7a851bd951cae6acc8b1de61d56bd48f2cb995cc527
|
|
| MD5 |
cd1553c007f4f711196662c3b3e7c130
|
|
| BLAKE2b-256 |
7ca863600d5f6a4936cb347ccd57a5730d57e18a594be82d4c3e2662364c859a
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
51afa9cd70b5db774b17f7a851bd951cae6acc8b1de61d56bd48f2cb995cc527 - Sigstore transparency entry: 1548770483
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ace263bf03adfe9a875a206c55f0d461dfe49be4f56579587c0e24ef18d19a5
|
|
| MD5 |
d40b1d2288792fd070ef1893737cd1a4
|
|
| BLAKE2b-256 |
00de3abb25767b2cddb5de55aa9ae28f7cfe00863382d7a322325d33553dc8d5
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
8ace263bf03adfe9a875a206c55f0d461dfe49be4f56579587c0e24ef18d19a5 - Sigstore transparency entry: 1548768552
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5131d3cee69908d8539810476d8e6208b8298a6f3c1e48adc04b7eb3b453caa
|
|
| MD5 |
de5391d9a582c7d0de2d5db6644c8c18
|
|
| BLAKE2b-256 |
f57c4aca4bf77bb0286dde621946bae6f8afc1fdcc0fb2a80dbf644bf2d30bbf
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-win_arm64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-win_arm64.whl -
Subject digest:
d5131d3cee69908d8539810476d8e6208b8298a6f3c1e48adc04b7eb3b453caa - Sigstore transparency entry: 1548770912
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0499a336a3eb5fa3c12c11b0356cc5de52b0f43053aaa7ba76922fd455f0078
|
|
| MD5 |
f9298d08ad0a7fa380c24351e3be9b07
|
|
| BLAKE2b-256 |
375e2a4ec0ec476e10d73eb709d896d814c25e9f31942379c46bc4e13b601dff
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
b0499a336a3eb5fa3c12c11b0356cc5de52b0f43053aaa7ba76922fd455f0078 - Sigstore transparency entry: 1548768535
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12efe2ff1e0482f4a4e998a9a1a163bb25ff8d27034c8ae24f820181495908db
|
|
| MD5 |
9e8c29c46bc2e8119c73959e6482b46d
|
|
| BLAKE2b-256 |
2f572a28da014409c237f912839338ddcd117c7ec44b4e4a241fc5c3c663fcee
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
12efe2ff1e0482f4a4e998a9a1a163bb25ff8d27034c8ae24f820181495908db - Sigstore transparency entry: 1548770686
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef5adde499ffc99ced144dc5277b32377eb20fdaa587b77595c7c8aea071e1a8
|
|
| MD5 |
101334a3f084d8e0bf60725ac274ae52
|
|
| BLAKE2b-256 |
4e68a1aaf717b9bce94e2a69e7c220e513150b7aba99b98e091d4e2f50bad085
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
ef5adde499ffc99ced144dc5277b32377eb20fdaa587b77595c7c8aea071e1a8 - Sigstore transparency entry: 1548769145
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
894d3aa272decdcf969dc2c624b6e75c990bb554cfa43099b5fad52c76144035
|
|
| MD5 |
6d88cb3f4599f90edc879dd27c46a2be
|
|
| BLAKE2b-256 |
69158914e17520f11c10c5036e491470395c08769de33199cac3c286ed4a05f7
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
894d3aa272decdcf969dc2c624b6e75c990bb554cfa43099b5fad52c76144035 - Sigstore transparency entry: 1548768396
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
359c8c47257a812e6b1517a7d1c9fdb3305550d7bfad95f7071cbf58046c5310
|
|
| MD5 |
ebf149184c6c3c13d453900af589aac1
|
|
| BLAKE2b-256 |
7df3da5b6c5a52257d572bc265513a9a1b53201a54809fb6ee285ca5012afb63
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
359c8c47257a812e6b1517a7d1c9fdb3305550d7bfad95f7071cbf58046c5310 - Sigstore transparency entry: 1548770803
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
986a214743bd2cf8fbc132e295aa2e9c5b49e05ba3162d3d78f5a52dbf397b69
|
|
| MD5 |
aad311bd26b17652c0accb6648c2fcbd
|
|
| BLAKE2b-256 |
3380e1c65a760e246e2a0b8de0afbe969bd29987891cd46778630d92f09836d5
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
986a214743bd2cf8fbc132e295aa2e9c5b49e05ba3162d3d78f5a52dbf397b69 - Sigstore transparency entry: 1548770138
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d3f89f125b1f0230a609aad65a55f9996133e78a9450899a4f0fe34bd63d195
|
|
| MD5 |
7b61287d77cbb489eb3b3d56b3d5a860
|
|
| BLAKE2b-256 |
27de718e1fe50503c2a2625e5a15dbdeb1ebb3ff774ee264df78bc2947d915f2
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-manylinux_2_28_s390x.whl -
Subject digest:
5d3f89f125b1f0230a609aad65a55f9996133e78a9450899a4f0fe34bd63d195 - Sigstore transparency entry: 1548769404
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-cp312-cp312-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e58ae9f719a3720a02014bf26ee682e01e4cfd6b472ea443fff3b57dd4598f6b
|
|
| MD5 |
e8a35626213a0655992016c1b4f4c04b
|
|
| BLAKE2b-256 |
8d46689878046839b5bbf0f5d2347150a5a42bce9c33c71997a803831f22f6e8
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-manylinux_2_28_ppc64le.whl -
Subject digest:
e58ae9f719a3720a02014bf26ee682e01e4cfd6b472ea443fff3b57dd4598f6b - Sigstore transparency entry: 1548769061
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-manylinux_2_28_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b70f5a97270ea76b4d2abbbdea0f5b18548087c45ea234d685f2294ae0877fd0
|
|
| MD5 |
a1e2fb38eaec3539956f8ec38c765f7d
|
|
| BLAKE2b-256 |
94cefb824ff9e2f2d38c0ea2d73837094ec7110b0b3df613c46ff8bb7c750dfb
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-manylinux_2_28_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-manylinux_2_28_i686.whl -
Subject digest:
b70f5a97270ea76b4d2abbbdea0f5b18548087c45ea234d685f2294ae0877fd0 - Sigstore transparency entry: 1548768738
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp312-cp312-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c8ffd809ae328f81dae8f63c2edfcaece0f74784229f1d4a5d0fcbdbd7364cc
|
|
| MD5 |
f0c79b2be24fb5a1ee4435aae885815e
|
|
| BLAKE2b-256 |
599e4bf82d1414e6e0527cccba0f5db3e71d6ab828660306d2dfc51ebf8cff96
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-manylinux_2_28_armv7l.whl -
Subject digest:
3c8ffd809ae328f81dae8f63c2edfcaece0f74784229f1d4a5d0fcbdbd7364cc - Sigstore transparency entry: 1548768295
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6e188a4a89663df49a7a8d1eee49515e64564681afdbee322da016affc6b875
|
|
| MD5 |
ce560c0168cc2de5f17e3ce90ae21721
|
|
| BLAKE2b-256 |
b368ab4a580b76b48cb50176530e02fd55dfc29ed155cb42b1531102f7aeb4aa
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
d6e188a4a89663df49a7a8d1eee49515e64564681afdbee322da016affc6b875 - Sigstore transparency entry: 1548771003
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a1e37e3942c167498b106e5f11c9413cc4b9ce60491146469819f9033efdb13
|
|
| MD5 |
2909bacf77c6923274355ee429420e16
|
|
| BLAKE2b-256 |
15af10103d6a781ff27be30bab44a23aa4f099200c2d1279aa5ead3a16ec7298
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
3a1e37e3942c167498b106e5f11c9413cc4b9ce60491146469819f9033efdb13 - Sigstore transparency entry: 1548769716
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d2f9c2470f29bcb42ba824bb0311c3ce096f10b66103487ff9e1ca5c56fcf48
|
|
| MD5 |
95c40beac71cd1cd9097a28179f70de5
|
|
| BLAKE2b-256 |
dda02c2e9d198d388c77a6e7cb3f3ba6edc867b2842d0233ccec988b90ef1319
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
3d2f9c2470f29bcb42ba824bb0311c3ce096f10b66103487ff9e1ca5c56fcf48 - Sigstore transparency entry: 1548768459
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce57e5e8ee9d410441ec2ec7b4c5993d4c41cb2b6ae59249b4ead85441fdddba
|
|
| MD5 |
9f437fa78acc72b6d6eb1b9b583c2052
|
|
| BLAKE2b-256 |
8b4a054d10586d4d705cecad0289060b1e3c74f53e91fe336c6d75e76bfdd617
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
ce57e5e8ee9d410441ec2ec7b4c5993d4c41cb2b6ae59249b4ead85441fdddba - Sigstore transparency entry: 1548768284
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.2 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42482e85f823b05673eb6953db4f41638ec032b368ebbae6cbb230a0e6202c94
|
|
| MD5 |
2fad8d7fb8c387065000001325858f30
|
|
| BLAKE2b-256 |
b2d8196ae3157845de315860eb57e397b982dd9ade0e2127704d9d8d543292ac
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
42482e85f823b05673eb6953db4f41638ec032b368ebbae6cbb230a0e6202c94 - Sigstore transparency entry: 1548769494
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbdcc77963dbc765b1b472fd21244b7e5c0cea7575e1a67a4d388cfc6f0c0b87
|
|
| MD5 |
7d3cd5b634993069150b057c824deab6
|
|
| BLAKE2b-256 |
62243bce6049c21a55cd2c2de6bb0b335a4f9259d38dfa6dbf2192b7d624c329
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
fbdcc77963dbc765b1b472fd21244b7e5c0cea7575e1a67a4d388cfc6f0c0b87 - Sigstore transparency entry: 1548770723
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fc828b2e709f6a3ae4471eefae557173d01ffb69e75df3eb1d10758f67684e4
|
|
| MD5 |
62ed5c579f5ffc13d8fb5abab7a407d8
|
|
| BLAKE2b-256 |
d48d6b81f8c3f9259ac27adb1d451a64bcadcb5f902aabbda4b15a344bfd4fd6
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
7fc828b2e709f6a3ae4471eefae557173d01ffb69e75df3eb1d10758f67684e4 - Sigstore transparency entry: 1548768380
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5f3c13eb1732e5e7f370588d281ba8264e9cf58541c40d94a00833472c417d7
|
|
| MD5 |
6fa8a8b5930e3a76bbe2bf3b29d58e50
|
|
| BLAKE2b-256 |
478f77a2e9d7db3964101fc0bb17a28a3979e004387913dfbee37d26518d4c8f
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
b5f3c13eb1732e5e7f370588d281ba8264e9cf58541c40d94a00833472c417d7 - Sigstore transparency entry: 1548768322
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6695e6254cb3cca454b1975df30e48f0658651f0e46ebdb195fa843ae5ee5bf
|
|
| MD5 |
72bdd1f30d21a590678e90a6679c9b8f
|
|
| BLAKE2b-256 |
1c27fa795d957b145cf9fbdeaab0128b872c28a5fb74bab98b7cf73e3ee59b6c
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
f6695e6254cb3cca454b1975df30e48f0658651f0e46ebdb195fa843ae5ee5bf - Sigstore transparency entry: 1548771033
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5424420d5b4cfd052ed0b608b1a6fa8223a7afd2174a010dc2fec3bf1728fc22
|
|
| MD5 |
7c43f59cf8be7cd197b80652f7a30a26
|
|
| BLAKE2b-256 |
b7f978d94016387e86bd49e39c6af982ebbd4619976df7f8fcf9c619f12ad662
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-manylinux_2_28_s390x.whl -
Subject digest:
5424420d5b4cfd052ed0b608b1a6fa8223a7afd2174a010dc2fec3bf1728fc22 - Sigstore transparency entry: 1548770680
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-cp311-cp311-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2e6f9c6d86ab3504edf88190e57414fbd360d25db505a8d3fce706ab68d4ab5
|
|
| MD5 |
8286d4af8f881fab773ed2f2370a2ec6
|
|
| BLAKE2b-256 |
1f201b3bf685d5af36f356767bd55e294209c7989b3f66bddbfab405f82325e0
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-manylinux_2_28_ppc64le.whl -
Subject digest:
f2e6f9c6d86ab3504edf88190e57414fbd360d25db505a8d3fce706ab68d4ab5 - Sigstore transparency entry: 1548769097
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-manylinux_2_28_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfb1bf152efe8c30d8e7b572e533a81f8bee80659baa215de4be9485eea05680
|
|
| MD5 |
a6c49aee569e3e362fcb99e61daf08d5
|
|
| BLAKE2b-256 |
225cbefa367dc31f8c0d1ec6188a1f07ab0fdb003d78045e6c67be5cee414a2f
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-manylinux_2_28_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-manylinux_2_28_i686.whl -
Subject digest:
cfb1bf152efe8c30d8e7b572e533a81f8bee80659baa215de4be9485eea05680 - Sigstore transparency entry: 1548768647
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp311-cp311-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37c46ef768fd53cc5ab4b48cfdfe4ddc9f57d35424400b9c492c7928228f94c3
|
|
| MD5 |
251d3ed63cf844b8fd80f04d9899448d
|
|
| BLAKE2b-256 |
892440faa39f7f8d55f52b4226630a571c134d09d1551f848ec4e9e8b0aaf9cf
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-manylinux_2_28_armv7l.whl -
Subject digest:
37c46ef768fd53cc5ab4b48cfdfe4ddc9f57d35424400b9c492c7928228f94c3 - Sigstore transparency entry: 1548768764
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e81f69ddf4c86f4733e2a439a9c500a2719c0496fb506eaacf2daa042777faae
|
|
| MD5 |
eaa984891c58e8dc1f08f19c9ddf3a80
|
|
| BLAKE2b-256 |
60407c4d08961bf8c9cf95af6651948520f84f62713781830147d94859eaf4db
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
e81f69ddf4c86f4733e2a439a9c500a2719c0496fb506eaacf2daa042777faae - Sigstore transparency entry: 1548769007
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a785dde3cb079177629998ce20efa41e58e5ca26ec1967b6eb8b47c5e3a3a16
|
|
| MD5 |
c433400a6fbe5a74fa220e0338156afc
|
|
| BLAKE2b-256 |
042aacebf82b77f9073df6208ff1057f1d755ee903c3bbefb35a91e64d413547
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
6a785dde3cb079177629998ce20efa41e58e5ca26ec1967b6eb8b47c5e3a3a16 - Sigstore transparency entry: 1548768965
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4800ee736f64d77f754ecb9b95f2f0cd72faaa7b9d5ec1463b5ea94fa960c0d4
|
|
| MD5 |
e38e4fd594afaa0de66c7551ab8d07f1
|
|
| BLAKE2b-256 |
ec101061e1f308b79145a4d7bdb0fc2d6a003eb334e3144541b84aab88373f87
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
4800ee736f64d77f754ecb9b95f2f0cd72faaa7b9d5ec1463b5ea94fa960c0d4 - Sigstore transparency entry: 1548770705
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9626c639adfd901d08e878e99854c4cbbf9fabbc977b45a39875a356be889b0c
|
|
| MD5 |
4cdb47fd75369adce0648ef53b9dd60f
|
|
| BLAKE2b-256 |
508aafc67367e8f0ac3bc1c3ba11c3bba9704863087576b33bca779cf5dcdcc5
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
9626c639adfd901d08e878e99854c4cbbf9fabbc977b45a39875a356be889b0c - Sigstore transparency entry: 1548770510
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.2 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e43d277357833c4eeae53fb1281fc16e9aebf41be812680c9e6f1a1e65ef443f
|
|
| MD5 |
2c7a560f6054e846fb387207df8a981d
|
|
| BLAKE2b-256 |
5225435e23f6de2fc9a4b59184d817c98bf4a9776dd23187120a7806ddef6c7b
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
e43d277357833c4eeae53fb1281fc16e9aebf41be812680c9e6f1a1e65ef443f - Sigstore transparency entry: 1548769446
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee4a7c8e5ddf50771595fa14abdef1b9ae091422a2b0e2d5d4ebae132fd2b04
|
|
| MD5 |
3a328b925cc4657eb176abdd4febc131
|
|
| BLAKE2b-256 |
6508c8d87a3bc5f4e2bd83c51ab92bbbd9054cd5477f71349a18dc45cf524c75
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
3ee4a7c8e5ddf50771595fa14abdef1b9ae091422a2b0e2d5d4ebae132fd2b04 - Sigstore transparency entry: 1548768673
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ee23292a3d93a707aa9dffc00e5ebc9a8cb052cf81e67f8b02f74668609d316
|
|
| MD5 |
d9d8a78a9b6bf332d3c8f736c39f74cc
|
|
| BLAKE2b-256 |
99ca5d54119e364ccd723c58c0fdcaaefb3433427bbcd2220133dafbaccadb06
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
0ee23292a3d93a707aa9dffc00e5ebc9a8cb052cf81e67f8b02f74668609d316 - Sigstore transparency entry: 1548768275
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad0e67a963bc87f569bd6b236d59a2e963d931d9b6ef41f4d24ca11e3f5fdf3e
|
|
| MD5 |
11431a7605d6d7eb282db47611e60952
|
|
| BLAKE2b-256 |
06164072b77cda8eb5d05df0d60f43654ccf3be2966bd48bbe7307fec4305b57
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
ad0e67a963bc87f569bd6b236d59a2e963d931d9b6ef41f4d24ca11e3f5fdf3e - Sigstore transparency entry: 1548770983
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c84d7e9b86361d5ed943af5bfba34d7734aa2a3d2f4215247433c870639870f2
|
|
| MD5 |
0acd353b9f2689a48f23b4e580abc10e
|
|
| BLAKE2b-256 |
34cc1848576eb58d7e7c2e74822120c92e2791a6a996d36aa8d73790446ea739
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
c84d7e9b86361d5ed943af5bfba34d7734aa2a3d2f4215247433c870639870f2 - Sigstore transparency entry: 1548768423
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0b1e0f54f5f198554a7472368a48b138219017687917ab197143cbecebb8cbe
|
|
| MD5 |
0d4549d8f2d7cf71252a2c7b723a1be2
|
|
| BLAKE2b-256 |
173f62f3eb828e66452b283326f074f4217832c91c13b5f7aa1deafac641c753
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-manylinux_2_28_s390x.whl -
Subject digest:
b0b1e0f54f5f198554a7472368a48b138219017687917ab197143cbecebb8cbe - Sigstore transparency entry: 1548768330
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-cp310-cp310-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc2319075967ba6e9a41e8eb7b2485627e16fc17249fbc8424b40c8ff4b58281
|
|
| MD5 |
cdadaba87b151ce9eae1d0c83e7afb70
|
|
| BLAKE2b-256 |
3aa6a95499b5365e0c90fdf6a187fc8f0383b5fa34f4fe653c96da5415194c89
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-manylinux_2_28_ppc64le.whl -
Subject digest:
dc2319075967ba6e9a41e8eb7b2485627e16fc17249fbc8424b40c8ff4b58281 - Sigstore transparency entry: 1548768818
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-manylinux_2_28_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97e435d0eec29854f95a77b52c7adb116966e15df17f21aef0ed579278225bb9
|
|
| MD5 |
432ca41cb49f20702dd1c3225db6a77e
|
|
| BLAKE2b-256 |
e416dcfe68815ee7c7bce42878101f0dcee9c52264c517d0e775c9cfc63b8121
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-manylinux_2_28_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-manylinux_2_28_i686.whl -
Subject digest:
97e435d0eec29854f95a77b52c7adb116966e15df17f21aef0ed579278225bb9 - Sigstore transparency entry: 1548769573
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-cp310-cp310-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f9a0abced4fc951bced0114c8c2826fe20d2f453888b11f8c1efe285934ec38
|
|
| MD5 |
7d4fa1373ada0a6f43c38dc4ac56aac0
|
|
| BLAKE2b-256 |
0ef4702910c8961fa1cafd4cf0f3550b5b46a2a6bca7a1c83c28fbcdf485ff93
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-manylinux_2_28_armv7l.whl -
Subject digest:
9f9a0abced4fc951bced0114c8c2826fe20d2f453888b11f8c1efe285934ec38 - Sigstore transparency entry: 1548768937
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
719fb82125a7e860da95764ffcc4e987bdc7d809623068fc7f15721b6e0d2ee5
|
|
| MD5 |
c5abda8fe77fb0863553a90d07650d8c
|
|
| BLAKE2b-256 |
188525a5d4078ff8023d40fc2f242d4ef78910992840293aaa3d8443fafd1a65
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
719fb82125a7e860da95764ffcc4e987bdc7d809623068fc7f15721b6e0d2ee5 - Sigstore transparency entry: 1548770175
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ac56b7e06ee396b2807688c8139ffb86ad117b25a947fa79cca4303726ee405
|
|
| MD5 |
52f08f5d3b74b35c560e7861c1a5653e
|
|
| BLAKE2b-256 |
598ab8549b36d82cc0dbf127b1923d28a8836f4e664aa84014626f98b6c8f8f1
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
1ac56b7e06ee396b2807688c8139ffb86ad117b25a947fa79cca4303726ee405 - Sigstore transparency entry: 1548768238
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f781b1e880fff7d411f706c0094f439137f613a7c9037e6e2fa491da99b8456
|
|
| MD5 |
a8202502ce208df264fe3776b14e43f2
|
|
| BLAKE2b-256 |
8ba6b79c8eb01f8e6048ae89bf3b1a3b355e8f4f52b13687f99f1404cd6d74d6
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
2f781b1e880fff7d411f706c0094f439137f613a7c9037e6e2fa491da99b8456 - Sigstore transparency entry: 1548768581
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b27493d6209b81f238973eccfa2a720ad7eb1d38c6a85aad8fea787d766cf6dd
|
|
| MD5 |
17805b87099dc9a659c3e5a5e40d5feb
|
|
| BLAKE2b-256 |
3b7a292ff4d428f9247b40babdaff7e7cdca035676f45ed1156cfefe69815db1
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
b27493d6209b81f238973eccfa2a720ad7eb1d38c6a85aad8fea787d766cf6dd - Sigstore transparency entry: 1548770468
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a269478ea25890f5e2aac79be24a5bccac75b443bce0c71644c90de6089a0b93
|
|
| MD5 |
55d6263b0f92331a3b6c12876fe4b44c
|
|
| BLAKE2b-256 |
9d38c2eef52e4312702fda18afd0afa14b9a567ad6643b43436107dbb3f471e0
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
a269478ea25890f5e2aac79be24a5bccac75b443bce0c71644c90de6089a0b93 - Sigstore transparency entry: 1548770239
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d29801cce04631e9e37a1f804a0f889ec413c7a8f8192bb26599432efaf8c9e
|
|
| MD5 |
6c3698cd147122b0051fdb33135c89de
|
|
| BLAKE2b-256 |
72079cc677a095833eefcd7b303e0a1413744ebec449d1ac2bf458c1d9656b26
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
2d29801cce04631e9e37a1f804a0f889ec413c7a8f8192bb26599432efaf8c9e - Sigstore transparency entry: 1548770110
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f04d5f5447d63472dadc15540c6ebd86277c566f6ab5e857023b6d812460be3
|
|
| MD5 |
badc4b358bbb2d9035e226159082cecc
|
|
| BLAKE2b-256 |
9d79155693b9c19b7b34c4ce6c5be194a522760a2396c26249454766fe34feb4
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-manylinux_2_28_s390x.whl -
Subject digest:
2f04d5f5447d63472dadc15540c6ebd86277c566f6ab5e857023b6d812460be3 - Sigstore transparency entry: 1548768467
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19320a9defd56d3ef789de8b98fd4b3762e99640808823ef704169dcd051a6a8
|
|
| MD5 |
b3b3f1c21522dca9731a6145b270722f
|
|
| BLAKE2b-256 |
3e6cf5b8473c1d94c5a0b538583b06d9605b242d28e438ed3d7a2e85dce4a44a
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-manylinux_2_28_ppc64le.whl -
Subject digest:
19320a9defd56d3ef789de8b98fd4b3762e99640808823ef704169dcd051a6a8 - Sigstore transparency entry: 1548770437
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-manylinux_2_28_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
885f77e81028cc9b20931e769355408b161db8601fc3456fe94d97e9bed6baca
|
|
| MD5 |
ca20f29a5349c8470ba22fb81224b8b2
|
|
| BLAKE2b-256 |
0205544cb20cd1dd0d81e0caa1debd6a5be8f95e81e38cabbae648455251168d
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-manylinux_2_28_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-manylinux_2_28_i686.whl -
Subject digest:
885f77e81028cc9b20931e769355408b161db8601fc3456fe94d97e9bed6baca - Sigstore transparency entry: 1548770931
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
262e7bdc7a16e763100d7f8f66e13293cfceff69dbb756e231ac4db6af8f45e4
|
|
| MD5 |
13f582f035d883450c11f7ff100f2a3c
|
|
| BLAKE2b-256 |
d9be481b76ddcb65bf09d1080f3b99c2abe594072e42d5f0a4662e7fee2ba53f
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-manylinux_2_28_armv7l.whl -
Subject digest:
262e7bdc7a16e763100d7f8f66e13293cfceff69dbb756e231ac4db6af8f45e4 - Sigstore transparency entry: 1548768444
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f837ffbc7fa8608058feec4650850ef9b0caa0daa0261dc8f96f8140c4e25cbf
|
|
| MD5 |
206e6d1422dfb4e06d287e27aec71394
|
|
| BLAKE2b-256 |
56833ee6bbcdbcacd9a9faf725267ae0b3f29b00561872a012baa68b2ca572b8
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp39-cp39-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp39-cp39-manylinux_2_28_aarch64.whl -
Subject digest:
f837ffbc7fa8608058feec4650850ef9b0caa0daa0261dc8f96f8140c4e25cbf - Sigstore transparency entry: 1548770568
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b05ee4c330d8815abd9c83b86e4de7d10f0bf945e1334c6bcccdc236a7d83c5
|
|
| MD5 |
5f8f885a82468ad45cdd9daf6b6111ec
|
|
| BLAKE2b-256 |
18c60be6dadcfda64524f3b4eec4e638f4791790ac2c4bd90899e6a726aef6a1
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
3b05ee4c330d8815abd9c83b86e4de7d10f0bf945e1334c6bcccdc236a7d83c5 - Sigstore transparency entry: 1548768914
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8b125216e0e3a32d6fc3bd3df69bcae4d93e087c3bd4966d89c7347e34c769d
|
|
| MD5 |
bf30ff4ddec417119f4221aef4f5dfef
|
|
| BLAKE2b-256 |
13e9645d294c96dd625e8857eb519c992cf188b13b8dee76d94658edb5cb36ae
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp38-cp38-musllinux_1_2_i686.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp38-cp38-musllinux_1_2_i686.whl -
Subject digest:
b8b125216e0e3a32d6fc3bd3df69bcae4d93e087c3bd4966d89c7347e34c769d - Sigstore transparency entry: 1548768265
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c2f8d778f3e703eda24d5588e2f75d4f79247e68766dd3090a61f1f6f9017b6
|
|
| MD5 |
a3ad6dc8b070f7b6292caa8dfeef4a0b
|
|
| BLAKE2b-256 |
2d95007f6a8a0e24e8fd08d8ed5554fdc862ecbf9d9068a717e2ea56751330c8
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl -
Subject digest:
4c2f8d778f3e703eda24d5588e2f75d4f79247e68766dd3090a61f1f6f9017b6 - Sigstore transparency entry: 1548770658
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8eade069458a38fb925e8b556f4b63df212b43ed623dd281bbe4b996c509f17a
|
|
| MD5 |
32428fc0c61b6bc45088b0b3a7f6a375
|
|
| BLAKE2b-256 |
ad979a270eb820492575f7a9decd716b785c588753c78243b7d1c76ed8947533
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl -
Subject digest:
8eade069458a38fb925e8b556f4b63df212b43ed623dd281bbe4b996c509f17a - Sigstore transparency entry: 1548770952
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp38-cp38-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
221a2f2f519284ca10b22804ca95c0d89fd3f52c37b456f4205bf231e8ea03d7
|
|
| MD5 |
dfe949df2e7582716a633c192a37e698
|
|
| BLAKE2b-256 |
b1f39a8402778327c089763bebf91aae62fce2ce04e292fc236b32484dca5d00
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp38-cp38-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp38-cp38-manylinux_2_28_s390x.whl -
Subject digest:
221a2f2f519284ca10b22804ca95c0d89fd3f52c37b456f4205bf231e8ea03d7 - Sigstore transparency entry: 1548769667
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp38-cp38-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9be605c8ddfa9c3c626c52b90926584b2f858400ef2cd271da9098169d236d2
|
|
| MD5 |
6341feb347fce6ccdd180214c9cb4dce
|
|
| BLAKE2b-256 |
e1db98c8966ce9e495c06f8ca48af6ffa839b6e97f798533ceea4111f5b8ae52
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp38-cp38-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp38-cp38-manylinux_2_28_ppc64le.whl -
Subject digest:
f9be605c8ddfa9c3c626c52b90926584b2f858400ef2cd271da9098169d236d2 - Sigstore transparency entry: 1548768299
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp38-cp38-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0321a4b61357bc986b0423055177b84a8dc7daea8f7a26dfefac9f64fa4f4c5c
|
|
| MD5 |
f4c975412eb80d9bedccd2372ff5e257
|
|
| BLAKE2b-256 |
0e6e33919aa88f6bb33b825b0337dcc59c9a11e117536dd721bbfcb6e7cff920
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp38-cp38-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp38-cp38-manylinux_2_28_armv7l.whl -
Subject digest:
0321a4b61357bc986b0423055177b84a8dc7daea8f7a26dfefac9f64fa4f4c5c - Sigstore transparency entry: 1548769934
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rqx-0.1.0-cp38-cp38-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rqx-0.1.0-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93a629e32e41486aeb9500c095d89c6c719269c0deba460ca1f4cd7af82d02fe
|
|
| MD5 |
02989d89d4a70d1a50bf03ecb6404644
|
|
| BLAKE2b-256 |
b7d64bd37d17251ba3d39de5fa7e951b13c6574a5bc4b8803bee71455505ca10
|
Provenance
The following attestation bundles were made for rqx-0.1.0-cp38-cp38-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on rodcochran/rqx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rqx-0.1.0-cp38-cp38-manylinux_2_28_aarch64.whl -
Subject digest:
93a629e32e41486aeb9500c095d89c6c719269c0deba460ca1f4cd7af82d02fe - Sigstore transparency entry: 1548769534
- Sigstore integration time:
-
Permalink:
rodcochran/rqx@8ac669db2210a4097a89e832019d06e9c52a104f -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rodcochran
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@8ac669db2210a4097a89e832019d06e9c52a104f -
Trigger Event:
push
-
Statement type: