Python bindings to the nzb-rs library - a spec compliant parser for NZB files, written in Rust.
Project description
rnzb
Python bindings to the nzb-rs library - a spec compliant parser for NZB files, written in Rust.
Table Of Contents
- About
- Installation
- Related projects
- Performance
- Supported platforms
- Building from source
- License
- Contributing
About
rnzb.Nzb is a drop-in replacement for nzb.Nzb.
For documentation and usage examples, refer to the nzb library's resources:
Error handling
-
rnzbuses the same error type (rnzb.InvalidNzbError) asnzbbut it's not a drop-in replacement. -
Error messages will be largely similar to
nzb's, though not guaranteed to be identical in every case. -
rnzb.InvalidNzbErroris a simpler exception (See PyO3/pyo3#295 for why). Its implementation is effectively:class InvalidNzbError(Exception): pass
This means that it's lacking custom attributes like
.messagefound innzb's version. Code relying on such attributes onnzb.InvalidNzbErrorwill require adjustment. Consider using the standard exception message (str(e)) to achieve the same result. -
rnzbwill only ever raise explicitly documented errors for each function. Undocumented errors should be reported as bugs.
Installation
rnzb is available on PyPI, so you can simply use pip to install it.
pip install rnzb
Related projects
Considering this is the fourth library for parsing a file format that almost nobody cares about and lacks a formal specification, here's an overview to help you decide:
| Project | Description | Parser | Meta Editor |
|---|---|---|---|
nzb |
Original Python Library | ✅ | ✅ |
nzb-rs |
Rust port of nzb |
✅ | ❌ |
rnzb |
Python bindings to nzb-rs |
✅ | ❌ |
nzb-parser |
Javascript port of nzb |
✅ | ❌ |
Performance
Although nzb is already quite fast due to its use of C-based expat parser from Python's standard library, rnzb offers even better performance, being approximately 5 times faster than nzb.
$ hyperfine --warmup 1 "python test_nzb.py" "python test_rnzb.py"
Benchmark 1: python test_nzb.py
Time (mean ± σ): 3.848 s ± 0.023 s [User: 3.561 s, System: 0.248 s]
Range (min … max): 3.816 s … 3.885 s 10 runs
Benchmark 2: python test_rnzb.py
Time (mean ± σ): 756.4 ms ± 3.5 ms [User: 595.3 ms, System: 149.7 ms]
Range (min … max): 749.0 ms … 761.8 ms 10 runs
Summary
python test_rnzb.py ran
5.09 ± 0.04 times faster than python test_nzb.py
The above benchmark was performed by looping over 10 random NZB files I had lying around, with the following code:
$ cat test_nzb.py
from pathlib import Path
from nzb import Nzb
for p in Path.cwd().glob("*.nzb"):
Nzb.from_file(p)
$ cat test_rnzb.py
from pathlib import Path
from rnzb import Nzb
for p in Path.cwd().glob("*.nzb"):
Nzb.from_file(p)
This benchmark isn't super scientific, but it gives a pretty good idea of the performance difference.
Supported platforms
Refer to the following table for the platforms and Python versions for which rnzb publishes prebuilt wheels:
| Platform | CPython 3.9-3.13 | CPython 3.13 (t) | PyPy 3.9-3.10 |
|---|---|---|---|
🐧 Linux (x86_64, glibc>=2.28) |
✅ | ✅ | ✅ |
🐧 Linux (x86_64, musl>=1.2) |
✅ | ✅ | ✅ |
🐧 Linux (aarch64, glibc>=2.28) |
✅ | ✅ | ✅ |
🐧 Linux (aarch64, musl>=1.2) |
✅ | ✅ | ✅ |
🪟 Windows (x86_64) |
✅ | ✅ | ✅ |
🍏 macOS (x86_64) |
✅ | ✅ | ✅ |
🍏 macOS (arm64) |
✅ | ✅ | ✅ |
The library itself is not inherently tied to any specific platform or Python version. The available wheels are based on what can be (reasonably) built using GitHub Actions.
Building from source
Building from source requires the Rust toolchain and Python 3.9+.
-
With
uv:git clone https://github.com/Ravencentric/rnzb cd rnzb uv build
-
With
pypa/build:git clone https://github.com/Ravencentric/rnzb cd rnzb python -m build
License
Licensed under either of:
- Apache License, Version 2.0 (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.
Contributing
Contributions are welcome! Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
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 rnzb-0.4.0.tar.gz.
File metadata
- Download URL: rnzb-0.4.0.tar.gz
- Upload date:
- Size: 52.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b37f1866ffe380d9254aed50ffa562b4e4779e487d88c90dfaeda351f4ba5601
|
|
| MD5 |
6270d3fde5efb47861ecbe84af19ab3f
|
|
| BLAKE2b-256 |
8c17ffaeec7c5c3ba6d5dd2eaf578f3ba9bdf4a623607c940c2e08bdee37bca2
|
Provenance
The following attestation bundles were made for rnzb-0.4.0.tar.gz:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0.tar.gz -
Subject digest:
b37f1866ffe380d9254aed50ffa562b4e4779e487d88c90dfaeda351f4ba5601 - Sigstore transparency entry: 170111371
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 882.9 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17286a1405200430d065261095ce506a47481f7ac96553287714468e0d4724a2
|
|
| MD5 |
271e9ccd3c87637e3b3459323e7a4827
|
|
| BLAKE2b-256 |
a3c8b7b565465a7cb843bb5ece2e386dbc3f397a9b29c30f82d0561f6c922679
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp310-pypy310_pp73-win_amd64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp310-pypy310_pp73-win_amd64.whl -
Subject digest:
17286a1405200430d065261095ce506a47481f7ac96553287714468e0d4724a2 - Sigstore transparency entry: 170111383
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92dd7794e13e5940e7cd08c1c0e7f383dd124917950af778bec8e970cdb8b07b
|
|
| MD5 |
d59268a34d6196af2f808279bb6667e6
|
|
| BLAKE2b-256 |
d88733967c13a15b5ee8e1c695e81a16f2f48494b155cd77c6457f5df3f244cb
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl -
Subject digest:
92dd7794e13e5940e7cd08c1c0e7f383dd124917950af778bec8e970cdb8b07b - Sigstore transparency entry: 170111393
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 997.9 kB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94387eac0128e4eaebf3ffa8cd37f3737e8348aca78babf63e50367a127de588
|
|
| MD5 |
84b9bd3d2f8747dc882ca98ffcc2d30c
|
|
| BLAKE2b-256 |
630dc65981ff711dc9fa138c63e8208f9184a25cf5c3de897584a04f0a8be1a4
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl -
Subject digest:
94387eac0128e4eaebf3ffa8cd37f3737e8348aca78babf63e50367a127de588 - Sigstore transparency entry: 170111431
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp310-pypy310_pp73-macosx_11_0_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
- Upload date:
- Size: 991.7 kB
- Tags: PyPy, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
283ca00b398fb8d443ffa2bf028a4926499583df2e95030fa5060416376e3e1b
|
|
| MD5 |
ce6b3feed814bd99f8b5a04332b8699f
|
|
| BLAKE2b-256 |
99b38db70e3253227be47bd5072c9b673a282cd110a73fcfc525cf1c2b0d90a5
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp310-pypy310_pp73-macosx_11_0_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp310-pypy310_pp73-macosx_11_0_x86_64.whl -
Subject digest:
283ca00b398fb8d443ffa2bf028a4926499583df2e95030fa5060416376e3e1b - Sigstore transparency entry: 170111452
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 929.4 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f124cc033098488c3cd14446065deadbb04d838129edf079ed300df057234501
|
|
| MD5 |
5be73a7b53fbc1d9470dfb47d88dd582
|
|
| BLAKE2b-256 |
5600469cc4243816f151c4a9c09a626841a952b4db11a2366227267a5570c9be
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl -
Subject digest:
f124cc033098488c3cd14446065deadbb04d838129edf079ed300df057234501 - Sigstore transparency entry: 170111398
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp39-pypy39_pp73-win_amd64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 882.8 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2500fe5b6f4a60726286e1268679d0b3a6fa575d64b366bc62b0c2591fc37b49
|
|
| MD5 |
51ac4c008a0e027d70637fcd23db595e
|
|
| BLAKE2b-256 |
c13b5da1378571e760434488837e02ad88b3c3254b91567f3b11ca30fcc7ec49
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp39-pypy39_pp73-win_amd64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp39-pypy39_pp73-win_amd64.whl -
Subject digest:
2500fe5b6f4a60726286e1268679d0b3a6fa575d64b366bc62b0c2591fc37b49 - Sigstore transparency entry: 170111375
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34c6b4f50b53263b3ccaa793590bea6814228b324e197ac0bf837af8d655a7b8
|
|
| MD5 |
ce5988ba98120ae8bc8761af075d585b
|
|
| BLAKE2b-256 |
59b101cbb5c7ad25eb0f0b2dbeef553454d1b88794b9a0b46dfd102be6968cba
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl -
Subject digest:
34c6b4f50b53263b3ccaa793590bea6814228b324e197ac0bf837af8d655a7b8 - Sigstore transparency entry: 170111408
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 998.2 kB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dbaac0773ae5d55cc10c9044927e288b9cd484d7504cd3e2402a876e63eb1d9
|
|
| MD5 |
9ae0fc66ee764215da985e8db21bb046
|
|
| BLAKE2b-256 |
574f207c8525795d9e7ecbc8a792ad563a17b48629a8043d35f69d22ac781a69
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl -
Subject digest:
6dbaac0773ae5d55cc10c9044927e288b9cd484d7504cd3e2402a876e63eb1d9 - Sigstore transparency entry: 170111453
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp39-pypy39_pp73-macosx_11_0_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp39-pypy39_pp73-macosx_11_0_x86_64.whl
- Upload date:
- Size: 992.2 kB
- Tags: PyPy, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7c56658f5947a2620833129349b08e692d0ddc8c8258b0d8d8b11ce586b78ca
|
|
| MD5 |
666d980189821abcb15a71aed29e2771
|
|
| BLAKE2b-256 |
4bc5e37a1e3c599076960f6dedd071d04548e870205b567ce8213966eb1f8339
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp39-pypy39_pp73-macosx_11_0_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp39-pypy39_pp73-macosx_11_0_x86_64.whl -
Subject digest:
d7c56658f5947a2620833129349b08e692d0ddc8c8258b0d8d8b11ce586b78ca - Sigstore transparency entry: 170111403
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: rnzb-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 929.6 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7981e3b87d388d455e160e52ba1ac5e5839883a16feece2fa120b748e0e2c6ac
|
|
| MD5 |
89289d1df6fca21db2d020057d7630c9
|
|
| BLAKE2b-256 |
fc8dbdb46fdd1085350e490dae69f016274006ec887ed537056b9892d4dd9991
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl -
Subject digest:
7981e3b87d388d455e160e52ba1ac5e5839883a16feece2fa120b748e0e2c6ac - Sigstore transparency entry: 170111410
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 883.2 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b97e2276e32c3fafdea4b93d46d78384cfbe5d0fb3baf4bdaa273f203ea31a3
|
|
| MD5 |
2510185758f46bfb282369a5e10109e6
|
|
| BLAKE2b-256 |
c946989a7b2bba142149b7c4687ec1ddc2400808e9852636d05d9fb040971f53
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313t-win_amd64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313t-win_amd64.whl -
Subject digest:
4b97e2276e32c3fafdea4b93d46d78384cfbe5d0fb3baf4bdaa273f203ea31a3 - Sigstore transparency entry: 170111386
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e499d60b0048fe7a1513bcb4e34dd40b4425199b715a4716e2aafb6e5c0af9bd
|
|
| MD5 |
4717ad15055dc792800cf1aa9bcb6f7e
|
|
| BLAKE2b-256 |
c1feffd0b63d9540327278e89b443628a1e2e1261f33525d756b7e26cbfc02ec
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
e499d60b0048fe7a1513bcb4e34dd40b4425199b715a4716e2aafb6e5c0af9bd - Sigstore transparency entry: 170111475
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcfca67a04d72e8bba841a0206eab3d522f4bd9fb7c3720fe1eaaab5501e925b
|
|
| MD5 |
3caf250c0db63b79e1fea301c8fdcbe7
|
|
| BLAKE2b-256 |
ddb51124e347d11311a9d09e340740244eeeeb6d7630b5a33b80ea2ec62d345c
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
fcfca67a04d72e8bba841a0206eab3d522f4bd9fb7c3720fe1eaaab5501e925b - Sigstore transparency entry: 170111423
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8b84fa692d448990deaa59ac3151180dbf0619a034f824f10d1b62c2f683882
|
|
| MD5 |
f045d0496dae48d76837752f4784092c
|
|
| BLAKE2b-256 |
d80e86f13c4fd04de768f7ac45e248da1a03c51d290ba09904b5bf26353b5426
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl -
Subject digest:
c8b84fa692d448990deaa59ac3151180dbf0619a034f824f10d1b62c2f683882 - Sigstore transparency entry: 170111473
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 992.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbc930e1120f8ae4ced0d4ceefb2db9ffdca7892d77fa68013e698f302c7b565
|
|
| MD5 |
003717a05267477a7353cb804bd0658b
|
|
| BLAKE2b-256 |
e9a38917978ef6d0557f7d0cc15c89f841c8303720a125252754770d5d4824dc
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl -
Subject digest:
dbc930e1120f8ae4ced0d4ceefb2db9ffdca7892d77fa68013e698f302c7b565 - Sigstore transparency entry: 170111384
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313t-macosx_11_0_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313t-macosx_11_0_x86_64.whl
- Upload date:
- Size: 985.6 kB
- Tags: CPython 3.13t, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0072ad2f3d666db2b223626c15f08e896c8d0f581490e99d4f146f65f3baa78
|
|
| MD5 |
710f27492f17be81b4f1bc7ec4ada108
|
|
| BLAKE2b-256 |
589faae50ffb22bed318b12dedd54a38ff18f6232f2b7849d9f8826ef80fbb2f
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313t-macosx_11_0_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313t-macosx_11_0_x86_64.whl -
Subject digest:
f0072ad2f3d666db2b223626c15f08e896c8d0f581490e99d4f146f65f3baa78 - Sigstore transparency entry: 170111442
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 923.8 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00f8982d96a6606ae42777a70be89b1422decdd493d34c5bdf396dacd32ecb20
|
|
| MD5 |
79bb26e42d78afbed75b20866c5ad9bf
|
|
| BLAKE2b-256 |
526e1fae915c74e29ceb29ff2cb6b3bc98f451b28cc62062830b6356c5b2066d
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl -
Subject digest:
00f8982d96a6606ae42777a70be89b1422decdd493d34c5bdf396dacd32ecb20 - Sigstore transparency entry: 170111391
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 883.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
304b92cde8c3a28b31688ebefb1262b5fc16851355c48f33623077ff6c516311
|
|
| MD5 |
e11f8b88556e7a13f369f7da0c69668f
|
|
| BLAKE2b-256 |
7dd9dc0a00a9a68951386763eb0cd9751c92d6ce155c69222c49c53f54b1874b
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313-win_amd64.whl -
Subject digest:
304b92cde8c3a28b31688ebefb1262b5fc16851355c48f33623077ff6c516311 - Sigstore transparency entry: 170111457
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85e8fd51804c5fd20740a444ca13052f8e6301e774f29f97fb5e25266ea5ca03
|
|
| MD5 |
9b56dbf40616e4e65f421f0e894ab6ab
|
|
| BLAKE2b-256 |
c281b6163be15001c2086abe8cda659604c2e1c203f2b7c1af1cd9b790bc64c1
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
85e8fd51804c5fd20740a444ca13052f8e6301e774f29f97fb5e25266ea5ca03 - Sigstore transparency entry: 170111418
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61458501ded2c92afc8226a2fd1763e66843f1b8fbb0363f478e19271136a982
|
|
| MD5 |
62d2543f898ef76c9442b72f98c612fc
|
|
| BLAKE2b-256 |
7998c817092ed5adbc5ac02a8eaccba3e5ac71f56f5141cec3374a9fbea2534f
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
61458501ded2c92afc8226a2fd1763e66843f1b8fbb0363f478e19271136a982 - Sigstore transparency entry: 170111422
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09756c5a5872e43fc226781b83bc120e50e68269353cae1e077240c31b4e4714
|
|
| MD5 |
733efefe802774942954e8917c6c1332
|
|
| BLAKE2b-256 |
4ec8fcb895c44ded28b779f52dc31b2c5387ca2540d609ec76501dc83bb716c0
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
09756c5a5872e43fc226781b83bc120e50e68269353cae1e077240c31b4e4714 - Sigstore transparency entry: 170111407
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 994.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce9fbd485226bd1a4293cb9e8d2f998f681d8e51eddfd855275d36d7cfa47ef2
|
|
| MD5 |
461354c6a2289d85228030166e62e313
|
|
| BLAKE2b-256 |
1b301ed26e989f7bc644672cfb3f1015ad22fb1dd6b86647722c6c7a0bbd3df6
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
ce9fbd485226bd1a4293cb9e8d2f998f681d8e51eddfd855275d36d7cfa47ef2 - Sigstore transparency entry: 170111390
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313-macosx_11_0_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313-macosx_11_0_x86_64.whl
- Upload date:
- Size: 986.5 kB
- Tags: CPython 3.13, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22bc194713aab7cc2c249e9eef53cf6f963fd2796dc4ac48fa11503cf96d36ff
|
|
| MD5 |
4e02f7f574629129840cbddaa4b4cd60
|
|
| BLAKE2b-256 |
976059164e8e5fb33288c844c1f910365437bb70ddda006c19c2d965b3034ab0
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313-macosx_11_0_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313-macosx_11_0_x86_64.whl -
Subject digest:
22bc194713aab7cc2c249e9eef53cf6f963fd2796dc4ac48fa11503cf96d36ff - Sigstore transparency entry: 170111458
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 925.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e8cac17650f8883201da0f1af3c99a80204d927ffc5178b2952cd8614ab6359
|
|
| MD5 |
00a42ce3cbd7eebdb0baef93d7ca7dbc
|
|
| BLAKE2b-256 |
c8caee43b2726e72d4abb93e14f52d52cd50b532ad80789359ff05ab5ffaaf53
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
1e8cac17650f8883201da0f1af3c99a80204d927ffc5178b2952cd8614ab6359 - Sigstore transparency entry: 170111433
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 884.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6c1659487e4d489ed518fb59c606c35d2e7b09a8b5e71d0073d35f0b6c6069e
|
|
| MD5 |
1b1e92f48175bed676a77f4777f1df02
|
|
| BLAKE2b-256 |
9f8b44cf0f1107bfc72c7e98e9ae14577500cfcbb0781f0973627e14a4ef9bf0
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp312-cp312-win_amd64.whl -
Subject digest:
b6c1659487e4d489ed518fb59c606c35d2e7b09a8b5e71d0073d35f0b6c6069e - Sigstore transparency entry: 170111464
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0707413d02ab959e126fde9801c121e713a7c6deb5fca9c81f1a27dd26b8ed06
|
|
| MD5 |
24f3cdc588160e1486cbd67c9759d4da
|
|
| BLAKE2b-256 |
db44569cf96fe930cf69b10acd2248fa5bd7b6a919a3d9d380541b370cfdcfd9
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
0707413d02ab959e126fde9801c121e713a7c6deb5fca9c81f1a27dd26b8ed06 - Sigstore transparency entry: 170111435
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb3c7e8ca59cf7f9a097b8ff6ccabc470fdd1071a5cf1b95a807f8468e7c7d4f
|
|
| MD5 |
85a85c915f723de7515128de89dbae4e
|
|
| BLAKE2b-256 |
19dfa008ff7c20290ff9a062ab8e278f67dbaf99fea698404f86d5c4dff7237f
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
eb3c7e8ca59cf7f9a097b8ff6ccabc470fdd1071a5cf1b95a807f8468e7c7d4f - Sigstore transparency entry: 170111388
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80cc75e4558ca4d8b318757ef4d31cd29f20a5a67a9acd7a0fe612b48f57539f
|
|
| MD5 |
57660a1e1acc4e1afc7b20f1e243a967
|
|
| BLAKE2b-256 |
d861de382587df1f7a7847e1e134e702dff42c12df01835a8cc2b67c6714723c
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
80cc75e4558ca4d8b318757ef4d31cd29f20a5a67a9acd7a0fe612b48f57539f - Sigstore transparency entry: 170111445
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 995.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
074ad935f27a981bbe891c03f7084d34074522e589a9dc9a57d1fd6379de29bb
|
|
| MD5 |
89522476ba4ec03afe92f9e10e912cb3
|
|
| BLAKE2b-256 |
cddd5753104bdda0a05c09a81a757a6164cfee55fd0810f0054a069a1e322235
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
074ad935f27a981bbe891c03f7084d34074522e589a9dc9a57d1fd6379de29bb - Sigstore transparency entry: 170111426
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp312-cp312-macosx_11_0_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp312-cp312-macosx_11_0_x86_64.whl
- Upload date:
- Size: 986.8 kB
- Tags: CPython 3.12, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18d673fd0c20189a66cc13576ed44bf17a37be986f363a49d5fd9c7480d01dc7
|
|
| MD5 |
805a1fa3c2ebecb6e5b9eccdc02f47e7
|
|
| BLAKE2b-256 |
cb6202b5d08255f30821b4f0ba2735e97dc191e6a0635a786af9cb5f15fa93c5
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp312-cp312-macosx_11_0_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp312-cp312-macosx_11_0_x86_64.whl -
Subject digest:
18d673fd0c20189a66cc13576ed44bf17a37be986f363a49d5fd9c7480d01dc7 - Sigstore transparency entry: 170111471
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 925.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58637c1df6173e0f735557fb723ce5a23cc39fd0b3cd8f1c573fb956e0794f90
|
|
| MD5 |
c22a375a6a140ef95f61e67367c47e72
|
|
| BLAKE2b-256 |
b328eda538beebf1f1f687416e118e40e23ee40dbffa8cc107a98a1e8bfa31b5
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
58637c1df6173e0f735557fb723ce5a23cc39fd0b3cd8f1c573fb956e0794f90 - Sigstore transparency entry: 170111467
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 882.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aac3db94fc322c1776a4eb36b09fa34f25b831f49075a71fbd6b98d2fa80c0c8
|
|
| MD5 |
74b939f6db394df80e248322f8675277
|
|
| BLAKE2b-256 |
3b15f03eae4bac1f0004bdcec1fd59e28852a46af012b6cd4d69c496ccc21b4b
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp311-cp311-win_amd64.whl -
Subject digest:
aac3db94fc322c1776a4eb36b09fa34f25b831f49075a71fbd6b98d2fa80c0c8 - Sigstore transparency entry: 170111382
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb05ad512f35eaa47cb71baa46abde22b92e9584c2b548ed9646258b64bd85ea
|
|
| MD5 |
8dfa8a37ea3d66fe586d5353d14dfb18
|
|
| BLAKE2b-256 |
0a2c34f708d86973014bdd126bcb92aac70c2526a6ba88784e9ac845ce1eae2a
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
bb05ad512f35eaa47cb71baa46abde22b92e9584c2b548ed9646258b64bd85ea - Sigstore transparency entry: 170111480
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc6bbc98f9a334fd2d04e66bb1cc47ec09e95dfb7329f93b92143612e57de3ab
|
|
| MD5 |
153dd41481792fccbdbfb7196daf180e
|
|
| BLAKE2b-256 |
cda18c5a39ee452e719f435845466f0a8262cd7b26ddfaae97231340ef387847
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
fc6bbc98f9a334fd2d04e66bb1cc47ec09e95dfb7329f93b92143612e57de3ab - Sigstore transparency entry: 170111469
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12de9a16106ed73d40f1cf20655424576ce16c73396de1152428f1d7ae46086e
|
|
| MD5 |
d20adb7c2167249ca07bb1a58ecaf4b7
|
|
| BLAKE2b-256 |
e1991084d78c23e25d409fbf27dd50ec8fb8c7391d780f0e7b4b545fdaa52403
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
12de9a16106ed73d40f1cf20655424576ce16c73396de1152428f1d7ae46086e - Sigstore transparency entry: 170111438
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 997.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d986bb22922614f5161db6e429f0f1c5639669ae12cbc1ee144e53ed3b25b0b6
|
|
| MD5 |
1f87255593e7153e698872d79a645200
|
|
| BLAKE2b-256 |
e2e816f9071652182046cdcd97844d44b355bff62751de7850e1ded65abb3a38
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
d986bb22922614f5161db6e429f0f1c5639669ae12cbc1ee144e53ed3b25b0b6 - Sigstore transparency entry: 170111413
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp311-cp311-macosx_11_0_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp311-cp311-macosx_11_0_x86_64.whl
- Upload date:
- Size: 991.0 kB
- Tags: CPython 3.11, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2180e64bfff4e0fb391db038e0cec158b71b50ef106bb3d6630f3ee3631142f1
|
|
| MD5 |
c0e98adc02b2fc9b43a8046ad95dc4d1
|
|
| BLAKE2b-256 |
301ba16d6cab0e27828289ccda4554983db3373266d69d81c0e175ace97768b7
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp311-cp311-macosx_11_0_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp311-cp311-macosx_11_0_x86_64.whl -
Subject digest:
2180e64bfff4e0fb391db038e0cec158b71b50ef106bb3d6630f3ee3631142f1 - Sigstore transparency entry: 170111462
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 928.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ec595af4a714ab4fb1c609c24c4429303c6d2f551eabce87843dba069ad0d0b
|
|
| MD5 |
62e93113dc9d8ea529febc51a1bdbf48
|
|
| BLAKE2b-256 |
f986b542f4c0ebfd272c0c0d75869ba80033541b82948a952ec79697d8cdf514
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
0ec595af4a714ab4fb1c609c24c4429303c6d2f551eabce87843dba069ad0d0b - Sigstore transparency entry: 170111474
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 882.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ac5eda17443a6b4fc41584856318b283bb69ddf82db3b4799e360a2924a5fbc
|
|
| MD5 |
f63c109599b36bd74a709ff68d9cfb0d
|
|
| BLAKE2b-256 |
d7451567c12fa60963685ca171fe75459de4867e469ad2e3b7164efe0eb96ae5
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp310-cp310-win_amd64.whl -
Subject digest:
6ac5eda17443a6b4fc41584856318b283bb69ddf82db3b4799e360a2924a5fbc - Sigstore transparency entry: 170111394
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
272a1424241c8b9820f806a587dba3c75ea2c4afb667027a92497c4382969724
|
|
| MD5 |
6f76ddc7ce8f6b63e7ef0b2635473c8a
|
|
| BLAKE2b-256 |
42a0c83bac4b2d2b55a0ef01ba30ffcec9044e7c53a1be6b24b46f809d9a329b
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
272a1424241c8b9820f806a587dba3c75ea2c4afb667027a92497c4382969724 - Sigstore transparency entry: 170111427
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f62a0752f99affc19ba0f5957da67df27e957d15c46c88e1bd6387f44b88dc6
|
|
| MD5 |
f77421bc35dc0c0e6d698b6b499db139
|
|
| BLAKE2b-256 |
666f136bb1b5f118168d85bb6b64a64e747d2b16ed50fe251cb1348a8e612cd0
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
5f62a0752f99affc19ba0f5957da67df27e957d15c46c88e1bd6387f44b88dc6 - Sigstore transparency entry: 170111372
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e3089d32af4c7d1dcb3ad9434e0cfd73225b2d7e34e0751ec1f2d3a07b6bc4d
|
|
| MD5 |
50be5e86ff3892e860477e7246af0ed4
|
|
| BLAKE2b-256 |
d25c81add71431f563577bcba100f1ee1f1faccc7ad7bad11edffca997d3b244
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
2e3089d32af4c7d1dcb3ad9434e0cfd73225b2d7e34e0751ec1f2d3a07b6bc4d - Sigstore transparency entry: 170111466
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 997.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd46fb4bb36c2b76ff8aed612843e097081e9406f346b996d6a1fc19cff1f302
|
|
| MD5 |
27156d3fc1c0503e23e72fd4ea85f5fe
|
|
| BLAKE2b-256 |
568c24f7e93689c866a198e6b81ba30c1b1d4bf783c6eb8aaa722fe6c2204c92
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
dd46fb4bb36c2b76ff8aed612843e097081e9406f346b996d6a1fc19cff1f302 - Sigstore transparency entry: 170111454
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp310-cp310-macosx_11_0_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp310-cp310-macosx_11_0_x86_64.whl
- Upload date:
- Size: 991.3 kB
- Tags: CPython 3.10, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3212099cbc8b68c3c236e1a9c0505d26e2997859a508818a1c8f8c03032b3aea
|
|
| MD5 |
21f26f24ec57b267051049f7284cffcd
|
|
| BLAKE2b-256 |
9da55112760538215be2ac0e08a4d1e5056e2e787d346faf7917c7e454f5c8b0
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp310-cp310-macosx_11_0_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp310-cp310-macosx_11_0_x86_64.whl -
Subject digest:
3212099cbc8b68c3c236e1a9c0505d26e2997859a508818a1c8f8c03032b3aea - Sigstore transparency entry: 170111396
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 929.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28c5d15cfe694b089fae2c09149b9cfd69600ac90287f477472dbec2b800da4f
|
|
| MD5 |
567f3080364252b72c1d713da526cd5c
|
|
| BLAKE2b-256 |
0cca2bbec338b37d0a050c4d975abb426fb272b5b51d105edc167e4c63c3565d
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
28c5d15cfe694b089fae2c09149b9cfd69600ac90287f477472dbec2b800da4f - Sigstore transparency entry: 170111419
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 883.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9b29fa4fa6e6ee360e92425a3a99dd35179a6d02956ffaac88c3d900f9dab84
|
|
| MD5 |
520e39bdb532341f0a53d576649e90c6
|
|
| BLAKE2b-256 |
c87d03682411733ff734a59429b5e2cf7f87dc8e1d6faa7cd437600421315680
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp39-cp39-win_amd64.whl -
Subject digest:
e9b29fa4fa6e6ee360e92425a3a99dd35179a6d02956ffaac88c3d900f9dab84 - Sigstore transparency entry: 170111479
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79e67566cba37baea74c0a21b647dc2f2781f6a18af7bca68fce1da71f3090c8
|
|
| MD5 |
62dccceabc49b907814ff0f04d2f1c54
|
|
| BLAKE2b-256 |
cd3836d5efa8020232d2be091ccb69053d0c20bd1fe4f764d72ee9273e3a1486
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
79e67566cba37baea74c0a21b647dc2f2781f6a18af7bca68fce1da71f3090c8 - Sigstore transparency entry: 170111416
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d02f9d03cc228af1f600c1e9832d62b01e10a41873dda3c7b7231dc71bb7f6a4
|
|
| MD5 |
cf89ccb746ce1359cb4df189a87bb4ef
|
|
| BLAKE2b-256 |
9399b8c06429331ef1c63a17fcad9585e52dade734b59ae68b847175a0d08e37
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
d02f9d03cc228af1f600c1e9832d62b01e10a41873dda3c7b7231dc71bb7f6a4 - Sigstore transparency entry: 170111420
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
284ae8fdd7e88b1e0097c17f0a116ed08b4fc96ea52df9b35ad8fb46749af3b8
|
|
| MD5 |
2f9e8c5a7b5b481fd72cea8da8e783ad
|
|
| BLAKE2b-256 |
2be61013be84106dc78a7b4e8f1a43a4d3505a55116c57c96eb9668657a2b2e8
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
284ae8fdd7e88b1e0097c17f0a116ed08b4fc96ea52df9b35ad8fb46749af3b8 - Sigstore transparency entry: 170111447
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 998.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6a62cb6b1d356b1c7531546e361aaf44bde9375c4d3553ec7aa1192a43f2853
|
|
| MD5 |
faece34a0679fcabb70ab0932a7b6a68
|
|
| BLAKE2b-256 |
f8d67e8a2ad00b3f9fc9a4ac913d399e03f994d40f5253e2148948a4d52ef7ef
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl -
Subject digest:
c6a62cb6b1d356b1c7531546e361aaf44bde9375c4d3553ec7aa1192a43f2853 - Sigstore transparency entry: 170111404
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp39-cp39-macosx_11_0_x86_64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp39-cp39-macosx_11_0_x86_64.whl
- Upload date:
- Size: 991.9 kB
- Tags: CPython 3.9, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
412f2c53ceaa91d3fe58d39b872218bec6ad5a24a483178ac13a40c763d51847
|
|
| MD5 |
247411b9ff6902eaffcccd206c2b69db
|
|
| BLAKE2b-256 |
57f2b0509cb2b06815eb2724a072b499fcc7482973337bd405adb0742180873c
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp39-cp39-macosx_11_0_x86_64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp39-cp39-macosx_11_0_x86_64.whl -
Subject digest:
412f2c53ceaa91d3fe58d39b872218bec6ad5a24a483178ac13a40c763d51847 - Sigstore transparency entry: 170111460
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type:
File details
Details for the file rnzb-0.4.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: rnzb-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 929.4 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5651604bbdc348f4444aa7549db3b91c7dc7e33fe9e20e7ae73fac501cfae25c
|
|
| MD5 |
d7c1157084cfd2db658a834872317e5a
|
|
| BLAKE2b-256 |
bf2d1b641272acdf5b671a9be6fb23e0494d9b1e65b5dc999468ae6bafa7d8ac
|
Provenance
The following attestation bundles were made for rnzb-0.4.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
release.yml on Ravencentric/rnzb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rnzb-0.4.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
5651604bbdc348f4444aa7549db3b91c7dc7e33fe9e20e7ae73fac501cfae25c - Sigstore transparency entry: 170111461
- Sigstore integration time:
-
Permalink:
Ravencentric/rnzb@3dff13fb0404e3902effb797553dae77af23863b -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Ravencentric
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3dff13fb0404e3902effb797553dae77af23863b -
Trigger Event:
push
-
Statement type: