Skip to main content

Python bindings to the nzb-rs library - a spec compliant parser for NZB files, written in Rust.

Project description

rnzb

Tests Build PyPI - Types License

PyPI - Latest Version PyPI - Python Version PyPI - Implementation

Python bindings to the nzb-rs library - a spec compliant parser for NZB files, written in Rust.

Table Of Contents

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

  • rnzb.InvalidNzbError is named identically to nzb.InvalidNzbError, but 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.InvalidNzbError is 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 .message found in nzb's version. Code relying on such attributes on nzb.InvalidNzbError will require adjustment. Consider using the standard exception message (str(e)) to achieve the same result.

  • rnzb will 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

rnzb is approximately two to three times faster than nzb, depending on the NZB.

$ hyperfine --warmup 1 --shell=none ".venv/Scripts/python.exe -I -B test_nzb.py" ".venv/Scripts/python.exe -I -B test_rnzb.py"
Benchmark 1: .venv/Scripts/python.exe -I -B test_nzb.py
  Time (mean ± σ):     368.9 ms ±   3.1 ms    [User: 196.9 ms, System: 160.9 ms]
  Range (min … max):   364.4 ms … 374.1 ms    10 runs

Benchmark 2: .venv/Scripts/python.exe -I -B test_rnzb.py
  Time (mean ± σ):     112.7 ms ±   1.2 ms    [User: 45.1 ms, System: 60.7 ms]
  Range (min … max):   111.4 ms … 116.2 ms    26 runs

Summary
  .venv/Scripts/python.exe -I -B test_rnzb.py ran
    3.27 ± 0.04 times faster than .venv/Scripts/python.exe -I -B test_nzb.py

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:

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


Download files

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

Source Distribution

rnzb-0.5.1.tar.gz (52.2 kB view details)

Uploaded Source

Built Distributions

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

rnzb-0.5.1-pp311-pypy311_pp73-win_amd64.whl (926.7 kB view details)

Uploaded PyPyWindows x86-64

