Skip to main content

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

Project description

rnzb

Tests Build PyPI - Types License

PyPI - Latest Version PyPI - Python Version PyPI - Implementation

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

Table Of Contents

About

rnzb.Nzb is a drop-in replacement for nzb.Nzb.

For documentation and usage examples, refer to the nzb library's resources:

Error handling

  • rnzb.InvalidNzbError is named identically to nzb.InvalidNzbError, but it's not a drop-in replacement.

  • Error messages will be largely similar to nzb's, though not guaranteed to be identical in every case.

  • rnzb.InvalidNzbError is a simpler exception (See PyO3/pyo3#295 for why). Its implementation is effectively:

    class InvalidNzbError(Exception): pass
    

    This means that it's lacking custom attributes like .message found in nzb's version. Code relying on such attributes on nzb.InvalidNzbError will require adjustment. Consider using the standard exception message (str(e)) to achieve the same result.

  • rnzb will only ever raise explicitly documented errors for each function. Undocumented errors should be reported as bugs.

Installation

rnzb is available on PyPI, so you can simply use pip to install it.

pip install rnzb

Related projects

Considering this is the fourth library for parsing a file format that almost nobody cares about and lacks a formal specification, here's an overview to help you decide:

Project Description Parser Meta Editor
nzb Original Python Library
nzb-rs Rust port of nzb
rnzb Python bindings to nzb-rs
nzb-parser Javascript port of nzb

Performance

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

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

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

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

Building from source

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

  • With uv:

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

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

License

Licensed under either of:

at your option.

Contributing

Contributions are welcome! Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Project details


Download files

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

Source Distribution

rnzb-0.5.2.tar.gz (51.1 kB view details)

Uploaded Source

Built Distributions

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

rnzb-0.5.2-pp311-pypy311_pp73-win_amd64.whl (924.8 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.5.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (945.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.5.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (945.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.5.2-cp313-cp313t-win_amd64.whl (924.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ x86-64

rnzb-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl (939.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rnzb-0.5.2-cp313-cp313-win_amd64.whl (924.9 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

rnzb-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (941.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rnzb-0.5.2-cp312-cp312-win_amd64.whl (925.4 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

rnzb-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (941.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rnzb-0.5.2-cp311-cp311-win_amd64.whl (924.8 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

rnzb-0.5.2-cp310-cp310-win_amd64.whl (924.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

rnzb-0.5.2-cp310-cp310-macosx_11_0_arm64.whl (945.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rnzb-0.5.2-cp39-cp39-win_amd64.whl (925.0 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ x86-64

rnzb-0.5.2-cp39-cp39-macosx_11_0_arm64.whl (945.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rnzb-0.5.2-cp39-abi3-win_amd64.whl (932.1 kB view details)

Uploaded CPython 3.9+Windows x86-64

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

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

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

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

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

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

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

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9+macOS 11.0+ x86-64

rnzb-0.5.2-cp39-abi3-macosx_11_0_arm64.whl (949.9 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2.tar.gz
Algorithm Hash digest
SHA256 c7d73995dfef5d1bb9aea161f36b9df5c2cc84bc932e08b61bd03c7a8108d2b0
MD5 c25d3be92f5b18fb7078583b7c67c9e6
BLAKE2b-256 7ef816c69d0a4acadd7e9b62ce378a6bd202ca5a4d4f4d043f2e955752caee15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c2f01569769d7a0f4afa20c946eaba83d330c836ad88e2d9dc83e3fd6c11af96
MD5 72f9474092d847fb27eced98254b87e1
BLAKE2b-256 d61dad0aefa98bce555410fed08f06806ea82326f28c2b155e5d4cf972089973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b87762ab210b78c1f866c78319ab349d10bd601cc3b5e2c0f7d34fd8f6871dd5
MD5 8ee54e1d22a3e8ed3756405e63fe580b
BLAKE2b-256 e6fddcc275c57192f8cb309a79d896b2ebe91bbeb6631865e418e62228ed1f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8050e00f589009eb397d66011dc1d35594bc2088aa60cfb1aed2d1565863c5cb
MD5 dfd5d49155b28c5458375786de0446e2
BLAKE2b-256 4a45cffef0b8f809792dc7d440251db165288884d381e2bfa2f50a269b4e6181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ed0cd185809563c2bfd47dfb3ba70a0dd8bcf6edadf59e8b43dbbfeb95bb18a9
MD5 5b608c5ed5d2eb6d4af466191ae13f46
BLAKE2b-256 a25e1294169a0050cd70bf887dd0594d9fcb220a5fe4f53653fb08476b30ce4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 382015f3219f06ee0359d1acc289a2b5b7c9e5e0a5f95f6d70b736db67445c24
MD5 cf808b02d1d30c11e2daf73bdcb8c3b2
BLAKE2b-256 e26f737729b506693caf32faf8126a7fafa5a8c7959f45ef15fde41ee4255412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 34693e2a965bcac96115b4edd534a5d42e13ee237d44d99c03144679ee79be2f
MD5 8e16c2b4e882c1bac0a61d3e795708f8
BLAKE2b-256 6ed0928e68746aafaf0478a5a8f3754b6ddd45756227515fba067f3201654cec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfa08806d94ecb656d82cd86711d596828ada206a99c4cb843158df1ec48f79e
MD5 f84ea7c2e7c88fce1784fa9e5bf94f05
BLAKE2b-256 c0c4a35113df20df8ed83c5375a33d4ddb4be32905e95903770c4d30cbd326c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 180e665fc53855a729bde836f0a536a956435817056b41e8eb523da2c84280e3
MD5 6918999b312d4361ef79c46be097289c
BLAKE2b-256 de5bd0685e4236dc5939f8253d3712a6fe61631079c172bb995ea93c6dc4d918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d5f6f1ee0870fe1899475980cf2244600946c9336464a4af79bc8fb9921fd48c
MD5 e1fd020aed3c9362aa0fe0be04028b8a
BLAKE2b-256 870990a6b302ea04361cad64349d7af29297adac79f82413dd8b962eda6156af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1682e180feed384d3878fbae524558813bb1a64183153538438284e9f6355c95
MD5 fb5ebc4c09067885a08ee7b8236aa847
BLAKE2b-256 ba9b2ac36278ccfd8b30977ab9d266fa25f4dc3b62047583abe40b0d5304f553

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f21cc3cea59f0e3a456fbc86baaffec3d19950b6ff337733ed0cba6fb0757a3a
MD5 8ea82fb658e8f8d5100eea68687cb63b
BLAKE2b-256 d6b9f576e0beb3db2dc6c2dec8639c007f2bcda23e8ac2e4c3d768cfa012ce51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecd682a85de4a701a6e6688305334aea7833f0086268b099aeef7e6c11e04ba8
MD5 eda8753e4f891a552715dc9d2ed8175f
BLAKE2b-256 13084c068ec1f47c8d85166cdd08d9a1f59f7c5e21da3b3c6a344bf55330d551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2daa8b9a567077dd3aabf25e3dbffa7fba4b0cc762e5ae6143f5f8f9c75c213b
MD5 4368dd5f6aea18e7a56672787aa2678f
BLAKE2b-256 83c69364dff6e009f12be4e727e5828b8c97f8f74558e7d60370504e257afa22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb2da8258709f72deda351daf30fdf7e93cf85a51abc3afc9c9e54ec81fedfe5
MD5 408948305439f40501d946b1ebfa04c1
BLAKE2b-256 ccd9983677a4df664a889641070a7f846523f144f43d984e869d42fda2590612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd6d61e34179985a2666bde145c13515dc018035c639370d29bf0363570b1cf8
MD5 955cab7d9bd93f959638c3dce12be577
BLAKE2b-256 f54b5d251b35239caa8b86b3895ccb3c5d5f89687779aa6ca7a5257cb029fa70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 31b78463b5b75de15d46bc24e3ebcfda8f3268ebd82039d997774ca296b88edd
MD5 6746aaff9c9b6872b5bc89d76540ffaf
BLAKE2b-256 4489319f1d7e71c3e46f6203107ee4738b10dcf6ad0fa5d5cf0dd29e749bcbcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c9cb9fdf24b3b00797f1707e547d746b457922d491098cbd8aa8d7f718438d8
MD5 61bb23f0a540f7362226c0e7f3729073
BLAKE2b-256 7bab7daf89178dbe01adb820057ce520f9bd0b761141fe91636e83740488ace7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 58c33016eacf35f64f935a44c281b9a57e5b590076c62ca322ea40e49417fb15
MD5 57a780376e8eea96590cfd99ce173973
BLAKE2b-256 25329bf5aa479e056ff1538ac1efbc6a256e8234360cb9f9952c54cd74bf96f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75f25b7bdf23fa321c3129fe59a5e8d79428633f3b562684b967c274452d6f68
MD5 5c97f48b56f223c2435321c637e9b085
BLAKE2b-256 7128ce1a3f5e82cc731f25eb28f67663b59868da562464eba8a949dcaad2d8dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5732346ef1987c91bcc4dabcaddd3a27cfafd29850041222c823f5784345bba4
MD5 85a3166de13620791fefa0620fa37ad3
BLAKE2b-256 485b945fe1988c6c05cedb0a1b5e87ae85ac51b40335aa20c511314c900d5b36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 350afaf1daead69960cfa3f933a03f75537d6f2ca9ffef553e0312a26f2a7cb7
MD5 ea45ab6d7e4634dc3222181a7e587094
BLAKE2b-256 92fead94ad104d6e57f66af61e86b24cfd6e0b13b062c23ed80add7365f4ad83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40b0cc0aed0c8853943b18c1fa64175eab3a6bc5e22717d75b2424339fe503e8
MD5 3e47c2490797fd1b1c6e16b12400667e
BLAKE2b-256 6174602ebb66e1fd2345657198e8956e0680233f4aa2fc8598eef63432a284e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0e0e3ebe6ff28d1f1cf620d7f234a6bbd6649209402a2db73667a4e35098f311
MD5 271e2939a6b986ed0325ba4f2724dcba
BLAKE2b-256 44121d85eef146f51fc1922ab7d10157cceadd32106c64242415c188e589ae29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19da63cbb481d51e76b47c7b5af699abb4178597d1b0105a7ad16a9144078f8a
MD5 59bb4384676ae8391e0e06553ca02bd3
BLAKE2b-256 dad6652ff715396f6341b1ad44fa7ecc4cc5fbd43375cc4c935d169538f9e8e3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 463580ad14e659e5f48b5a0d371e150bd4d80009264e5f124c70a57a7d5332fc
MD5 0eb7a9d74786b3836959d777befd5c9a
BLAKE2b-256 4b98e05634ad1582590e28ded6f7f1a6b551f6051bc8852e348b03ce219809a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43ee38fbe63bea92c0ca9c093ef1a64b38105e4a5c7344d157dfa1d9bc6343bb
MD5 a8641d754d0e871fae99721d4ae0b062
BLAKE2b-256 fc8f5934f7b0195d4bd9724565fff6848a2e326062d8e79f5a69e4fa3a2c45f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f513abcaed686642302e251c1b0c3ad286c6fb5ae6a4d50973bed5d3c248f978
MD5 2f3528749c5720cb5b895b36cb74f1f3
BLAKE2b-256 95b68761e18d39f584028d1b150f639b42bd401460f3c106bd925d0dc627ce4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b65889c9c6979d94f97c1f875c96e67b2a3073d2cc9e6cb2d0b1dd8a9d759f37
MD5 957f811075d7751c0174408bb59216d1
BLAKE2b-256 a36e4ee839973d12d17ac219f14ccb60791f007f8c7f6ecd6d43b9c818ca5d1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45dc6b7325fb0b778a486e95a3462fbb8571b70fa766126d9d12936b2194102b
MD5 39f4246d551641c2a118ab953d444c3b
BLAKE2b-256 4b16eeebe490c7f2314a03565e044d399a80ea554d2af791f6292152c8dfd354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a3252630f1b39a485a91da076570390627a3d0a83ca4f30ab6ca0b91ca44c04b
MD5 7fbc7ccae43d6c9a6bbd534c80669563
BLAKE2b-256 ae0a72ec6979136ab0821b58aff869a3ddca1c8eaf4cce028201ab0205b24f28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac140867a5948b4ed8aa98d8e638266a6f2c4989c5f242fbb13e6ddde6457ef2
MD5 6e40baf4822a63f442343e39b57c6e9b
BLAKE2b-256 1601314ad3f247c202473143ce29141ade12bfdde15e66f59cd8c1a052b09d31

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e110c41e625edec9407942dd56993ac5cc61512c5996f334563dd1b175502c60
MD5 2d847a2893017a2791f9ce0fc45b4640
BLAKE2b-256 0a18ad0a2618163fe802a8246b1c1f651707c015dd7bd86b7fee5366148ecc0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 319b6703f6683f2eb15dfb84f8babc41e451b2a1d9ede74c50a26024b7f80c71
MD5 eb8c405610ab38558eda91b15ffe4516
BLAKE2b-256 c2254d6b0811acb5fa150ba23af1ff8b576e2bbb7838f3fc5a271451337b314e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0243395d4798100e5c370bf0591441abd3f3cc1fe857a90ba5f1696e3061812
MD5 a8e133a7a606da79bbc71c35b57ea61a
BLAKE2b-256 5bfa88ef743c32dcda9d88df77e27561f5479e03f3fb4bdd859b2c013d4084ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13c6e8d548d4cb593db99c9c3f0c5af33a2092a69807143f52e08ea4163a2a69
MD5 3cbc4257ac49f65cdc01f097040f2874
BLAKE2b-256 5c0614f5b7c972c4d29bcf8ea3a6268791155df68f96c8ec751a5a11a27792b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea104369c87460056597b72aa94a57a7366926d8bbcfce7a03d3ac89c742ad40
MD5 391bc8584d8e0dced4f76a8c6727bbbd
BLAKE2b-256 34356d5d102a28a22d8c314351278fb6b040c18ff0058019e5a736b8eda8a415

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5768739fa9c6f34116802166cb287670d13ad73dd856ec203849524598fae12d
MD5 50b0888f240cf648c34e97fa52dbecee
BLAKE2b-256 bdadfa436ebc43d2c6282afcd16741eef98c0d363a7f50427182f057bfff8f28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edab6c24fdee24c65c5cd1cfb081423dfebbc8518cc0fc580c53cadbe5f5492e
MD5 9917d38e50b50af1a8858d185233aa76
BLAKE2b-256 ec6e85d2ae0fddab5c561c27d490ce051892915d062607c7db30165e29bf9eff

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1724d2ae458e51d1cd3640ed5e3fc19593dc4bfe61f6c3931a31aaeeb6a7d5ad
MD5 bdd48bf062845ede198dcc6ffa273862
BLAKE2b-256 b65c43141a5531d1f6e503915cb026572f8c23b6f7d3bfea2b9af97e175d65af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e41742e1606f16276908913ceace444c315d1583a98e8d4d3f4e1e647c37776
MD5 d7f313673330e8f0693c2fadb4ccc806
BLAKE2b-256 d3bd1c6c94aa91f6dcb433c5d8e9c53084b4ffe9114d4445732b81fb8f1d8657

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8ce8578229c3604dd95ef0019082fa34b6fd3def3526870a943d3bb6bfdecda
MD5 ca9a954502c1f8c5472e0b31a6bbb7f5
BLAKE2b-256 790bd901af545d7bcda7c5e4977d2df97d72a6497763d4a1f8729433a5a3e8e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5efb5e28dc36eccdcc8d4b0949583572ff5bb2704427381612fdeeae47978ac
MD5 c83407a69fa996b03026b896806cbc7d
BLAKE2b-256 60976b0bd8fe8684470e77acc851783cd8c0a79eddf444f0efbebb957362b51f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77551e8287a66ba88aa3ea64d58a0806947cb772228cd52a70ea9ef1c59bc686
MD5 aa8cf7dd3807b3ee4056e3dad2303a02
BLAKE2b-256 4464f89fe00af34cd33559edf05025addd7c9cc8e6da037e1e1f2617b95fb616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5af3f10b3e7dabf6b6f4c2ba413be64344aa148c653c53ce8fc13044881de158
MD5 1eda40f93d7d2515870ba0abc33c7202
BLAKE2b-256 8e79c02bb9526d32843facf75f7c023b99e5ee2a7290a3197a71d85734c4146e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf71eda96a261d9b08dc457d47f323280cb893017601bbde8905267dee1434fa
MD5 4264ae92a610904ec2c07f087d51b403
BLAKE2b-256 f1184c94dc49ad8fc65bde1b9289f7a9fe967dcd338dab51487694cb807df8a0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93ae0eecab33c20a5c1e267ed92c8f6e98adba753f03e21aa51aea00f2053795
MD5 73268fcec51a677eafd1fd622f054041
BLAKE2b-256 6734b6e97643cc95e592ac98c23f2303049b69151dac1ba77ae5c38b7c6960e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.5.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.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c77709c3d5972d80918bf060c56a5303372ba750791a214845bc838b7df5c92
MD5 a46ff8ca7c631e4c3128b449c7577d91
BLAKE2b-256 dc59cbc3ddeb23a9bb93916c9152487f4bc286cbde5d5dd367d13f89f73da2c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6f4323ed7dfa9115d5bb577befd553aec30f31b33e3692b8d951c52d1d746a2
MD5 78418a502aff03f91cd4227e298cd47f
BLAKE2b-256 be03abecb1304bbac5a3e267d485532cd214bf3742d6cc1e0d815f3c531cb6df

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94c6f09f3f4ce0f13e56537cf93eff88c1f672741410295c429d4496e9d9408d
MD5 dfde77579a3612d0e421081e86861490
BLAKE2b-256 8722f62487b6dc32f019c5a8039a5d38b3f1ac232d9e083de3aa20a0f069dd8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 525560a742bb553106354b0798662f42a2766e70b2f2bb03dd7d6e01e90b22f4
MD5 f0ff216e3b287764b55804902569e484
BLAKE2b-256 c35d7dbdbe567cd003dd977304b3320b168aa16f6547f84820b70cf481a5e773

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d79561df9ceac602680bfcfa06e5b25e084f98b55c0e3a1fbcceec1d8c24323f
MD5 923d1f94fc26ca00384b7e55ebef8ecf
BLAKE2b-256 1da4b70dafe85c60557b098d3f27a486a42c56c925047a7bc708c1b7a11099ff

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bedbe99652b2094535f0f4d7a1167d6841ba1a45a23ec5af4c7d50211a73f3f7
MD5 8fa9509cc1139fc586f436d747c2c611
BLAKE2b-256 ea35dad2b8e09874fb09b2dc32aae5646bb7271597acd40ae06afa8d66dc2317

See more details on using hashes here.

Provenance

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 79ca6d6ce1efadf842cc3e4aed8a27bee6e3390f83148b215e4a5345835f7994
MD5 93f9b3117e1e03f49c9f80b3603069aa
BLAKE2b-256 a15be53df6f676e0c3835702a73c0aac96e0f24e1c2bdc4c548db02745a0b409

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f08ebfd32c243b25be7dcd9c9851f415995eb46c3bae55e38821db7aa2caf3f
MD5 5de4f8a1a0e7c9d82a2f8cbf6377bf3e
BLAKE2b-256 55bb2fd0585ead391d1db1a2f0b0812fca75c8eb6364a4ec2995cb352a1cd016

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 480d9f7e42f2778c7482ab5bba6fd143d65f3606ef7d5e3a4948bc8d3cd396c2
MD5 2d7ff225a9cffb4c94d6d29cd1ade7fa
BLAKE2b-256 4713537242ac4f4fa27c0fb8531046f51576cbf273e3487a2482eb2ce86df90b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a61cf1c971c5e489dc29842fd9ef4b95a3f6a2cb47f0513c425f3d194f457d21
MD5 8f9d958859deb4556845c7bbe30732f2
BLAKE2b-256 ac2e11ea48dd79c3627075326e02aede377597f8e4e3cfa0322e2427d2951b97

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.5.2-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93cf2cc291b11152f2fc15d0a742b7d980873749057a52947588d6bdb517c724
MD5 b22bdd3ea1e1d116c929c77fe35aed4f
BLAKE2b-256 869f9594a73e553065fa72fa1eaa098f19c5303187140e5313df58743c65e54f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-abi3-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7aba1ebda692d40123ffbaafa17a9d7db17acf921d301bee83f6230fbc1ebff5
MD5 2834f9535c6ce580cc221b8d1e21e5b6
BLAKE2b-256 69f65bc70bcf012fa989dbb0520e92b2cd88c8d604989a755df44f71fa4ed95b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.5.2-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 314e519621d8c52dc25f2ccf06ff17da8fa89c0131cd11753942c8b93af0922b
MD5 a7cc1de4754f61e05c1fc02faca101bd
BLAKE2b-256 c3b04ee3f34c8acf8d0eeb70668d233bd64391998b19ff0dbfbf2712094198ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Ravencentric/rnzb

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

Supported by

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