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.1.tar.gz (53.7 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.1-pp310-pypy310_pp73-win_amd64.whl (883.4 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rnzb-0.4.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (998.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rnzb-0.4.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl (991.8 kB view details)

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (929.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.1-pp39-pypy39_pp73-win_amd64.whl (883.4 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rnzb-0.4.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (998.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rnzb-0.4.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl (992.1 kB view details)

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (929.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.1-cp313-cp313t-win_amd64.whl (883.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

rnzb-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rnzb-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rnzb-0.4.1-cp313-cp313t-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

rnzb-0.4.1-cp313-cp313t-manylinux_2_28_aarch64.whl (992.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

rnzb-0.4.1-cp313-cp313t-macosx_11_0_x86_64.whl (985.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

rnzb-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl (923.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rnzb-0.4.1-cp313-cp313-win_amd64.whl (884.0 kB view details)

Uploaded CPython 3.13Windows x86-64

rnzb-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rnzb-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rnzb-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl (994.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rnzb-0.4.1-cp313-cp313-macosx_11_0_x86_64.whl (986.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

rnzb-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (925.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rnzb-0.4.1-cp312-cp312-win_amd64.whl (884.4 kB view details)

Uploaded CPython 3.12Windows x86-64

rnzb-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rnzb-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rnzb-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl (995.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rnzb-0.4.1-cp312-cp312-macosx_11_0_x86_64.whl (986.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

rnzb-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (926.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rnzb-0.4.1-cp311-cp311-win_amd64.whl (883.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rnzb-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rnzb-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rnzb-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl (997.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rnzb-0.4.1-cp311-cp311-macosx_11_0_x86_64.whl (991.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

rnzb-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (928.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rnzb-0.4.1-cp310-cp310-win_amd64.whl (883.1 kB view details)

Uploaded CPython 3.10Windows x86-64

rnzb-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rnzb-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rnzb-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl (997.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rnzb-0.4.1-cp310-cp310-macosx_11_0_x86_64.whl (991.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

rnzb-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (929.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rnzb-0.4.1-cp39-cp39-win_amd64.whl (883.5 kB view details)

Uploaded CPython 3.9Windows x86-64

rnzb-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rnzb-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rnzb-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl (998.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rnzb-0.4.1-cp39-cp39-macosx_11_0_x86_64.whl (992.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

rnzb-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (929.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1.tar.gz
Algorithm Hash digest
SHA256 fe361c0aba916a43e879634bb8ff1ac710d22d69af68dfa861f19ba2a4095b44
MD5 7b5872853100ac8166050538c5461001
BLAKE2b-256 326fd4d00c489a689ecbb2368354406c21e18ea673be75bf7bdb5b1267455873

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a9f8f579ea6bdbca7c9a8fb23edfa642ea1a84fe3fa42ee9d8a57f5f47f3e117
MD5 73f7596b118cf5d0fb2b75bcb841febf
BLAKE2b-256 aed07f437c78a6a37508292c2c6cf3507c7e26b5c343576df9130cd2f476da26

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de4ea29620cca4a4e6b77f8331921efc51dcbe7be26276f29ee99d7645b53756
MD5 7de495f0b6b241322bffa35bc24164d5
BLAKE2b-256 3ae18cb7e85dd29f18088ea781e2f4c7a2bb4e4f0b5893f33b2b221a3033fffa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3057fb9dd95555e2c33d03ef5f2407d617c96f1b4f18081c414eebd47c7c7d1c
MD5 f981e7e3a0b94c807968f67b0dc00694
BLAKE2b-256 7228fee22b116d7c88eb7aa1a81cefb666f4fee3dbfbdd95da9e6e9148ea4595

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 dee211a63843ea9c077c3129593d6d8c3236afcf9b6dce9429f038b5cacbc3f6
MD5 3d2ab4acb3a3cb193a724e23639610b3
BLAKE2b-256 aecc1c35ef96dfcb46d71bfb8952273b3b0709a189c2819966f6093d286e054d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c8a76e442f91969f8b6e71e91d30bdb61d35643ebdd72a52694d1e2280ea442
MD5 af87754fcae707b47486b1610b0bf872
BLAKE2b-256 1e7e37659039ff06882837953fbb76be409f06b0544176506c5e84914b8b841f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.4.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

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

File hashes

Hashes for rnzb-0.4.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 27898d8fe363ca9787149c4f0f507b669db37e181a93a86610ebd0b95ed654f6
MD5 be1a7dba4ab7e870d131cfdfc763c7de
BLAKE2b-256 8d14dcb6e0957b8de62aab5ce0faf08207c31efce3d863bf1a955bb9597dcc28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 939876e6a43d73c12ec5b2612b162c2e0d54c613ecf994f3a6e51ca4533e8290
MD5 1227670b12679e74a7729530f89d0e72
BLAKE2b-256 caac1a3c9a966d9e3c2384e587ef080b8b7e2e40e1605660e95fd532910dde0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a456af5e0f9d4377dde8f8082dd1cbb345d8d27dfd800818fb498036a1b09a5d
MD5 5e6467eb5d93c3f00888e1ed212cec32
BLAKE2b-256 10244fc78e962b053bab31eddf456c58c406294acc376855c91ba1f5de84da49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e95628db07bf1290cd0d6e55a1d5ab3cab37ca28d8d80509a99178206f59672e
MD5 c85e45e7555f0dfb92b2ecfa959171a7
BLAKE2b-256 1ca5837e423b863768e50dc88167da29af5ccd3f6b8035b055e2efb5341f978f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e537d0cb3ec91d96a17923845dae0729a6c52fa413a3e43e3782928e5a3fb960
MD5 0c68738c2537990297355b83328fc095
BLAKE2b-256 a5e90640576d794b86bc382c720a2798dceeb6eea7692134413dac30dcd31dac

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4a8e35d97d166960b9c1239bd1c8f8557f4efcfea4202ddc5b3ee4341c62fcd2
MD5 a360534535c73c88d7e2c97e8681fe8e
BLAKE2b-256 a30328a054d1987a6b4b881e96ea480bcb11339dccfbf4a57132e9bbfe4e6520

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 846407ea51dad0fca90c4f8ed3bf48b870ed74912b900eeafe5164c883f38122
MD5 068cc183940e35aaff15de69daf721cf
BLAKE2b-256 fd17e3d770359801dbd57363a0d7f3262c40d9e8ea5ba5b031f2ec91df080d5f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 386bcedaf7757088eebb2c5cade825d5e24be46e9d85a07af35c5b2855acc5cc
MD5 bc783af781c246d8c21d30649c25e71e
BLAKE2b-256 3277c6d41c41bd5b35edda691cea525eb594dec62874b302f7e15d442bbf0365

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf292e7d20045692aa8cd1d413e17f6f95b24f04e0831eb25b782c8a6fa42d47
MD5 0e188f91641bcd682431657088510533
BLAKE2b-256 f64d59999e3eb8f26abec92c700620ab4ba694fc615ca67800d9d386909f1616

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01745d5a9d4bc288255e6e15319d68aa0871351b42b51fe5256d3d5fbb8b550a
MD5 c665fbac4db8edd36cfb2cb184efdbb3
BLAKE2b-256 20896ad9cf998deb3eb9cda486abaac1d940c2a27f7bcfef2143a7ef709aae0a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 785f7340b802989518f09e8d238a2b80e1cda1237e2862671ff6f4ee92c81474
MD5 92b7152b85c3fca19a24aca438c40973
BLAKE2b-256 0434bcf10f951a4eab0095057e8da0e4bd66d05cbfbc0ac902582525005b4e87

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11c6c53b1fca0075302960e77d64d9899ad61d96ed989ed45e2ba4ecb78cb71a
MD5 54b930a43fb2a69f8792eddd1e1854f2
BLAKE2b-256 225503be1d42a9ac7d02b305978d0a3ecc44768a1b450ceada810eee5c0603c8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa8d3362c0a35faa2faf8179932a748900d0e63aa9907fbc1ad9a4c6378d6ef6
MD5 6802147a7087bd4447dda83d93a45f81
BLAKE2b-256 2647e5f2fa89e23874e88660fd9afcb33763b2221d13bc4772173d6906931ae9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e24b8e681259658f1295def3e643712a4435125442b200318513ff22e43decf
MD5 3729af52cc4d87e44add6524e43760d6
BLAKE2b-256 72a3cbc84bd0c6c4d1a3bfbd6d8c2fb4d6613ecf089e10187a0aded9d68005e0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3688969bb5e3fe3c5c2abe430a9f4be10dbe6e0decebd0b137eb94ce2c452e6d
MD5 5a0855c7982d7b2b9f8c4e5680f98e88
BLAKE2b-256 48f21241824a0a8330a45406bce247cb1f50d5cff9ed0b021246a2bbab96185d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fea4fefccdd19db3604f04c8e3ce783e88825fc74e49bae8a1d6460bb07298b3
MD5 108ace3049d9492a6aa9ce2748aa09da
BLAKE2b-256 a62fe485c76cdb737fdffebf7ba953644c323bf9f6114f3432bbf220419bee5b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20c0458cfc2952b0fb300ec4a041d06a94574ac2d9217418b2b15af3aa64c6c8
MD5 d8ec3c6c30c9701eabc4798fa865f452
BLAKE2b-256 dda54ae05d72c25dfd0470ac4b18a31e03fdc739b6fc1e7d1fb5fd5db4bcf0aa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e145cde7f6c43832bee8371397ef9f49b078ae92fb85600b2378ece054633833
MD5 bd00516ea81a23b8e8eedba72133f002
BLAKE2b-256 e8c97a3a06c9858d0a0aed0a9e95fa4aa015d8281a3d148a11246e53131fdc04

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06a6e40ca1e0a41f18008b90cf00b3d7044d71bc120613816d0ad5ab4a46b0c8
MD5 e32e73b80a28b8ca04379dffe3d2d90a
BLAKE2b-256 8318a313ba1d3d2b870fff6188be8f257477986eec963711e0942c8d78837048

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed32c5ab85d6ee01f360bfd54ae2ecb5273e33610b8240870cf27d7e36000994
MD5 00b322c854d32c18f177f882a2d31ef1
BLAKE2b-256 7b4af0dd24939be5d987eeb7e246585c314b7d2da16c6cb61c80b7fc0ae7f6af

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73a47978c771b7e348e757040c3ca90058f1a657fb3d670b28c50cfd41ef1172
MD5 adb7245f1ad94e29268e9b809d5ee77e
BLAKE2b-256 27a4eea6f09315d3c20164f179e03b0592108e34fa4a8a294a618b1afffb4753

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0de02350e75a686ffdb9b8797081a47951c17f2de8e6b26b591a3431ba7e8412
MD5 f06c70b8acdaee01049cd18a0fd645b3
BLAKE2b-256 ae4411d7eeb1e30d776412e168d1fc2c39e2d2ce183587363cc2e95bb8be203a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cef91d81f7442d85f0a7b0142185925e1cae0dd3567546426b30acdd7678d09c
MD5 9fecb97282445c907c5f6294e770e37d
BLAKE2b-256 ba482d071b72ede6e45f4f9360a62636258e807fe3c214fb0c16722e7b39ab6e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 338f8d2d3be27ff6a2e494d5dc4b18091ca4ab6445dfa7a8386804d3a635b46d
MD5 32254927c997d332208fcba6ce3785e3
BLAKE2b-256 2b6c8b596107033737bcff27d6bbc55b0b903345ee5ac646ea651f6569a818c7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6e7c02819a2bea9b99f5de1b721d233d92975089fccbd24874dc1e167e72f639
MD5 f7f911decadae148a29ce132bf073451
BLAKE2b-256 37727a94d02c89a8c028c6ac78f7cc54f1c98d4093a5d910f62210fa3dec9e2e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1237bd3927b5956515b5eaf73b3d26cc769ee3cfc0aafea1062fc80716626b1
MD5 1c99b9c39f941191abb8e6c8f6f3e8f2
BLAKE2b-256 d1e019dc4fc5e294f17c97ce2705c0d7d78e2c85c6c8f6ed712c0dce68a14f61

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a6dc79c9db02c0993d78c339e19220b7bdc87cb6c89c7c26e0a78de67f2fe58
MD5 3a46dd51b31290e252a67602d0b896e9
BLAKE2b-256 2b29767c206971afd7c6de25903aeec3ca22546df0a1dc63789997fab1c0c7da

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a346af44b475ad320cd8b70b8918249cc0d21790afec078b3f91f1601206e70
MD5 c56f3fae830e5a5c07172ed5a1bd23ea
BLAKE2b-256 d3ee565330bff52dab3de16f5f18cc9726b98ba49c6646438c51099040ea7d60

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c2ffbb43fb65612ba84f84da85e4b992e97babb82184756ed5ca9a3851380e2
MD5 e73eb04843e6b99d726e2921f17af94a
BLAKE2b-256 e2d6ab0878c3cfa18ff7efb4b5622c15eb9536ff476b208f7d4314a7b9a1fb1e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 571b8e235b986fed72382934d4f8b1cb7e24db5b424ddc6cceb18365ad430000
MD5 54bc45f609b80e8b2089e04d28ee4312
BLAKE2b-256 82c3a18d435d93a29238453252de91395429bb12199a1b9c1862d2163a35531a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9bccf6bdf5a8a2a0211acbd14dc30b44c959b7168a468eb0386fedc4f2d06df0
MD5 93de24532f4fbd15a27357487a503e80
BLAKE2b-256 e8bedc046d596961ddf6063047ac47722f5bd022df6ac6e0c1d495409d654bf8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 53d0c75d16fd8cc2ea4d524b2c8a028ddf1bfb9be03773b6e1393ccc0ea14eb2
MD5 cdcb84f1a39a212804e37ad8f5dc6ab7
BLAKE2b-256 e7aca2ab071ab9de57923679d3982351243059dc0189e61a45b31abf7b8c00ce

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c2b9b53cabfae67528d0987d47d6c0862d000299b5e54fd4bdb711afa8e9d16
MD5 fd6a76eac95fb7555f84a5c9554701ec
BLAKE2b-256 0f74de6f2b23efcb1d8222ea1d545e32941f4da28d0b19b202bdb95c270c3dfe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 56d9dfce1346a0b7609c4def5be77de3fd72d4be15ecef09f9803e4f7776170d
MD5 e17143ec57b92ed20bc13c8dbe1fcb70
BLAKE2b-256 24f1680e5595b7eaf739fdfbdd524520bc080203f55833e806ca5219174e939a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecb856a34225e26bf1338266793596fcf4d4b739935a640269646b2bd735a3a6
MD5 88f88b700e3862ff276ee33153ffcbf1
BLAKE2b-256 cb778ffb50eb8d8df31ab891958f3cde823510328c68e22064b88ffe9d6b6c42

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61f828fab64a08166dde4e2d44cbea1b5db647885e66f1999419d13761c0468a
MD5 97238b6c9bf761bece3342ed7eb11772
BLAKE2b-256 db55314007c5a67f78513ff645f31efa0a53059b7843903e0fefc7b512ee5be5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ad62b3b2eb9fdfbc78b1a03f6c3002290b423c7073efa2cbbd538dcec9cd2a1
MD5 d38ed827b31c699a8f6b421583b41567
BLAKE2b-256 930eb54c6e11c2b43b458dfb58998bdd18a191476491b555f73e27df00c8704a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51cfc2da190c7731bff3c008e9a2e39c879c7ff7bdef1b53f3c2d8607fde746e
MD5 331219fcc70adff0e922cf275229afb8
BLAKE2b-256 57385665bffee627534d44f92b27084c1e45b0a7a6aa2e3c3fd039953685d336

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 08f946af137bddbb0134257a7180e0514905df09b436bfa6e3d0ba89582a84a8
MD5 b2ee004a919d4e0558334b344e4ad611
BLAKE2b-256 289b5e10c0a5bf1b245c36df68175219fbe4ddaef4ecbe26fcf8227e232ee617

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ec28ad184065be9bcaa6275e5f609e7ad2a873a38a5b8278dba2afde43d4c1c
MD5 301b83826da8e6e9e4d93c57bb7dea0c
BLAKE2b-256 3661567508b40fe9329266e67c790d45d308e241bc9915a967252d5e47596618

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 78a89184c45f690b23111d62e77783461ed9bd4025efc2954095e744fe35f314
MD5 b0b8fc73ad12aedba1a2b017a3ad15ff
BLAKE2b-256 71024ab9159a2eef85bdebccc9d3d05f26236505186125d7b8313054b3e25e13

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

  • Download URL: rnzb-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for rnzb-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd053e019cf1f47d807dafef070bed8f676862768d558078d6aff06c42c5fd2b
MD5 6e79520b2c3cf1e96edf2e2a10f44127
BLAKE2b-256 dde62d7b6fc4aa94e3fbe9c0b1ab5ba9250bf2802ad33dd256f6c4bedab26591

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9c1d78de6ce50a1de249ed7165bd70b85ff85c0e5a77e95a733f8cddb89f19a
MD5 34d093a530e0f9ade1180874dfb99ef3
BLAKE2b-256 6bdb1ddaccc80187a5dc822eaa843021c52657c4a2c92cc1f07fe25a5346e5f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

  • Download URL: rnzb-0.4.1-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for rnzb-0.4.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02fab5dd07854681aa2c5f7931fde09677f18280ed5a54d46d588e2d0099a243
MD5 9fd7f0e5f2e458d636ca4352f1c819ac
BLAKE2b-256 d8fdd22c2f96b0630352e4a4c537e82217142919dc37d1e53dffe88045425a0f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e497f85de12018d1bd7dee8abf3e5cc5f4af4f7c6a617760bdc772f4151308dd
MD5 a4b3f3dad7f8bd23ef95dec4116239dd
BLAKE2b-256 411df7d4e9d83a32197b03cc296c5e8bb9f1bb7f2cbfc0f122b8550451c9f1a5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4791cb300aa406197aa2c8729fd0bba6acd66cef477cf6289cad24724a8fb4ac
MD5 4fb638a574ea1e5e9936b7fc78667bd1
BLAKE2b-256 52cc417749f83c7785baf338e9f11eb64a6f6700fbc019cfe309a271df1d8d2f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0937cfc2661a63b5ca7394c7e6b4094f56536f0e55cb02996a0a4221cb71a195
MD5 6351a253d7f3d6899ced4db6e2cbb129
BLAKE2b-256 85893b7a29071fa4d0fb53afe3e65520a01438a506857a9a1f00d8f913c450b3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

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