rnzb-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rnzb-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rnzb-0.5.1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (945.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.5.1-pp310-pypy310_pp73-win_amd64.whl (926.4 kB view details)

Uploaded PyPyWindows x86-64

rnzb-0.5.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rnzb-0.5.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rnzb-0.5.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (945.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.5.1-cp313-cp313t-win_amd64.whl (926.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

rnzb-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rnzb-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rnzb-0.5.1-cp313-cp313t-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

rnzb-0.5.1-cp313-cp313t-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

rnzb-0.5.1-cp313-cp313t-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

rnzb-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl (940.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rnzb-0.5.1-cp313-cp313-win_amd64.whl (926.8 kB view details)

Uploaded CPython 3.13Windows x86-64

rnzb-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rnzb-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rnzb-0.5.1-cp313-cp313-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rnzb-0.5.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rnzb-0.5.1-cp313-cp313-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

rnzb-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (942.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rnzb-0.5.1-cp312-cp312-win_amd64.whl (927.2 kB view details)

Uploaded CPython 3.12Windows x86-64

rnzb-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rnzb-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rnzb-0.5.1-cp312-cp312-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rnzb-0.5.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rnzb-0.5.1-cp312-cp312-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

rnzb-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (942.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rnzb-0.5.1-cp311-cp311-win_amd64.whl (926.7 kB view details)

Uploaded CPython 3.11Windows x86-64

rnzb-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rnzb-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rnzb-0.5.1-cp311-cp311-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rnzb-0.5.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rnzb-0.5.1-cp311-cp311-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

rnzb-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (945.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rnzb-0.5.1-cp310-cp310-win_amd64.whl (926.6 kB view details)

Uploaded CPython 3.10Windows x86-64

rnzb-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rnzb-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rnzb-0.5.1-cp310-cp310-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rnzb-0.5.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rnzb-0.5.1-cp310-cp310-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

rnzb-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (945.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rnzb-0.5.1-cp39-cp39-win_amd64.whl (926.8 kB view details)

Uploaded CPython 3.9Windows x86-64

rnzb-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rnzb-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rnzb-0.5.1-cp39-cp39-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rnzb-0.5.1-cp39-cp39-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rnzb-0.5.1-cp39-cp39-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

rnzb-0.5.1-cp39-cp39-macosx_11_0_arm64.whl (945.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rnzb-0.5.1-cp39-abi3-win_amd64.whl (934.2 kB view details)

Uploaded CPython 3.9+Windows x86-64

rnzb-0.5.1-cp39-abi3-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

rnzb-0.5.1-cp39-abi3-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

rnzb-0.5.1-cp39-abi3-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ x86-64

rnzb-0.5.1-cp39-abi3-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

rnzb-0.5.1-cp39-abi3-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9+macOS 11.0+ x86-64

rnzb-0.5.1-cp39-abi3-macosx_11_0_arm64.whl (949.7 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

File details

Details for the file rnzb-0.5.1.tar.gz.

File metadata

  • Download URL: rnzb-0.5.1.tar.gz
  • Upload date:
  • Size: 52.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1.tar.gz
Algorithm Hash digest
SHA256 f83a3a2d5bba84c3dca21ebc33a0b795a9e71f1b7847eb1d68179cbb80d06a39
MD5 5d510ca9f364494b9034c6efe1f6df86
BLAKE2b-256 ab55e2afe45cdcdc3e7ad86349bbc62416e8a2ecf730791581504ee19dc28fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1.tar.gz:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a5bc93953eaeb3094cc9d1872f8b4edf8f3e8e11e424cc3411ca14a62724ec48
MD5 8abad94a1b4ed9fdd8c98d993e96aa11
BLAKE2b-256 ad0111cb59de4ce79dd465d92c1ae9b3a984d955498df9fad9a4582c9e6711a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 912afbed2edabd959f2fa1eea1e32b63832a72d6ef8f3fc932b74a94368db096
MD5 beb69192bd076e638c19f38fc4dee2ce
BLAKE2b-256 e6e34e39c73e91b48e2641f7a2f3be2868250ac3355826664ea1c0c1933bb14f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97818e2ab72e04a39ec10581ba4b455cc526dc3447ae555c580ecf4a9ae15e73
MD5 b3bc8e2759a720a77e32fcc6c32a44dc
BLAKE2b-256 3cd33a4d32469f80e3ab5ad4ed505077f216996d8470a77cd289ce29fa644652

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b170577b99f7c7b7cecfdaaf331a3f7f01849d4809b73f57623c220860ed7835
MD5 876f9aac50dd13fc7e18f818623f33b4
BLAKE2b-256 e60274b51c7eedcff33cb265b62353a29758e37e09f977292222a3f1a4e1529c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca338217029fa5331d126fe3f8012a792447a8fdee448e641c5a0773e4f41cfc
MD5 e2dca879eca3f073c865500a371c01c6
BLAKE2b-256 debd9b1d16d8077823b6f630e786fb72e33015f0924dbeb8fe577fc3fb5f384e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 956444dcb1ae9dc3cb55f22efc6431d9aae7d18d9d55db63ac384a6cc25c2dde
MD5 80e4fc742a2fb70a95a9170605ce5671
BLAKE2b-256 7b647ef7cafa2147519e5428c04990168a8c2e3995039d811f3fe40ec900a711

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71f87c6a2651e533788650fd28ca0c1666785017603467c9b33aefaa80aaf83f
MD5 6dcddcdb859e11e966c2d8709aae9b0d
BLAKE2b-256 d1fb9a39168900af03f61730b297a52ddb23234cd15535344834e57514826457

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a88cccc3e5f8f74a425895f38dcb6927a81f39335227c03ec73b1d75dde7f19
MD5 fe4981a44b3dbf2e573b98ccbc369ca5
BLAKE2b-256 7467895ac11c57a0e06e9a665cf379b0f6df01356ee95d46be3ef610cdfb62e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3062eed9a7847f09323a1b83580508f3ad220988b14931b06a09912c89878277
MD5 21b59fdadc6c5619a9343924579e956b
BLAKE2b-256 2f42a2d8a77fe0a970723ac5851e1d8c7e5b80c6dccc44b1106df23e36756ba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edd054b7171bd92e4707d27642c42f1aad3aa5d7909c36be0ffba976e7dd6edd
MD5 50971e03c52610bd981096ce60a60ec8
BLAKE2b-256 a1e007ab2e6ebe290dcf967203e7ff3de367f60c318033821045ae68c493e01d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 926.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c7b7db4362252eece278476920b1fa28b49cf259112e3980cf623f8eeb94d771
MD5 3747cadf2eab7a0084020606da07e144
BLAKE2b-256 0d06edb5c6354c1b1e09d472279d5e229a29b3ef96868dc118bf0f989d8cb609

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313t-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffa8a2e390224bcb305f4363a91cdec4fb54278313fc74d164b0f5525b420979
MD5 be5a35da85437eaad7a6a124b1c5054d
BLAKE2b-256 a8b73b61dc8b77de0d1a66f7330945808cd237710dd781ec1da8cbf9b3e67293

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c454c75cf2b5ac218754365c19d4f01e4c94ce43a757eb2d8dd7862a733f04d8
MD5 6e61ecf1e8c52c7496fb54029d3e9115
BLAKE2b-256 b65ae62460464aa2e5c59c898786eaac7801b352f3e27e6b61a063bfbdbc638b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6179f1350bd0d84fd15fe959ebe0bac220f5f97b1f64c110dbd30a16393b597c
MD5 5ab0b31a60ba0b0ecf3780625de5869c
BLAKE2b-256 6010385a0423fc0696bb375c8567626714ca9bd4f803195ed7eec0f67b6d03cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4718720a53328e694890245ba5b821740c727f9ef5800ea93cc36361cacf96a6
MD5 686b7b968b886313b544fbd77a7f536e
BLAKE2b-256 35ebc319403138bb48fc9173d04506dea710bbc9df493bb7857300575f6cdbaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7d256e8b87aec8ba0fd44673c99d2494b70274d9e14dff64a35545e1004472cb
MD5 220005afe3b57d2248d1a1831c9a48f9
BLAKE2b-256 45e9322fd6cf9acad3146e401f7f44ce70dd373387022c2d0b6b1a37fa12f5f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313t-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d24f1eb7b718d4d9e2c94e44f3cfc95c14ab3a63bc1ae5a5e442ad650914a06
MD5 3fc4fe8e44e60136f0ddf818c023abf2
BLAKE2b-256 2b00345564e6a836df96680a86510584347e8b471a2c3c6fb8c68aa9f9f71fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 926.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6b9cebde5afa3e3f37295ec16245dedc9be8d279fceb33bf6cd03cb5b7a5a5af
MD5 df4eb39d4763c6e12a9c49dbae9fb886
BLAKE2b-256 2eec2918973ee1c136f77201d0e2c6fdf6157149dfa35b32fd47f5b3baa6febc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e31ed5f74e0e25297051b76898c437d37b92e125579bb080050f825878058a4
MD5 643077c2dac75fdf5d38be982862c477
BLAKE2b-256 f9379595c608a5f3becd58d31d76cfb808305a10a268c9475d73b5cfffcb402b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63d230e85720e7571c204581b99df334adc5cfdf5971821576f0a51b1f349d1e
MD5 68acd1bb12c0088602e00a9e19a20605
BLAKE2b-256 06cacf4d192ad9cb5d4c51ee21ae0ebc55d6b4b18f24229acc6e0b97e600fb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 897c1842c436a7006196b0aff943c00dff6a5c8308f5bb10ac61cfe348bc03b3
MD5 0d981286086d76522818d8cf31529a82
BLAKE2b-256 809dc43bbfff721866f7ad278ed708c7ace8a2e91c60b2baec5ea21549a1d774

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3638f5697e1d93e2502f6d60a0e5ab15278f104205ac1cf52b242ecae6da4c5c
MD5 b20a2dc95f33eb79cb1dc4370e8401b3
BLAKE2b-256 271ebcbbab141368e637d206f6f0ad742a783bdd67c5f7298e6c03a1c3e9e03e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2a1a6da47ab3c7972766de66aeb1a0ad316a3b9657f788acfa7c4bb8dd9374c3
MD5 eeab9256f0d7eba58286c9958bff9b69
BLAKE2b-256 b4bbcd73e78a0c6a6e21d508e5bfa300c9ef89952a47a53b20112f280e75970e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7d1fd37952e01361882ab9b515cf163771a375552c4095ae4c084fa83fc6bb5
MD5 1d283214b6a2b2262d3c0c3ae18a9371
BLAKE2b-256 1cd5b2386c9d1d8edae8ef9dbf086b9f817d154c463f27cd61e7dcf4fd46d87a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 927.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 caefe18073c1ca510f867a5e3984078045f90f74b272191e3a601f2074ac60bb
MD5 1aaef01143b840ce6ffd877de645a52b
BLAKE2b-256 7cbeb9245e37d873c50a446b169ec8920031cd2807ec932b09fd8f457c63352d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07721efb117f9a27f2074f745c952bc472eeffedd426a69c5fb6db3575849cc4
MD5 604aea31ab4ad90e5b61833daa18fa65
BLAKE2b-256 4f0e131f08f155d3b744f73e6633fb4918fab757c0c0dfe62de666174c221739

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6110d849348092b4e566495d4a914781c0fb631091b01e8d8634fd53947c6cb9
MD5 edded878aecdbbcae5708e101f37c5ab
BLAKE2b-256 64aa90558b360f99a4aed8d0fc14d1af4ea22c9fdfd14bbb7b136aa11bf08283

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b004f8fc072979934ebce4eb16107f779c010f72be0800422019b1d62e11bbd
MD5 791d7e7d5a1c91ff63c1e1cd43350b92
BLAKE2b-256 4f3c6939457bcad9470e2c850b1d5606e311c1605cde9fa74193b9ffeb8c8c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a85e790b23e200884d4290ab7b4e3565a57615d687fb9c222e3077263ac84a31
MD5 7a95239c9e8e7656e105b8b2cd4051fe
BLAKE2b-256 1eb0e4f5a909312102d95bbdede3f7444e02c5e3ad5f8398c0e1f9fdf8889753

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6fd7ca8fec43156a0c8c338acd9848c7681dd6e9f6ff06e2f0c9daf298582e8b
MD5 3da2153a1b9b30b7a5a7640d3664ff85
BLAKE2b-256 915677487dbd191238ec2b6570a6a7d3c62fafca0f98bc8a7eae71f67442d577

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c371540f479402f25d2bdeff426851c181a64597b85d36b51904b0783c32473b
MD5 09b460f36b4f8de83e5c59f660fb0842
BLAKE2b-256 8c39a1ad1490005c7674a2a81f22412ab4c9f380d239021ec16317c0b698b32b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 926.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a31ce346a383077dff7584532ed2cd3d1be036ed1002046b8b17ace2c50dc885
MD5 c84349d18a09848e4cfc6c92eb889376
BLAKE2b-256 9ba279c3ed02c337fd70482d9ca640729caa1e39e5041369d910488a643281c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bacd44170b128917bb3883084cd015c25e905826237aa33c079a5e71870e4c03
MD5 05db7448af926a026fad7c09ecd191b4
BLAKE2b-256 c1e9ddac7e4e5e604106a31e5bb81534f54cf4367574199d376451dc949f0dc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2502f8f40182ce72a634a6d63c074fab1ad5f596b10e31f2f103aa8873595146
MD5 b6cb10d65cb6e5bb925d99dc1c017d17
BLAKE2b-256 d6edef1a5da4426f3fad0bb4558b9b82e7f01cd244959b7bc19c3aeeb9fd88a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7ba51fb94f5d629fce83f330c0fa19e7b42f0c618ceaddc3123df114f355282
MD5 76f1f8b44662a6b1ca18956d453df986
BLAKE2b-256 5e8f0de4c55564a85919636ad814d1acb569b65f1619503c8ba93960af091e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c225e9569ac05153d343481969274ce5b80b541153bc32429e4f23efc92707a
MD5 25e0a385b7c20c47a567c7c828044b97
BLAKE2b-256 390c975f2230a3d619c76c52494d1e1bfe1633bdad7e14c0c0df86c8e7f7e257

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0b494d8fec27204022ffe1890268ee691d2c7f48b30889e79630108674d9ca80
MD5 075e860f31f6d34c9488821e1fc30fbc
BLAKE2b-256 f4ccd2e4e1be244e72da0169d8a59587a7f8d09b474c5a2211c718b48830aa6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4492f0b8d3687e3ea9cd74becc9dcca24333e466b5c2b67646a52bb8b5463e8f
MD5 a46edb4905ec06113eccb33f2d588db1
BLAKE2b-256 68f9c30b4f671064bb46aa12668e205776ac72b8294180d6fe1ca942f3f5f80b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 926.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05dcbd59e4665ad6716f5314a2c7993b37d52d8ff348ad00ad90a987b467d155
MD5 561b5d6ae03d63040365c24b27044964
BLAKE2b-256 7b710a3f7c80d9a39af596cae575569a773900ff93c43fd02e3a502b9ccbabb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21ce051d3c89278632a86c344a9b6992de4c5c1ec98f9de9f5e153c0bb70dbf3
MD5 ff1ba3b7f846d45dda7fdba59e2135a1
BLAKE2b-256 5ddf0e8ee1dd28eea88a711cd5603c12a66ccfb7b7f1bde44f587f74f66116aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e72ca0575742135c2e5622b084d96768f29d4bf3a68d71570bae5337ecb29ecf
MD5 283bed4c0873c10604b72d1845e3237e
BLAKE2b-256 9f8bb150be37bd8ec453cd619bd922df3581f6be1353aff305098f51c663652b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43553d9b3d3d0ea0a4f0958ca46627add49b6fde39f968a90d14c1f9ab1d804e
MD5 cd00649e1219035015b548a349535bc7
BLAKE2b-256 e36fd8b56db1bf98e1bb90147bfe1f1a17b1e95a47d8264960d7209eba3926a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b48904e214038e688bb4a6fde208f9b5f8d7fd27c6bd617c4d3bb18bc0be9a6c
MD5 3a145ef6dd450dc2cb9620ff9d13c752
BLAKE2b-256 0d4e569b2f70412ac81adc14c969fc9b1850ecc562491f13e9ab232eef99d811

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 17978f0c6aaeeca63cb4792df76ceb7de582f7467df44c5751a41d7f245b3c6a
MD5 59b2b0d1efb8a7700e8f3c90b35d677f
BLAKE2b-256 90539c4f7b3633d2a7ca7692dfc2f0c38afb58212cf5e3d9961f059746398097

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5eee80795ca9def83b5ef80e7b0d07c1af933a41b61000d2448f39df4ee4014
MD5 e29aee75e3bc269d51d25b7874be30d3
BLAKE2b-256 7bb5908b42e79db6100c4da3978417e6ab1f577cfedad1abb1d7c81facd0c47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 926.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 84fd16d397a66d66715a2fcabc4442d1447a1370f991e445e3cf71a68a87f78b
MD5 4c3b291f16feff4b1ae20eec34847f6a
BLAKE2b-256 d83c437f67ed58ee53f53da130726f4f97853b2c9f8be2ce561c3e9bf2fdc1e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-cp39-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 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.9

File hashes

Hashes for rnzb-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b37df9348ef403f11b2dc2ba9ee41ee8a493710d1f9da3d36f5557ccc4abe2bb
MD5 8da81cc841a5fa26df73abc007fd8080
BLAKE2b-256 9e526c61b7ce88e4490a534d0cea7c3e22d69cba2c9b0f82fcc6dc1b3fdde74f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19ce63844b2accc87bd3851a84e17f35d70b38f8560260870f59419852b81e77
MD5 4ffa3f54bc0acf6afb2f5ec94f18c7a5
BLAKE2b-256 9938e4adc6578b444aaa86576f8208ecfa049682a3b710097abcf4a33a041894

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.1-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.9

File hashes

Hashes for rnzb-0.5.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b6e70daa2af08fd51b2e7af6d9f5f627e224bcc4b7b56ae6beaeeba524b599c
MD5 4d262c8f0b9e743715941f3108d40a62
BLAKE2b-256 093131fe3145e9337ca1d95ffe4e27835b54c4211d145195114ce0ae44b9dec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32a693c644f835ab3b7873256f4c450df7c992d94c12d84398904c4428c73e6a
MD5 17d6bc21d6e8869ffffa4cfb1900f21f
BLAKE2b-256 9d4633b6dd0ca5f128129c0fc8130146d55a8ac8233fd31af6c8984ce69124a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-cp39-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6046612f435c31b2a3c5c75992dc9cbb2074160c23b6d00b8cefd69b77a0c217
MD5 7655a736cf464ebe5733e9f56af9c4dd
BLAKE2b-256 52ba9719f580a6b650e350e8252eb84aa5300ccf9d1c57aecbe2860c765e9347

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 945.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bdba256b9810cac1a1003561991fa21fc6ed3d373ad36d78d6e10f63dbfe6d9
MD5 daa7eb95c209e072aecce588e38af76e
BLAKE2b-256 a99cfa0b7c4715fbaf8c57df32ce00bc024d6f5c9f401abd1999355dcafc77aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 934.2 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 9e522a6abfe1127d90518b94f73cca2f674a722ba0b9fe14d5a6c181ff2509b1
MD5 d0aad1282b755c40560e5b40b95d93dc
BLAKE2b-256 a2c8f91485e58da59ea8c848f4e52b825f40777fdd4d6071b0d12a2f2f306d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-abi3-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 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.9

File hashes

Hashes for rnzb-0.5.1-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdd9e19e66bd0018d8536b4e6784b04364b800968713a87fc983295590bb2f17
MD5 89d050d62a5e3792c68dda1dfbab00bf
BLAKE2b-256 6a19bffc8285f651345d64a6f6352954bb2262cfd0f307fe74ca8eaa644baee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-abi3-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2869ba9309d618876493d39cdae30b12061980dcf82c22b5396fd3408c512fc
MD5 6de29a58a743b5c8c21e4cf0c3e9ffb7
BLAKE2b-256 2431a98dbaa5e960f1e510da7a492c709c98e9e6cbc4ac6ac6be597129b7dd82

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-abi3-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-abi3-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-abi3-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.9

File hashes

Hashes for rnzb-0.5.1-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d221b220e8178c2d9e61af341a380f01660f5243a63b99bd89f90bdedd2a8e38
MD5 0f6abda11328ef7f82c0212d134ea0fb
BLAKE2b-256 fd8161a1d1ae88260dcccd6893b325c60525ddfcbf67b5a51bd75620993b2ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-abi3-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.1-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 036ecd7db4b5340e3cd51bed5cd43202f506929f65a0e402b4781952668eb8bc
MD5 afae35a54b58036e1265683328828740
BLAKE2b-256 1b9fdbc9f12a2e944a3e7de5cdcbd3003c9712927a3e16869c6fcd1fbc69952f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-abi3-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-abi3-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-abi3-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9+, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp39-abi3-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f176c1f0ef2c7456fd10317aae0ffea1de53dddd2f4cbd57a433b6bcd7935993
MD5 fe8b197ef8a60afe61cefbfcb0e3a5de
BLAKE2b-256 1100c91e32710a685d83ef30f70e76819ddf91f03d889aca8a2634de7dc74ad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-abi3-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.5.1-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rnzb-0.5.1-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 949.7 kB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.5.1-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 811d2d54d3517ea5928b91dcf97ab01da99d116aba8b4c4745270ac33c43e73b
MD5 39d6480faf87dfb26efcda3b3b3a6e6e
BLAKE2b-256 e24fe95a270bf1affacffb11dae6f0908d88684af0f9697a7584a9c267bfae78

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.1-cp39-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

Supported by

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