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.2.tar.gz (54.5 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.2-pp311-pypy311_pp73-win_amd64.whl (954.5 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (974.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.2-pp310-pypy310_pp73-win_amd64.whl (954.7 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (974.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.2-pp39-pypy39_pp73-win_amd64.whl (954.7 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (975.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.2-cp313-cp313t-win_amd64.whl (954.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ x86-64

rnzb-0.4.2-cp313-cp313t-macosx_11_0_arm64.whl (971.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rnzb-0.4.2-cp313-cp313-win_amd64.whl (955.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

rnzb-0.4.2-cp313-cp313-macosx_11_0_arm64.whl (972.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rnzb-0.4.2-cp312-cp312-win_amd64.whl (955.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

rnzb-0.4.2-cp312-cp312-macosx_11_0_arm64.whl (972.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rnzb-0.4.2-cp311-cp311-win_amd64.whl (954.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

rnzb-0.4.2-cp311-cp311-macosx_11_0_arm64.whl (974.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rnzb-0.4.2-cp310-cp310-win_amd64.whl (954.5 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

rnzb-0.4.2-cp310-cp310-macosx_11_0_arm64.whl (974.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rnzb-0.4.2-cp39-cp39-win_amd64.whl (954.9 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ x86-64

rnzb-0.4.2-cp39-cp39-macosx_11_0_arm64.whl (975.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: rnzb-0.4.2.tar.gz
  • Upload date:
  • Size: 54.5 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.2.tar.gz
Algorithm Hash digest
SHA256 ad24fba67f5f4e22d2b8b689e76ec4933e6c33a7911eba1a50d6e715072d6405
MD5 a72fbeabd2ff875293561ffb06ab7a20
BLAKE2b-256 867510186dc36d198760da1b0b30d22ee3a7bd73068ba62abecc35a9a945814f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ec012b35ba558d44fe145ccccc3b42b652281e3c746427f45b352dba8ef73492
MD5 4d51c5dcb0287164857deedb58a13ef2
BLAKE2b-256 980f4b5f7c0df241659933333e6dac89725f86abec007ea818c4140cdff6b02f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0ef94d5c0b4806d1a294dac36f72a52a3eaf9513c8474e430faf2fcc4a1c2d9
MD5 c07cbb110418454c411627a08b7cbff2
BLAKE2b-256 797ff766e95187ca4cedd7f956e083adc24922e576dba0f15cd9e4f80b2c2c48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e5db99ee5fe6077f81b30b19c046cca61e6dc1f661e23ad75cce38145ca9269
MD5 30d95c6150d30db8184eaa71a54294dd
BLAKE2b-256 51df7214cda5cb861eab7af8211372109d1dc64bfa505b790e559e6329228482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 04161e6aaebac3df6b5743d29eb9b6b4fe5706e261f2da6de2cd79296fa8f0b8
MD5 0e9f4faf6e31d4fcf01212f588b0a3c4
BLAKE2b-256 9c8c41af36f37cc92a62c69ca4732a5ecf88b2d1f71cf8906a178dfc9e0c6780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6792bfe9289fc3f92546f7bb26da780f99461e5aabb01c5c91d5b9c34d46d484
MD5 866ea3e117d4678ef2ce4c81dde11d02
BLAKE2b-256 d9b1df89caf5733348e8d1396207ca80236ef87851a2669c4cb19db69b922546

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 10f1b624e49e8973e6765b98cc4560ff35d583ddbe14adc7af8211301e350596
MD5 e9f9c2105e7a16b43f7196565a98e016
BLAKE2b-256 2cdf12d05e4548fe3587c57fce294acdaf8ef90e29b565c14e7b7f0c640c6c51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b170fd25e6a252c853c258312a07aa674ba6208ceb8be4c4b4f13651097b900e
MD5 5815aaeba4d73a6fffb8f9cc07e04e96
BLAKE2b-256 b1089e5e80040d87b021e187a047e177794b136a39b72e259c603e08b3fc88b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2f8de461a3a29082f209d596f843ceb236fd9129882c1a48fc850dad280a2db
MD5 9e18119d59a88340e69a1d732d17f039
BLAKE2b-256 4cd3308e7bd65e10febcf5fa22082a635507506abbf774e1a394e1b14dd72a81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f316feb87ad9a486018522ab7c51b826de9033a08b579f14871409be3b2f93b0
MD5 361fbc18a61e86f7c4afc07ce6255e6f
BLAKE2b-256 2f2bdd6b933d32d8e4919268375d7f0830256add83283221e99b5d9d8d3c4a1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da53f7b3ef8985a03d6faef00a910fc5604171ba3d9554875d166cfc236f3861
MD5 5767c8164971c4f5669e23e9fe9422d8
BLAKE2b-256 a6e0be4c4cd1671690044032d0149901ddf99310e75846840cd19ee4ba1d80eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 93ce2cd8191f13126eb10e001337d52f9411f851968d3c90a6f0ebdb6c0fc46f
MD5 9932a710c6787a616df918d1a48d9f05
BLAKE2b-256 6137382d2236208eae0404e300bca764bab8f540ee291a7e2348fe2c319a2c0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8456601216f83e7b3afcee1169d0951d077a289a3d39bae925edb58c992f641e
MD5 eec86ffb77da2dcb5dcebba601ad6e76
BLAKE2b-256 9b0b0720981b2b6f428868eddc6b433ff0f775f51aab9449283ab99d0d080776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 502b86350f34bc350957e6f3c7736a35522c4ebd20c9c793ea0316931179fdcd
MD5 98230c12e6c420d3966ee2dd94ff53b7
BLAKE2b-256 ac389ae801a40e68a40e2f7a748009e1433286206c84d8c8f1d7f1d61318c5af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp39-pypy39_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 da2e0f1c7932aeb93f06a017ab4b38884ee303cb20d4b657d8dc29b2817033c2
MD5 179fc9bcf976a3f7467f0ad78f339392
BLAKE2b-256 c1e55e18e07d7f82aaea0c945db72d3e1436bc3ee1e83491b2f605a8277c14d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6c37d6d9c6d231ccc297b123ee1798787f634dc406ba8ac5fe8a32a9910d5be
MD5 ac8c730bdbdab3009017f7fd83c9e72a
BLAKE2b-256 0199ae5a9e4a1669d1d81ce756deff2d612ecc3e4997af9ad38a46d592bc671f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 954.6 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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 83498e8c409c2cf9f3d76949c1eec0f0ed5767b3e6db9f1b6eb23f5e470f1982
MD5 2037e0e0b2a6c7f810c3fc46af779b31
BLAKE2b-256 da4bad7d4b514554d000f2a1968bd6c931f2b6a638e0c68a13d24e3848c98575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c3ddb14306dba656ef20c385fcc24df891d32dfecb49782e96ef8c92edd962d
MD5 8ac7772d33cc3ec171991e8d5d010f52
BLAKE2b-256 24f7bc080abb69e211c53cf44d7535f3e0532230c72d85b67a9900d1cdc5ef83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 375b1794ee635218d96de8201ec0d30549433a29d5a5ff0ea066369e3be73c32
MD5 5759164407af357c7f3c7a234380c390
BLAKE2b-256 f5e35f157e8f77f221605e7241b5cc6fdc1ff22709b2a92062868cab4561ac44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76f88d4a95bd2b51f190b2a94b5a829293a2208045a03f10440a5171bf8afb9f
MD5 44cabdbbc402aa5e949081c09452b029
BLAKE2b-256 5004daca472f45e6262cd0883ccb04fc4302f638f920220c4c4ac374a476e5c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 429da8c60c8cc60c763bdd4f6ab730fbe7c44dd446d3716dbe64e1f79ee9ac06
MD5 15565e6d2f297df73e3c207f9d652c33
BLAKE2b-256 b327b87da694bf40af2936f11751454b3593fabc65d4fd5cf834e227f7d7ff92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9418a941d592739a918897f51b24ffd4967a0cf5e8a1bb1ac56a978a80a73552
MD5 5cc4e1275465109403cc545a3a45e877
BLAKE2b-256 d7ce2c77652dc774348cd3a2ad56cc6a5269f2063a389e12c4d54bd6e7a26cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03c91ba591ef4adc4503f7b14c7faf56c0f45482e2cec264b9572b0a12eec6f5
MD5 5fcf5eb713a66f2fac323e9ef451f550
BLAKE2b-256 d35012614cd9f82220838507dab72d533e21dcce22c700aea1912e7d05835126

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 955.3 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a132861024c6d5d17fa34676b952be58a65c391e480fe00143a3140fd628fd2
MD5 e6c2b29df3eeff8ae7a0a364c8ba7f29
BLAKE2b-256 49eb08222db1377d57bcc423b7318964702b83bb16b1ce4c7bc34f001a0b48ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b141830e2ba7822a7c87fd068a89666bee0780335bac2ed9fc1605bac22f112f
MD5 7c7456c1ed27fe0da95d52957cb55b4d
BLAKE2b-256 7efaa5264baac1abe9cdf52d9edab4a12c864fa67923601f6859ed34f2ba81cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe8dfc66faab7abab6e4e91dc6c59ca4ade90d8341a06c3055e3249ea529c7ba
MD5 e8418e79b67a1268c7680ef70a5d33e9
BLAKE2b-256 553c0dc6f92c3328a96e0642e536c9f2f0ecdfa764e95e49322c4825eed94bff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ba317471774edd56494de2bab1168549f31f871370139546b3685cfa780bc19
MD5 1f71b84cc9ad1d7dec7f36d3f2a39ff5
BLAKE2b-256 3dfaad95e3fda7c6007117fab5503fb4b3eaf71c96a49821f5a0ec6f5fbd0b95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fce5c954d093680da453d2b66d1c432ea4b61c197654b7d9fb9db92284329993
MD5 ca409f04dd9854fa6860d659d2216d72
BLAKE2b-256 53ea3cb356ecd9961a3c86728321cc1bf14204d8be687e678837a3f49806d956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 68bf8d1772560a5ee445b693e8de552181793b9966f3824f2ec3d391672c699a
MD5 c3b98c7a6f6211c709bdbd15b76f29c4
BLAKE2b-256 5596d6d90179fb06c1addeb6c0e8a07e2c6d321cc903a03d40fc2241c7858326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a86c4a7235dbc58393d85ec22e44c12aa64fab03a8d79421c941d5e7da264782
MD5 12aee9308c45a10e8ec4a17685b80f82
BLAKE2b-256 aaeb7d6a8c1ef1d53b4a6a868058c20c1b1973d9c5cfc23d264812f0fad93062

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 955.5 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4eec2a93bdd57aeadb2534bc402b4556714a09bac5960feafeb516a092df9da0
MD5 01748829d7bb5b2796068cd7df214de1
BLAKE2b-256 4c047680a721b1e4547f56b829feb78c2ce7258017eca6b130642348f916c07a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbb9aefdae75efe2a2599520ac30ec852ab207f4f66af2f06da5a65956afea2f
MD5 42b35fcde17e34d0c63795fbbbf528b3
BLAKE2b-256 4c61951766e5d5ecb21c2bce63a58841c500c850061cb142d0938015298ee5c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ea96a47f8915b23f913826ec4ede785b03205e0f1f3e9e2bdcf4449a1489385
MD5 5689c331ce0357a4f68acc39b4a66a33
BLAKE2b-256 9351a40534a069d7d7fe2ee0b9c710646570e04d60ba5ffee0d6fc0461189429

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89a6c69466622a965064834433a5120b4bff4d16126a1c260057bda6435f0892
MD5 b5582985241414e8fe2ab77b59259a64
BLAKE2b-256 de0ad80974f22d76a5ec5b13eb41ac2bb856c3b1fbe4f148af0c1b7d67ca1a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a505f49c5d364dd208ddd9d121e19e5b1d6d30ad028cf70528e459fc452cf12e
MD5 0a8f13d5f6c226dc02ac76a9430a012c
BLAKE2b-256 e982bfe4203a3c47b420374d2f747a790675ae55dd74e820204a13cf08937071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 27d0ccd922945ae8b4deb02fe0a64524a91fe227f612fcc3f8187164adae22de
MD5 1bbb6efa72dc56722c2c9aba6237f173
BLAKE2b-256 601580a1e18310ea7593033c318a91def67d380592902c940dccaf0125424056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7e4776e2508fc00e1e8d297495770c12ea87128041095dc77fe6b9776a6b18d
MD5 9c4fd4487deb9b3e4946f5f9e8e788bf
BLAKE2b-256 83fd2357b984524136d1b9b1b86d80ca5700d69c5c54a8f89c9d3b6ac29f8969

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 954.5 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0aff5e0ebf4f9ef613136b8a17ef6e46babd09ed02199fdd0b5ae7d1aa82b30e
MD5 d2c8ca392c04e1a5418202583211126c
BLAKE2b-256 71fbd3ce26380c6a0c17d8a425902d1273ac86ad1025973bfd962ef26f542af2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25c9e93cff7aff19e834b6147ade924be36a3068a5dccbd13c0d9ce64677845c
MD5 28b157da87c86c779f328a5d6300ed96
BLAKE2b-256 00dc09fed38957316d7394b9609872301881230ae495aac57c467c7b76e858c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b288a74fefaa6dae48ee0d55e3c226c7285ce227f012ffd5a36d93f332ba0cf5
MD5 a451529aaaf5655443ad06dfdd64f86c
BLAKE2b-256 edeeceb751b4b0103e6b8d03d65ae67fad7236779d049878f70b9f9cea667bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9749c77322e06c2250fe5d3125f39ffc582a2f659e9c63e1d35db75489a2523
MD5 53db80f57edce5c9c63bde25b65046ad
BLAKE2b-256 98d502225254cc230e1733a61d5f9377cf78e66299e6960679d7f4ae1246bbb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e546a8443da12a73a1ffc92c5c1905d6f5c0bc25b60242ff0115de7efbe72580
MD5 f6abdc983d6f4f507df5680db02bf036
BLAKE2b-256 a2cfeb0dd0c5a47cba6c2e68c92fac2c3f33abe88e5a694cf683ca100407c84f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6ce2deaa7946acfebbf7c4f1c9c56e17b29c0ea34ca4e30d9e0aec667ef358cd
MD5 6ffaf705d3fb86513c6717ea957f517d
BLAKE2b-256 408df6d98a9357b0714e3b11bde326db1aa6a1b5d5328537fcbdc560ba3d4cf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 710afe2c3058efd9e70588ae017890e192703b52fd9480649a49570b22ce9406
MD5 0c39bbed2d8c3cccb8e263cabcaf65fd
BLAKE2b-256 55c468c1a8085017b0ea3d2548cefdf4d198cc6b4efab6417d0406c0f0836482

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 954.5 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a75bdfbc289a83e632b39d0be4d534ba6e25057abc70e68064a82b9fb4f54f9a
MD5 60d6779bd12021d00adf6d495d2de5e3
BLAKE2b-256 5417ef1edd76bfb092660be1dc3788d2a1e56a746ee55a516db053cf2e237362

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9883bb0c5fe449426a8dc6dc40fff7f0261459fce2c020ed72af75c0c2956ae
MD5 2fa2eeb10197b719a40f7d5186aa5766
BLAKE2b-256 18a0d91fefc0e55f6a054c699000b48b6e51b4ef5ce6fde41932540e6245e7e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7c05967366f32c070bbff8e443fe24933675be2dd162827082c6c6682fed729
MD5 01ef723ffbb8e6b704a181ae8013d071
BLAKE2b-256 bcc61f223c4d299f7b5c65078c17213d49905a4b2947c3bb6b9575bc6dc4b592

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 455e11a2e9cfa0f0e3d2ff6520ab9bb514d6c14a98ddb086fbb5857a20c39876
MD5 68d7f20495cb85c3cc0caa24edf9a81d
BLAKE2b-256 fce9f6d4fdfcddbbf11e5427ea68eac8a58c6dc4115818da7fe43dcfd571a541

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c32fd075b8cffc943ee486fedcf75a0d417fa27f35f7850a1da6b88b74c25b84
MD5 049a18116767be308f5dbb66caaf78fe
BLAKE2b-256 ec3efe51f90c7280af1c2fb1fcc659caf4241f57529731d94ab8ee8797fa3758

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1f066f1cee1cb04cd49a14d1c6f94e74b6b56bb33b7cfc92f12f48160bdfd167
MD5 fbf235dfa795bd79eef890e21684b6ee
BLAKE2b-256 e9f84d9a6b607c8bb524c2266a3697ba6078d802cd7848b19ebac491e92db05c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf6dc16bead87901a339c927c2fbb4b48374b9248f5ca9a0150066af597d7ec3
MD5 546dc2aeb78a9f9317af5c8369efbe1f
BLAKE2b-256 95b02944ce030034790d5d5108bf84bdcae8749cbdd3443814f12d9465d1ea31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 954.9 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e77296910c469e2994905474c6e679ca1c617a4a98ccfea7252d6fbf0158bd9d
MD5 a4747dc65c3fa6b31ec2200c0bdb51d8
BLAKE2b-256 928132bfd23bf0b82e9217e57ea2ff06b1494b6eea061b5aac667d63b541ad40

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d093187e63df55c65de33d45e9a6978a6423bf46a4e97d0124736b6ed47c3549
MD5 29cca8591568f1f67780d07c1d7910d4
BLAKE2b-256 1d952d240392a67f566f7765af8074a36129b648e070ab526dc4ea345be72f4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99f04dbaf2cbb597e31be352b86980106ee37503bb99102f42481252e5766781
MD5 78bb7d3f87217ec162627cf4e4ea77cd
BLAKE2b-256 98ab7ab37a05d1fecb88f1b9842dbd809ec4eacba9e8c122903684a6ae506601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45fb0082d47e37531b487304817b3baa01eec6db207dd5817b09c9d803957763
MD5 5e5bd6178bf8d0a741dc026ac006a7ce
BLAKE2b-256 d243b2bb83dd5baeafb6412972c32b83ab2924a517cc52ba0aba126c01811eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a72ff4d82687ddb2e7a5733a33c1d80ed3637f897a4c109933457a5a67db6e0
MD5 51c0bcc302325b1db6ef32f1acbf7171
BLAKE2b-256 56cd7f06510e99f2cb748e4cdcdbe8f3790ad8d7f0e93e9b5049b26d1be8a763

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-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.2-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 39e442868fbe3e5d2e90118fcfc0445f138a5a005fd4bedb6253f64b47a6eca1
MD5 1c4b4d4cc3f4271a4ae33da5e8ce39e3
BLAKE2b-256 5921b1d1081738cfa5f2ea923364968ef2a42fa8ad572a7b7054afbc55100c1d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 975.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.4.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a56910c25cbba07fdd76c67869a577390d83e48046d47a6dddbb60bb428210f6
MD5 de9337f4b4ba4de40932ba725667ebf7
BLAKE2b-256 ef4671882b3a2e287357a9e064a89b5c36d8470e553e82e27e7ac7a82e3185f0

See more details on using hashes here.

Provenance

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