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 uses the same error type (rnzb.InvalidNzbError) as nzb 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

Although nzb is already quite fast due to its use of the C-based expat parser from Python's standard library, rnzb offers even better performance, being approximately 5 times faster than nzb.

$ hyperfine --warmup 1 "python test_nzb.py" "python test_rnzb.py"
Benchmark 1: python test_nzb.py
  Time (mean ± σ):      3.848 s ±  0.023 s    [User: 3.561 s, System: 0.248 s]
  Range (min … max):    3.816 s …  3.885 s    10 runs

Benchmark 2: python test_rnzb.py
  Time (mean ± σ):     756.4 ms ±   3.5 ms    [User: 595.3 ms, System: 149.7 ms]
  Range (min … max):   749.0 ms … 761.8 ms    10 runs

Summary
  python test_rnzb.py ran
    5.09 ± 0.04 times faster than python test_nzb.py

The above benchmark was performed by looping over 10 random NZB files I had lying around, with the following code:

$ cat test_nzb.py
from pathlib import Path
from nzb import Nzb

for p in Path.cwd().glob("*.nzb"):
    Nzb.from_file(p)

$ cat test_rnzb.py
from pathlib import Path
from rnzb import Nzb

for p in Path.cwd().glob("*.nzb"):
    Nzb.from_file(p)

This benchmark isn't super scientific, but it gives a pretty good idea of the performance difference.

Supported platforms

Refer to the following table for the platforms and Python versions for which rnzb publishes prebuilt wheels:

Platform CPython 3.9-3.13 CPython 3.13 (t) PyPy 3.9-3.10
🐧 Linux (x86_64, glibc>=2.28)
🐧 Linux (x86_64, musl>=1.2)
🐧 Linux (aarch64, glibc>=2.28)
🐧 Linux (aarch64, musl>=1.2)
🪟 Windows (x86_64)
🍏 macOS (x86_64)
🍏 macOS (arm64)

The library itself is not inherently tied to any specific platform or Python version. The available wheels are based on what can be (reasonably) built using GitHub Actions.

Building from source

Building from source requires the Rust toolchain and Python 3.9+.

  • With uv:

    git clone https://github.com/Ravencentric/rnzb
    cd rnzb
    uv build
    
  • With pypa/build:

    git clone https://github.com/Ravencentric/rnzb
    cd rnzb
    python -m build
    

License

