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.3.tar.gz (51.1 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.3-pp311-pypy311_pp73-win_amd64.whl (924.7 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.5.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (945.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.5.3-pp310-pypy310_pp73-win_amd64.whl (924.7 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.5.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (945.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.5.3-cp313-cp313t-win_amd64.whl (924.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

rnzb-0.5.3-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.3-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rnzb-0.5.3-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.3-cp313-cp313t-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ x86-64

rnzb-0.5.3-cp313-cp313t-macosx_11_0_arm64.whl (939.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rnzb-0.5.3-cp313-cp313-win_amd64.whl (924.8 kB view details)

Uploaded CPython 3.13Windows x86-64

rnzb-0.5.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rnzb-0.5.3-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.3-cp313-cp313-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

rnzb-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (941.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rnzb-0.5.3-cp312-cp312-win_amd64.whl (925.3 kB view details)

Uploaded CPython 3.12Windows x86-64

rnzb-0.5.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rnzb-0.5.3-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.3-cp312-cp312-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

rnzb-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (941.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rnzb-0.5.3-cp311-cp311-win_amd64.whl (925.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rnzb-0.5.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rnzb-0.5.3-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.3-cp311-cp311-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

rnzb-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (945.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rnzb-0.5.3-cp310-cp310-win_amd64.whl (924.9 kB view details)

Uploaded CPython 3.10Windows x86-64

rnzb-0.5.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rnzb-0.5.3-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.3-cp310-cp310-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

rnzb-0.5.3-cp310-cp310-macosx_11_0_arm64.whl (945.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rnzb-0.5.3-cp39-cp39-win_amd64.whl (925.1 kB view details)

Uploaded CPython 3.9Windows x86-64

rnzb-0.5.3-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.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rnzb-0.5.3-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.3-cp39-cp39-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ x86-64

rnzb-0.5.3-cp39-cp39-macosx_11_0_arm64.whl (946.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rnzb-0.5.3-cp39-abi3-win_amd64.whl (932.2 kB view details)

Uploaded CPython 3.9+Windows x86-64

rnzb-0.5.3-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.3-cp39-abi3-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

rnzb-0.5.3-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.3-cp39-abi3-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

rnzb-0.5.3-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.3-cp39-abi3-macosx_11_0_arm64.whl (950.2 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: rnzb-0.5.3.tar.gz
  • Upload date:
  • Size: 51.1 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.3.tar.gz
Algorithm Hash digest
SHA256 9961b392f4d7b82b5f5744e1d77afa20b10edd3c049cf9b7d09c61643824a441
MD5 cde3b2c5a3cfd168f21380611dd67d2a
BLAKE2b-256 c9ce751a20186157487d12da92c5c18ba7f25567dc1c729921e21b31865a9161

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3.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.3-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3dcfd9872cbc484057f07fcbfc6a39289ffdca9561844ed24feecdcc9f53feae
MD5 02c3256c71cafb63a4c651b8256190f6
BLAKE2b-256 c6b17ffa707236ada6f67ac9d3c50af6ee2e7be9c3fd566389a712ad8dfa1811

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae9da88d52a2181f42683a4d6a9e4657db76c213938b49bcbdf78426214bbc53
MD5 45773d6045605c2dac1684df3fef16ed
BLAKE2b-256 dd8ff2bc8f0ae2031e40b1355b0e75a869b8dc3a5dd76c573c6934263210e7fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61646102ef2feb395abe4cd47437a62408103f1257e2f9c9447ad1f335af54c8
MD5 d9b16dc1bdda8057d4578ea66ccae299
BLAKE2b-256 a565e562b51af9908f7a6f8584268cc3505355f9f9fbc1962a1c50b558050465

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0e13ca683de5bd56852fc8bd118c8571b01e98bd28d40b5fae1e876e9b49394f
MD5 f356f021953c4ca201f35ec714a27926
BLAKE2b-256 d5f139f212943afeecf4a2f2b0245447c915ce08a8aa62fe93c2b0a3fa0bda12

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48b907dee7f0c175844ec84ddde33ec9382cada2d2019aa47cae5109eedf436f
MD5 c85a8897341199868e6f9d0008a7f05d
BLAKE2b-256 127e6712d54d22dc7e5fda3d612d75b167df2787a1127f4a3f5b7b6d17cef3f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d309e496d1b3227f0c85dba4fcff890525831b0999f87ef86eb097dba5e58981
MD5 0ea6c5e0422227c678e512c3a437b0e6
BLAKE2b-256 fbbe35622832a50ac0ae197034ab24874216ce4f52f0368bd2752beee0f07fa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc54eb66c5ef29954866ac8adc4feb99e70d8107bf74db1970442891b729f977
MD5 65bb2791206eb653766bd444bf71517e
BLAKE2b-256 84f845688b448ed1fd42598c3ecb52e1a74db8b62dc674a39f5669ef7afa8313

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37e9b6db1059e0935327373ea661438d0271566c4bda4916bfe95533adb4aec3
MD5 208263ba08f3693e915044d1ff9a6b89
BLAKE2b-256 4faa76dfe104028f243cfe03406bb954961dfadc78c2e5eb14a7e43ec8be9774

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp310-pypy310_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 198a229685c1b7654ba9f35f3c4e09568a22cf860ddc5a68b92db5c7a3dd4e6c
MD5 f51c68c2b9a9d24ebee8d1e6e0d2e645
BLAKE2b-256 50bde20c58271f98850a9fccf148f0eee138a71e025ed2bc189e672d9adc3e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3026e8db9be02b7648f28f4a609692a1b23ffee8c7bf56070d3eb9388df24463
MD5 7892bf6247fbd45675c46ad3c8b9a184
BLAKE2b-256 3f8cd9ccd801fceed123f63909a13ce344889097df4a97027500c0891f69f300

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 924.3 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.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ed0177044027841abb03260f6f3f4177b4b3486217a18cc8294055838130d42f
MD5 dcea7278e5bdf2500cd6573845ee1307
BLAKE2b-256 539e6c8ed6a5a2bdbe4d825c725a49105d76425dedbcf331ed4d210d003b06de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0578ce9aa4e1e89d68e5ca6f3a46761878b6c1ba6bc25a6601c6ca5b7a344cc
MD5 625357834ce44ea1c1fb62c8593c91e6
BLAKE2b-256 04ca05336a41ef668f368c4d44d8fa234607921ae77717459c67ba3a99613d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2154f99fc360d5fd6588cac8d225b5c1ef3ecdcc4b95a0371062c501649b6ef0
MD5 545d46d224d4de35d6d8c1e19141816e
BLAKE2b-256 3d0781a698fc62b8e947edb51e2a4a6ed3dc63d04614e97f9850c5a05a0368da

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cedaeee1b827753349fe42cc584f604fcb085f6db381310cfc856d8118cbff99
MD5 6092bd5d20ac11b00097e23f241b82f8
BLAKE2b-256 8e348fb0f43cf0405b2e16136886dc81be50154bbd63eeffe69db0b641cc82f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f4e2f4295b955a98819a0d93634bf3b22e73351be0998d5402b87a2e2cf9c7d
MD5 b644d54736b2914c35ada604c1249270
BLAKE2b-256 1f1af1bfddd7cf2ff884cb60080e6a32601531401a60a72920c4fe6d6fc97d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5a639d63dc5462ce598176e39063c73d13742ba5567a04bdf9ecdcde96a4f03b
MD5 17bf2c69ae9912ff126066b929739f03
BLAKE2b-256 fc145b960a68dfbb7054a79cb9f3a7e0550edb9c258971ba45ab9bffab69fd41

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0ca9aac5f3af9f281a9ccbac57308fdac984c055852e9c71ccc8da2630ccda9
MD5 2c6d7d2e43a1b6a1d6a6bff5a8fa4328
BLAKE2b-256 732e9553d6b8bfd464e72c4fb1592c4daf15f53afb08c8937b248a6a077351a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 924.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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a373d94ec45c878e45ba494d8bf54907307268400bae47b491746c3e149d07d4
MD5 42550dbbe599cd41e9e08f4ce658ef2f
BLAKE2b-256 4710dcabbc8be8679e6517a1218367d32c484f9bd7d381179c1d3925bdb7bb9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a93380627ae307d4af78ff048e221c8e928f1db4b3db3abe1581a204b785950
MD5 dfdf3ff1f8dbad71c1e280b1bf6aec82
BLAKE2b-256 6a0a66b74db338e267d23f4ff304735813db97c708388314e1e56bf151c68783

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eaeef918f6345a0e91f00116f2835d3d38b9fa325d2c1328466bc725dedfbc14
MD5 906223baa57d9ded906f79288cd0d985
BLAKE2b-256 25de63917724b1336385ed216f45fa94d28871874c3981adf347ddc9bdf0f0dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 857fb15e16745f420fc4b5ed4aa20403b5c339f2fe2f68af7fd6d0960edc8051
MD5 22029bb76eb7e446e3a3d1752faf2ca9
BLAKE2b-256 9bb05099f10b203d33b58bb66d4cb9ed452007679e4937219eccaae9c8cff62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95bc219048a44b81a5e71b0aa7154102bc4566ad94c210af08eb7eec8f25f854
MD5 c6a0fa7f1981aa62006f73666ef45587
BLAKE2b-256 8c2617d57e42a23e4fc9611c4ac20e017804402bedb7a4e750e904205fce72ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ab7cd694d1730a1c034aaa68398e9ba8541b8654e63d3a545416ba5ffbc6f967
MD5 eadcdb3362db7493cb5fba427fab38c0
BLAKE2b-256 3f313ecbc91f99c0275a5d4112981c3c96b4ec1ad013d0c503f79eeb2bf31bbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c1c03ade614c0083667d9c97e24d2738b757b907cffc4a041d7eb49353186ff
MD5 7330d23eb9d9b722bff4cd07389377a6
BLAKE2b-256 b2cd7bcc792b52f207571768b08c40598ff31d16d0c442b7e28db877b1daae95

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 925.3 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f6ec600e860a74a59cb897274c7cc06105a4e968697ef723d94352a18f6ed04
MD5 8636d7ef3046a40e9f31351aaaca461a
BLAKE2b-256 3d036e70100427b18b242d425d4855f0f8d1a2ae940c3d67aabdbf58d7baddd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44cc1a847ed4a3e89ce6a1794092d87b89d15682b55026517fe9614beaa3226e
MD5 7a3cc6923090f695a5f924b4332d41c5
BLAKE2b-256 edb188cc6fedb0e7d6e42569dde377eee5baeb191661c4809e477ce75f084aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 643dde73c887cca286132bae158ab0620b08f8c8acae9c85ad06c1249c55ee65
MD5 7caaa871ec67951578926474d772f424
BLAKE2b-256 6f5827062e9300c2bfeae1c0af86381605d9bbf36babbda12ba0230210209b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e3095356a12af291108a8a3df72f2604f000e5f817a605ed5f74abaf28de5fd
MD5 d5ba2827451775be39d079d3a9f1189c
BLAKE2b-256 506d897dd1fc131cd319e5c53bff477061efa48b51690a75e53d97e2679a52ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e9b11ed03c288dfd78d13c79c5734848b2b395060252515e4f9b6226f78a647
MD5 4a677be8adc306624b4a328f680804f3
BLAKE2b-256 eab21e057f9a029d5cf7086b6928235770aa3b95e2bec039d204c9118833a3e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 905c3b87c48efd72f1dbc3f0496f0a202b2e344743bbd0cb199196051fd1db5e
MD5 4297cbdfa3f5218d4e26bfebdce51895
BLAKE2b-256 a49216896918a72972f5ca3b7963a3506e107f1a5b95a8cf967dd58038878996

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33d7516b5f1cb420514246faad2ef7082d1c34c35a7e9b59779b9dc45ff20232
MD5 416fd0be5015abd372bba53a5301b12a
BLAKE2b-256 6d2c07c8dbbd212ada18867144b1997633e8473bcff26e34f715ace55a890a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 925.1 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1bff48eab0075f8f1c3363735b27b27fd2134fd19989259c37a526ac49160fa3
MD5 33c2d0f03449ad025fef6cfeb2ff0478
BLAKE2b-256 ee7be67404985572250603c8b3bf2c2cd444a1cbdf6d7009a57ffc15ebb672b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 624d43337a13d22ee616b9230954413840e55c2229d1d8443cb13e90e1e9b88c
MD5 b89ccbdc61527cefae0c1ae92e2c3e9a
BLAKE2b-256 bcc1b39c03542347b8b1f46eea1792e45a3536a9b37a293e5b967df0827963ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6321fd96b705a4417af11b659c79aa779822555473d44b480cc1c28884848fe
MD5 c16f2cf475aaac4cf29e5de4d6a0923f
BLAKE2b-256 dcaee503ab8d02c298600597e14efd7a41146fedeedfa8b8f2b060fa9ff511dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8662041fb888e9f3ee99529b82012dffd2d578b81dc1835e0cffd6663e928a91
MD5 70c6c35197feb1c6742460ff94833e4a
BLAKE2b-256 8c998cf9927955cce87fa4718797fad16d8cded09149ef9de8825283a0c8cb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d15d69719dc8ad571fa6af2d9917ddc5b6c4a1793657666a4b743b95b22e0af
MD5 96b8c615a1ad4b8e323f4046eefa20d4
BLAKE2b-256 543af8847f291dd9a90168670bf5bf21db4eeba900549ebafdd33327b016e6b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b0a9a4401c0fa57f60f6aef9f7ec9cb353e71d4ace11953049db4f1b7c1d3aa5
MD5 bba1f95cf346980b880010d413e1af7f
BLAKE2b-256 b302fb9afa3ec13904ec83b95d1a0fae2906698189fd128936a2f832a4bbea11

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f996e30fb56b7a8e4e5abfa8d9b0d254575605b66fa84475258ec37e2652cb2
MD5 867798cd26385033be53b32da0ab78b4
BLAKE2b-256 0fddee812c79d3e078263679cd4e72a09754950d87331f51f90c5917c7fb6972

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 924.9 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0875e9a28890283f191e9aa73fb5f83af6f30435f4be922b27f921822d96e377
MD5 31703ab5fe914d095763a0bc0b2e3e1f
BLAKE2b-256 a230ab435581029fcf415de8d4a6ced3b8a19e02221fbba1de450f7af900ce10

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f680e34691ac29bd8130160d6113c9a5e75b4c6128c375e6748f595de40c0b4
MD5 23a07a91a1ae4b9ea3b6e1aeb54b9adc
BLAKE2b-256 63db25b9699d32f74e84313985d6974bc39bda50670fa280ac207eae484f946d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83063874fbb7d6515d65ba071460cc924740f894028b22b11de9adfa3e8a594d
MD5 c59b819523d34e6d477814752e5f4766
BLAKE2b-256 b758741fbc60cc3a01fe6fc856bfad062377a0875a91166c78d2a39d09810eb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed792be01d70c1ce0db8cef8d8ae47b771b31dc2db8ce9c2b5c830a7f5ac994c
MD5 90e6adc6bbf567edb461c27b1581b53e
BLAKE2b-256 e4f8eb083491825c85ac9f4bd246d6adc9118f1367776bf9a41dac91b8a9553e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70a5ecdb1efc2a794aa140f7effac92baaadffc2a60ba7e5c4d8a27735fed9cb
MD5 dcc2ae07f0ec4af7b516a3b1f8d098f9
BLAKE2b-256 beb3947f39d60e8093fd2c1b2e1bf0b358a205a619b690ebc25da8dc14c1a212

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2d1f9d6e632a8c5511a240a5ff64fedbb1c1b49d682ae60e0867a3b84df07eba
MD5 13875645bb26c915591b448a499f7d4e
BLAKE2b-256 e0125a7f241d418c661f9ff246ff793d42b8b732c1e2260e84be87f74ce47fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ef04f2f7d99122c4948546dc4fa41eb1f758843ec528ea699d0ea55fbc52cf6
MD5 535440f89768e71a6497050b90186ac6
BLAKE2b-256 950425b905235f3cf500fe254f6ecef7df2fa4f21f28dd463378c662abdcfe4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 925.1 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c6960dff4ad687b7b6e2a111f7d8ad261443697f333fb5e45692fc1926a4f8c
MD5 c8fb72efbfcc30d677c10cec9e221824
BLAKE2b-256 bb3722e1e3529377ad0f05c347ba927f6b4eadfef8511e39ac9482e78d3b6484

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.3-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.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed4a3000cb5536d49797530db2a13b1cf21d9f30392602841cd3d6b61524d018
MD5 b0122b0d5a254acf896ac211a58c195d
BLAKE2b-256 1b8eb7da3dfdf4ba3c164cabd8aca5d82f00da34ce625db4e63ea7f889da751f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 178a6e8bc2884b58160123f471f882b5a05fd1beec8b0f51299a9a10a97c3060
MD5 6c2921e45a8f0fecfc58928a8f7d69a3
BLAKE2b-256 39c2877a07bbfd39ed688cd5df0acc2e20fe7fe146ed85ab9d48f6c370b50e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.3-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.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cfb70d480f34a262a9871266fc16ec2c4b13c56c9b95317e33ee7006d2f4e6a
MD5 64e4dae8510f9a634a102f88c0314591
BLAKE2b-256 99a67925ebe027f147d59c273522a89b282ebd81219a8a516099f482adb1a677

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a142c5d7d3efc56d76983465a83d4bc31d07ebb0634cd9685bdd43c5d2b3ee28
MD5 921e08e3a70e5708bf88f0c62fb0555e
BLAKE2b-256 946b68cee132f483898e0bc5d65123bfa2dd9a9e283407a08e2c69a20722f47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.3-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.3-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cb8a5bc98bc748e505a999f9e3113544f358954fc4c411e04520b44e72ad7a0b
MD5 81c2a3d84f57bb6052e8b58669ea1d65
BLAKE2b-256 71322c0dd3764e4024eab477e3137cc283f64ce905c069539c78a5999eff3a74

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 946.0 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.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dfded50d64aaa69d998852b8b40ce456985a37ee5e3178f9519420925ae8e5e
MD5 56cbdf67bb5cfb56d2a7e7def635e0ee
BLAKE2b-256 694c5add65583b1c2e313d04fc9e4aaf3182c1137c8fb922397329bbd33eb1a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 932.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.3-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0481fdf75d830a91013c0955ac8e88d03d3816576eb96936ef1f310e546953f3
MD5 13c57bd1337e15a3c232369df9730c8e
BLAKE2b-256 162f76f495b8bf7d334c0fad02c186665116e04406389968a3ea32fa3fee68c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.3-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.3-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7926cc64cb5257f4746427765799653f2e7a1597acc18281ca24a087a5a2de10
MD5 2e6eb977b3a011f578179b2d9c13b4db
BLAKE2b-256 f52f8aafa72bcbcd78a59bf25f3bd613d3b1668d5be95b5b299f481a06edbaa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d83caa07d490c5a48c8c489fe5f35d549150bf80fadf6d91ce09ee90fbfd6caf
MD5 819dc0916beb618b8cbe081ad6874060
BLAKE2b-256 25487853d87e54aea63057466dd452d280f1da27684c88448493d082f7c08ba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-abi3-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.3-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.3-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c41413f35cfa92f2b7e02170403fbb15a5eabd6eabca88f8e0b1f2b94f340b50
MD5 a4105aeeede2e180427d582ec7c2694a
BLAKE2b-256 989fb10c56326dcc7c0fa83d95d06c1c697a70cf38ecacd1ea97a82ff18b1db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.5.3-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fef4a62f6376b4fc2171da337fa191e0ae8fc4703656b6a0dc3ed82b7f76c01
MD5 3f8017839216774d6bf133ea006903ae
BLAKE2b-256 a4cf37e191428631f48ee8319ad414b0384b48d05f53b9b657ebaaf89b63ee05

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-abi3-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: rnzb-0.5.3-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.3-cp39-abi3-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e6d13ec33d12c810793ec9527d53a617e43928eef1db816eb51f1758bda56e0e
MD5 3fab7a38fcfd176cc04b27acd6bc573d
BLAKE2b-256 34d3e59711e1c2b958cf4681a3cd135ae72a90a523f38827016cb8ae528f900b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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.3-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rnzb-0.5.3-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 950.2 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.3-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6fcc28e8b22be6ad95f3d0661d215a7bfb1cc09359e592ebb248d6cfeb7f7ba
MD5 4df6ec069276758857dce37501c41514
BLAKE2b-256 8f8e06ebdd905a459199962dfb2896a1d4c0b7d41916fb21fdcc3a3fdc7f96ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.5.3-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