Licensed under either of:

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.4.3.tar.gz (54.4 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.4.3-pp311-pypy311_pp73-win_amd64.whl (958.0 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rnzb-0.4.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rnzb-0.4.3-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (977.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.3-pp310-pypy310_pp73-win_amd64.whl (957.7 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rnzb-0.4.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rnzb-0.4.3-pp310-pypy310_pp73-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (978.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.3-pp39-pypy39_pp73-win_amd64.whl (957.7 kB view details)

Uploaded PyPyWindows x86-64

rnzb-0.4.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rnzb-0.4.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rnzb-0.4.3-pp39-pypy39_pp73-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (978.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.3-cp313-cp313t-win_amd64.whl (957.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rnzb-0.4.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.4.3-cp313-cp313t-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

rnzb-0.4.3-cp313-cp313t-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

rnzb-0.4.3-cp313-cp313t-macosx_11_0_arm64.whl (973.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rnzb-0.4.3-cp313-cp313-win_amd64.whl (959.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rnzb-0.4.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.4.3-cp313-cp313-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rnzb-0.4.3-cp313-cp313-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

rnzb-0.4.3-cp313-cp313-macosx_11_0_arm64.whl (974.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rnzb-0.4.3-cp312-cp312-win_amd64.whl (959.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rnzb-0.4.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.4.3-cp312-cp312-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rnzb-0.4.3-cp312-cp312-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

rnzb-0.4.3-cp312-cp312-macosx_11_0_arm64.whl (975.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rnzb-0.4.3-cp311-cp311-win_amd64.whl (957.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rnzb-0.4.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.4.3-cp311-cp311-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rnzb-0.4.3-cp311-cp311-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

rnzb-0.4.3-cp311-cp311-macosx_11_0_arm64.whl (977.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rnzb-0.4.3-cp310-cp310-win_amd64.whl (957.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rnzb-0.4.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.4.3-cp310-cp310-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rnzb-0.4.3-cp310-cp310-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

rnzb-0.4.3-cp310-cp310-macosx_11_0_arm64.whl (977.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rnzb-0.4.3-cp39-cp39-win_amd64.whl (958.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rnzb-0.4.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.4.3-cp39-cp39-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rnzb-0.4.3-cp39-cp39-macosx_11_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

rnzb-0.4.3-cp39-cp39-macosx_11_0_arm64.whl (978.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.3.tar.gz
Algorithm Hash digest
SHA256 51d7f957e736cf7f1cfff25fbe02a9db1bac2a97440b0c6b0e3b48d9631905e8
MD5 da78b5fd3a541838af2f888fc0086589
BLAKE2b-256 e3b11e146a9f5d22811d6db7fe7087c7ccde17cd0ce9e7b0b4a64c20044be32c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9d97dfa713b7685584ee08357a7d1a6265685558a4f53e5d5b75a6cb8449e3c1
MD5 560d473148fc311b1b1cfa1a98e4d85b
BLAKE2b-256 526d80b89aa9ddda3aaed87ce27d58c0e686270b3cde9979912df4b8c1bcc254

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 266af719348c06c4f541ccc4345aadf2d0fd4134fec3a88a229f08170357d10c
MD5 8c7354cab77fbd5ff583cd82e553c108
BLAKE2b-256 69d3764e0c5f1b19fd46178a920f64d822005af378ad2605e07ab0bf3fe0353e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0bc549007053bdb58051777d8b1e3044f7a1ebcacaa63ae5059e8020dd1e600
MD5 ab323d32a0164c9621e9558d726f3ee6
BLAKE2b-256 80b2316a371606c08f93ec219a964b9961a84eb2f8f68c5db6ee0cae8458657c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8ff6c9c110ff30bd0fb270fb6005beb2085618d829e6b4a335f97755723c7b99
MD5 48b8bb75ccbb3e0e31bb1bfb2345161d
BLAKE2b-256 7600fcb78e46f3c70f3bab9fec554377953977cf1ed54cadf65f091459a4acb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 905aa642bbc3738d6db6c413970d1dafa96783b3225c7ef50b0a1897cb2c9681
MD5 92b29a0ce78ca15a54f93cb09b818004
BLAKE2b-256 d78c57cf9f14e26db92c1fc768ad03521e4116cc71cd68c8f421a92e4e277f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 49ef5aef354b265fd5f7b4ab849c0e829fe070ad4a92afd1c7cea365f5ea98e9
MD5 ca419aa13450446ab22953499f6b99ac
BLAKE2b-256 b1a3642b49231ab1671c1369ec30ca9896cbf6b282eb866239978a0489bd7d64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7705d0640d81c97c0b3613e666202b1b348ef9fa32d8da4a561376566b719de
MD5 bee7f87d30ebecb03ddbd636608b38c8
BLAKE2b-256 c71a2ba9b0977154029c6c80871e16764a050a1c3dd1ac593c41420245bbadcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1842f3d36feb2a26b78e3cde9633e52777eafb758e0718d0207aab94b85c2789
MD5 dd33daaa0a48e6b55defbe39674ddc0f
BLAKE2b-256 a99d6ba989cca021eefd81a83fb4ed27dbd12e4e34f2bdcd624fc158496938a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 be794143aef700202be57b4e0ac45aded5813d5e48b1f687bd54bacc56dac31f
MD5 28d8a5bd6acd5518c159bc3ae8878d48
BLAKE2b-256 6534220f80d7846b01be27f3e09a5c7973dea9d0f4b9b573664041eeca2bea1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3eee4b3f5afb32061f31b119e8b5085b9a0ff6874be156b1b1b72a4194ea4d66
MD5 7e8cb64355ca09f003517ba933c7ad09
BLAKE2b-256 c2e5dff2051b84901a8641f384736f90260bd9c154cf714b333503c33ae9a402

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.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.4.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.4.3-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 957.7 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rnzb-0.4.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0355cde83e77e35475967a4fe2454c63ac88c8a840620da5b3ce391b0603ea09
MD5 ec03410c91eb65a6bd333abb317138e7
BLAKE2b-256 a36b1b4ad050231e4bd5b3810e1e96c0f5cb5aa17cb72b36f4ca75a4927d6888

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.3-pp39-pypy39_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.4.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.4.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c352826953ad90be32ddc4cc56692ad20ccfbb860a34d13b9f20bf95ba68847
MD5 5abec1a4b0bb32065d9c708a2704bd3f
BLAKE2b-256 3c12c3c997782a8bf223f9dc4d821677fb078bb029c46ce9441c3cec3a4c665a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.3-pp39-pypy39_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.4.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.4.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6beac0394d587cd79ac024adc2778748e3faa995112328d85628440b16a9a120
MD5 93bc43dd1fa3130408cccd712d46b084
BLAKE2b-256 928d7b8385445f4a0be15b847d79cd6b80168c03bde94b09819d7a3fd9ffe85f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.3-pp39-pypy39_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.4.3-pp39-pypy39_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.4.3-pp39-pypy39_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cef3765204bf6d4dc8916d23c161479eec41509d814cdbf2a3b224c5fcf03e19
MD5 5fd47bec28a15e20f542e5de1a553ec7
BLAKE2b-256 d938342b89f52be4fed0a64733b8bc6b867b060d76b2d95426b9010c95f11603

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.3-pp39-pypy39_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.4.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.4.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c6ac0d7905779be289e72a95152491ef71475ab14246eee00a678a110dc5839
MD5 70b31efd049325c91303a7af4a8d670a
BLAKE2b-256 57e050ebb4da336a2ab2ee1721feefa1646ad3ccfef9efccd2aec50082dfd389

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.3-pp39-pypy39_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.4.3-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: rnzb-0.4.3-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 957.9 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.4.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4c3f53d940a5c1f0df33c6fb30565f4849617f0981675f4da5b2ec8a4fe056e3
MD5 48952557877d429a545a7a7212605899
BLAKE2b-256 5139848d3fd87db8dd4b4e8eda8aa2279835872196930797007bb61b4f72631f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb7beb460cb8461a4ad88eda007bdd9568f951827a71b9f85b61e74f9a348705
MD5 f5cdef96b3daa84a377ab826b2760cbd
BLAKE2b-256 8b11c98bfa1001b386f6c8bb234ff622196cbb0e1e9f39e3174b599682fe3564

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74299ea1a9b6fe10f658ebfc69fd09ea6ab16528a5b51913fa70514f32c57032
MD5 733ed0ff38d9538f11007b83ed62b565
BLAKE2b-256 6887a1c533beea882147b29f4b31a1723eb27bb8c6d09b959fc786f8946442f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df7029de9275aa19dfeb347de170acb7176154b8900313d4754e00f35e7f17f2
MD5 6acd0d43d5b95b78bd119f47810e1acc
BLAKE2b-256 8c8027dec426dc6d4ec13f09a170975c4ce998c3038bb2da9f1858cf3c52b306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c79cdb96a922ad421dbb4c83852355322fb6c245b63450ba18c9ee3cd0e3136
MD5 4e9252d104899af8bfbcc7c7a9ab82c2
BLAKE2b-256 80e37a95544e8c8a686101aff40db88c300dbe60d83ff6c820a685a679695a9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 87b1d0b2cc986fac1f9041409ab24a82737cb20bc53e2a5d79d40d81ab94ed21
MD5 522658d236d413868a3676a99db4fa15
BLAKE2b-256 cbc8286f84a7638eb9813d9c33f19c09d7d9af59c126cd6718564319d75b1476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dd54b0078df0016fc4542ae99c777e4343e7f7aa52cb168bdb3574349410d05
MD5 da735d6cfd6d86f50f7e3302b5286a4e
BLAKE2b-256 5d525c48028db7b96ed28ab40290773daba3b9e3f149a1b1fbc1d0ec5bca3a54

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 959.1 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.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 22546ffc3111fc21dacfdccdf961a144770545a3bc7ed3331d389c4260cc2c76
MD5 6417d95109df3b5764b8423d89b50453
BLAKE2b-256 48383b7521908920f6c968805431dcb06855293deae0d1c500972f4501cae1e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 094a6dcbe373a605740d6ee442eee2bdcbfd6a41d2338439b45e65e1dd5ab056
MD5 4cc92eccd8025eec1ad3b92c612aebf4
BLAKE2b-256 17b14dcadbab069a45c023b4ca2f688dadd337e4f4417d26b5ec8812498b2285

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fded714ef9b0bdabb23fe366b811c3ec2ab0f02b00ba5fe4cc49bff0ed2d0aea
MD5 c1b087e13c6db912400d61be46b15753
BLAKE2b-256 a71e03261dc41d39efe45132d1bced68133e905f31e8009bf9c961cf2e95f80b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22777cc483b392c38516550fc735abcb9f5faf74fd607b10321c6006cfa88ef8
MD5 d8ec54c5c6493b14833fb1ad42594b60
BLAKE2b-256 00483bbb48e83701ccb90fd08717b737da65a87d09bac44acae24d56c8805fb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe3bd1736e340d50c5df7a032528687ff686507ee87c59aed9d83a659bcc79d8
MD5 51132f5256632b6575d0780d54f4a7f1
BLAKE2b-256 74bd7ae017b465ec5ef9971f552f91a641cbc328ade4aa5bd998587f66213113

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d92438d7e77f507b6bcff1640386e1899636c5a3695ae8c65fd7fcb545ff4850
MD5 46d09976fb7409aedea71b03e88aaa20
BLAKE2b-256 31275bc00cdfb3201b125ec81a8eef803c3d05abac08cc833dd415fbc2299600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 391704d934f662e16516338033201fd9ade766a19422891480e3d4fd611d8aa9
MD5 fbf8466b64b864c4f3747ff0cdaf4694
BLAKE2b-256 0ac47131928e4da83cfd7193e1b5d6f557e19704f02a362bbbf2b9d1d078619b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 959.6 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.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7f3d9f463b0f647ccdab3679197173077b4adf2db1329acfa7a2cd2d65dc7806
MD5 3ab518403d383f771d162e0f7e6765d2
BLAKE2b-256 f5488d9471506d97926657c3bda71b20cb438e568ddeeb688f2800cada682eeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca6c34bc2e8fe3e1e21ee454e5a100818d796f8fbdb8be5695b89199bc07fe13
MD5 668fd4ffad87d0ab796c0b7cee4a9c8c
BLAKE2b-256 958665059ba57a03bb8a721e298b84c8acc185177b6747cb2ffa1b409bf454e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68deb29fc75eb6ea3c38f7d50b6e252c423ff4edbc0c938b0d68c259ac8ad9a9
MD5 33f50b9c18c525369e17d78e3761ce6b
BLAKE2b-256 6cd06b741e4b9331efcbff4a687b28e3ed1ce714dd07e35a27fb8447159082e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3619f2efc4dd8f727f1e70a37e9ce8a456d750bd964c85bc1bb95c751ce17e98
MD5 e12d6a043be68e021b2af7a590543e64
BLAKE2b-256 c83b1f091a8936ff1edd53b7d0d8b946d431b0ff8a4e83986d2600cb9a3b7a65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c70bf277dc2ee650592457773ec84e90cffcd34246cecd57d3761bb968801cbe
MD5 205809e76bff97ff54fba4f811f30598
BLAKE2b-256 fe83d8d2465464c9cd6f15da1a7d25e6465aa07eb05caceb048f7bfac2a8f785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b2d60e3fb3132a3ec2435f85fa4233862c419620169160d12951f039d86e4f22
MD5 e0d48c80401f92646f53fba29f31bae3
BLAKE2b-256 21434c80d8e6172109df1d56b77b388c2f731c9b883d103ad8b0b6600f6cf373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58406c7f8c747f23ea64e82fe02ebe5bfca0f1b146034cf1375a06ec3ef99fac
MD5 95d66140f359fd0813b3369f97fe8d2d
BLAKE2b-256 c9bcfae3fa9214eae707c9d914f482f360e5145d8df6e9ea9ed97b4cb5a107b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 957.9 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.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d5b560057d2b5371682ab4281ac0da85e5c4e48648f4d7f39c97bea27a35e977
MD5 453a17d493773662d1a9def02803e7a9
BLAKE2b-256 ffcc42c128b2f3b591ec96dfd8527e5d1b51f85b04c60a9872fd51d20b98b8b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f6188ea3258ab3547ace3171ffd591467c64b04ff33cc28671d4cc8cf207ece
MD5 1200043953d25f74e31ee395ba6423e8
BLAKE2b-256 2d3887a998d807568935cf764c92082c1e485277cf4a72f6faf7c458c1390f02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecb0e06090217c838c22f8745bd4739c323cd2ba66e87582da715fcaf23fe6aa
MD5 fcc8a47c3c9d9b1f86845bb2f3fb404b
BLAKE2b-256 2202e27814e4802a7cbce3c82df3689dd7b2b68f632e9ff7a3fa97a2332bb254

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 871de86a50184f5e242bd4b116b5728010f47420416f8b0486342ef93d75f711
MD5 307b70a230eb5bfdb83e02a86af8d5ee
BLAKE2b-256 ecb90c5bf340b42f1ffcca1c209ae15874930b570746629267c06ba398aa0e30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42cecd1ecce55f0a219df711850e48702367b04508724d95d94a99dae9baf4d8
MD5 fd454992ead497f42aa1a7e242bfa10b
BLAKE2b-256 c58638602c49cda0f0fb7963967449800f6a4ecb734f8aa5c58a033b9a3c7aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 95099a6d34f8e2f253076737f9ef24e4b4ef3308f7f18df5f1024643e09126a1
MD5 68fc2b7b48d96aa6ff0577de5d6fa7cf
BLAKE2b-256 3017f3e9475fa6ca72391441c8775348c16a35b42783db19831e24651d4e5ad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21713c9a61462310cf69a22161e37d05273005a77d336747db504e383ae9c576
MD5 b11935e81ae67eeb19708ff48a8489f4
BLAKE2b-256 63d9f2c84467cd2bd7ad501cad291a0b755cc330b7815faa6a31700d5211c792

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 957.8 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.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a6ec893ebffa4bb0f614a12ee1398f7b441f8c230a50b91f3a4979729845916
MD5 717b816a9dbd8e6cb2a730f8272d6e0b
BLAKE2b-256 743a16fe5d53ad7a8bc55b1abdd125fbce81df6de45ecf5b3135da0aa4213d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c4012f9eb79e003c1ca08282fc17572bd910d83a283ce0fb466affb7e37ceac
MD5 d77f112429df67c5cc015fdff0526472
BLAKE2b-256 f55ff0cedf39b5762451de5bc9b5b2cde245f1c9c913fafc48e7213b065406e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27f88c6c9351dd75c5461abd5432d59a67b66385d03dea4c6faceace9abf0b4d
MD5 1f889380fee87ff2a2b89ebef102a7cf
BLAKE2b-256 376a7b965e3b46b8fb01ce8f889dd42b15be04247e42a2100711d3f736e75c85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b56e0f5a75871a3d2a90c2234c5917596bb08d02e2a720a0b9212f4073ab2c56
MD5 846cf575c8533a9b1038bb4d1e690808
BLAKE2b-256 3ed00045ea1d9bbf5a770459f5768fa75295803d1cc2c0b7f7151fa49d9f9684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a11fac8b99615fd45823b6f3112bad7e41ac027851e92045705cdbdc2043faa
MD5 6c1b376cc40f598bc3f206d138e94a3d
BLAKE2b-256 33bacc2d40720b90c9047c29304206c88399bd12138b3579b55946c6c9a51b50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 765203dbd1b1016deef4cad4594ff68423b3499b22983eabebd3c02fe30afba2
MD5 13751079ca6cb73f007c77926c5e090a
BLAKE2b-256 84c11ce92502eae495135958da3d54aea71206d72029ba6e8a9d4a1a9ca92dc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c021f0a7ee00a834b7dd9b927c8a93fc5c3c8717a857380861f8aa573d765136
MD5 5a0dbe4153bc78fccb66208742ae1754
BLAKE2b-256 1a991eb881ae4396c7a570fd49adfa79a1f44eefafd0c3177fd866dc00569b55

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 958.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.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 65e2c537b298767f7062e7291b1de78c468641f1be6bd85606b722214e9603d6
MD5 5fc4a4975916ef2b555a36a0a16a2172
BLAKE2b-256 3e7364a2a61e23d4ec91921e127ee6b8c17c872d570e8a3297f1c475dab61da7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.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.4.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60a313a526db1267cf6e0800d0eb72bae95b1f5dff5bcff10521a4781fc0b5b0
MD5 cffd3d5e6da6e01b2639a59aa05276da
BLAKE2b-256 cb5e5ceba1c01b681bf79561d8b02836317ab4706165186d3471c0225e612355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3290483f5f96a897efd7fb09a2491d7d19c6b281c38b9adc444404ebb39be4c
MD5 babbfe2adee00620c0aa1897e069e18a
BLAKE2b-256 beb0fd6e8334c7712482780071c1170a3dc6605f345580d75df7b04a629e6b8b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.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.4.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa2c9e406be88a1448cb09e24e7d5f6179e2dd4ea0e9ea55177c5ca573487206
MD5 5e6712e06ac7a1bdad45062e06752656
BLAKE2b-256 0e6da42f1a2ab41310e4cec591eb035129b162b8b9b746c347145f88321f33ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6aef15e889c55a0eb0ad6678f40bed858d27b109b16e2279572d85a2229facd4
MD5 a4f4f609ffe5aff34caec880d0348267
BLAKE2b-256 83e47993a517d1d6cb74f370e9c684231c715f16438e5d8efb1cf974dbe04e6c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.3-cp39-cp39-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 1.1 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.4.3-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cdb3a82ddbfddcada42b808206fd9f5474768d4ce8fc4918084c146a7f64d89a
MD5 e1f47832ef43b673b2b30a301f7ea50e
BLAKE2b-256 2ec1a06921a21d81d4689f211b788c96da495874b0c8272902c5fd3404ee5ba3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 978.6 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.4.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55addf60cc4ee2e855326fb2f27db36abfad8e28e99a0199309c3dd3585e949c
MD5 b9acce0094a2be87f91ead7ab1197159
BLAKE2b-256 067bc961aba8eacec465420420d0e1a053b9cf7ed706c2271be9905cee2a9782

See more details on using hashes here.

Provenance

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

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