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.4.tar.gz (58.0 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.4-pp311-pypy311_pp73-win_amd64.whl (928.1 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (947.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.4-pp310-pypy310_pp73-win_amd64.whl (927.9 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (947.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.4-pp39-pypy39_pp73-win_amd64.whl (927.9 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rnzb-0.4.4-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rnzb-0.4.4-pp39-pypy39_pp73-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

rnzb-0.4.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (947.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rnzb-0.4.4-cp313-cp313t-win_amd64.whl (927.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

rnzb-0.4.4-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rnzb-0.4.4-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

rnzb-0.4.4-cp313-cp313t-manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ x86-64

rnzb-0.4.4-cp313-cp313t-macosx_11_0_arm64.whl (942.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rnzb-0.4.4-cp313-cp313-win_amd64.whl (928.1 kB view details)

Uploaded CPython 3.13Windows x86-64

rnzb-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rnzb-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

rnzb-0.4.4-cp313-cp313-macosx_11_0_arm64.whl (944.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rnzb-0.4.4-cp312-cp312-win_amd64.whl (928.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rnzb-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rnzb-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

rnzb-0.4.4-cp312-cp312-macosx_11_0_arm64.whl (944.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rnzb-0.4.4-cp311-cp311-win_amd64.whl (928.5 kB view details)

Uploaded CPython 3.11Windows x86-64

rnzb-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rnzb-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

rnzb-0.4.4-cp311-cp311-macosx_11_0_arm64.whl (947.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rnzb-0.4.4-cp310-cp310-win_amd64.whl (928.2 kB view details)

Uploaded CPython 3.10Windows x86-64

rnzb-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rnzb-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

rnzb-0.4.4-cp310-cp310-macosx_11_0_arm64.whl (947.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rnzb-0.4.4-cp39-cp39-win_amd64.whl (928.7 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ x86-64

rnzb-0.4.4-cp39-cp39-macosx_11_0_arm64.whl (947.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rnzb-0.4.4-cp39-abi3-win_amd64.whl (935.9 kB view details)

Uploaded CPython 3.9+Windows x86-64

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

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9+macOS 11.0+ x86-64

rnzb-0.4.4-cp39-abi3-macosx_11_0_arm64.whl (952.9 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4.tar.gz
Algorithm Hash digest
SHA256 06868fa1011da8d021e640b35b0d020a1d2c6c92ec5a8da02954e56ddb63d462
MD5 c0b3d1ae77eefd101ac0c7354a3973ed
BLAKE2b-256 0454bc201a11748d396870ee0a7e1bd92722d3fe93636897bfbbfd61078cd8bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 319831072f5f9274871da9458a12d041efdb0874e3c5f99a400a4d0af1f141c7
MD5 cda7fd4cce662cdbd64a91c87efcb3b0
BLAKE2b-256 bbabf7a8371285e98a891c981ee48c14313744a7ac60fe08a5db1bb2616ce9c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.4-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.4.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.4.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5947528c36b99277a92b82f1ff9956724a9f4c138883ff10a9eaeedd2fe41774
MD5 fdeb1979254b690f9ba5ea779a265b78
BLAKE2b-256 5d56af1e17dfdc233ed363996b6e77919c9831cf2f9182ac1601bb8976a770b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.4.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rnzb-0.4.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a92b6548806da8987990c7084866b5644e3bbc8739d1fb1ba6625718d31cb46c
MD5 4b6ea5715481f44701da037cfd21cc26
BLAKE2b-256 ca8a20d4e0e3ff12d2ba026ef31bd14950c57d06605bd76e1f7dc16faa90207e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.4.4-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for rnzb-0.4.4-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 07782b66d135e81b6590f82730606f90a957d9550b274da18d5e6ac4aef544ff
MD5 887f2597f0f2ddc37751c01f5adf49bc
BLAKE2b-256 16d2d94f2308f414f9ec01f1f5052d9f5fa181c071ea5e1df7fd83cb883515c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.4-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

Details for the file rnzb-0.4.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rnzb-0.4.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db71c6677771e3aff2df6f5c6331b15af9212bed38a7a45f2760d3bf83905a38
MD5 babb1207e294f90fe2ae4a53a9283dc5
BLAKE2b-256 255527b79ea923d3d278c3f56e0a1a6e9630580e2da6691e977bb90a191f485c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rnzb-0.4.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on Ravencentric/rnzb

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

File details

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5eed0d6d6161f9ae172a074cea62554fb4bfb5956fe1443bce632365372003a3
MD5 0e4a4e0f8eb457b5cdad794d69da2ffa
BLAKE2b-256 c51b59af62a389ff8640ea3c0fe3059a39924dad67a35399bea8850c81c70eb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd30637c35baba5733b56c597b1815b786a6771392f5dc612c498c146843d146
MD5 1546397fac288af3874ad966c1bb57c9
BLAKE2b-256 78414fb210d249fdcc071627e90d8e61188d7f41ccad45931d5840f8a62c2699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84a5698f022984f6c77172576536c68baee300bf19630750e7aee7f59f2458f5
MD5 d19b56e73e61272420cf040e9bfda251
BLAKE2b-256 b529d140e13c2a814afc31057927df922c5e2ad24ed36924fd31eeef0dd5825a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp310-pypy310_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a5933e8c5a072c6af25bda941babdf8206347c2342a2839230fb6fdc60281df3
MD5 3e53f3aeaf18b3eb78e05a5dfe956efe
BLAKE2b-256 bc79d20f295dbd055617da8106a2d314f9f4a875ed45f7da2cf82680b6c60847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc1afed8bdd1b98c4ee4ac0b67d473bf9e5f8af72f2576d6ec739ce9bb373e3b
MD5 60fcc38418665a479f32c661bb954238
BLAKE2b-256 8d97c91f55190341556867a9b4c161d1e5a639a8bfdf75ab8e613768f386738f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5f7d42b41f8c0238871ad99851c43b74b03f679481e9edb93c3ef2b8f6c95d40
MD5 8734843ef02d4e6fbbc96742b6c83b7a
BLAKE2b-256 9656ca94a153701705733d45a225e77c5d09da1423fce603aad79c0c55c29c9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0fc2d3af8c269c525216e54850c3d6aaf8ace81fbf08815d205844c00f4712d
MD5 eed7e0b667474eae1a419d6c90e25435
BLAKE2b-256 91705d6c5d04d0f642539c712b19b510404f0df0bbdc357cbe4ad2ebab1c60bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d9f0d42f018ecf2a1544538701da041027b552f99df0079667c9a7b770f9dd4
MD5 8c9f87e07a8f149ffbfd7e243d8cc11d
BLAKE2b-256 f6b66918b06bc7bd474bfce5e5bee65d5d6985327195a093bb33926581e60333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp39-pypy39_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e5fc2d5c45d4883e5b151a3b612d92d776822c55a105468caae29f3176ff35c9
MD5 6b792a6c1d5afef436b8077badc18e5c
BLAKE2b-256 aa6bd1469ffe30370df5b3361c91809da3b27e81e99eb870324a45d5d4e494a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e79da75815ebdbfcf84719ebaa96faba034402ab5e9c057e82f3182ddbd68a7
MD5 d89dfa0747db46913dd93b6ebc628eeb
BLAKE2b-256 f745d10743dc97df44d5c01f83d82606b92c7ef9b7ac76a6fd56dc11e161bd39

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.4-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 927.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.4.4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 befe7d15344035c0e0a6e76a6266caa975548a089b9190d233d61c100f7cf2ec
MD5 152634fdb96460e88a526226801b2cb5
BLAKE2b-256 e8c6bf2fec01e3b3c1b6b20c0ab6ade47475ed9d0373b1668f7ead14f224bdba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a563298d5e0e3985b210488b5d4b3d1ff16a12a32f1559cc53356d953d9f578c
MD5 e273f3af4d28385ce54ab0dddbf6bcdc
BLAKE2b-256 eab8d5efddce7d9c0ff6a6659923aeedf5d38803980ea84f920aaf05513df995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad61fd9c67634bc1d8cd6de57c5359c9b5482d69b65e8ea93495a939d8787243
MD5 9c6f7dd07ec0b6b2ab0238a83855df61
BLAKE2b-256 119c793751122f279451830c6fbe206a926fe9d768c93861f9a07c956d6307c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c90ac526b5882f42f3c3d72fa4bd5fa2146c1ee5b7d9e22df6d19cccfa40e99a
MD5 6a7f2a577423c500e6bdcbae7ee0d002
BLAKE2b-256 d144e1dd5b36df3c3eebd239eb4e1e8a49cf8144ffdf00e0cb83af683d1ae0e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 545fb77769ab58824beddda076947113ba8840bb1f585e238e8689203ea926f4
MD5 0c83f748a34a6c3a27757059fdbff206
BLAKE2b-256 761aeec3f84944a4fc56681079958e46059d5b28758a920686f2f1441d372004

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8b5d6ab4b6c93b9bb69d1983cf15ad5dda5990fb79e6212e16423c3021461edb
MD5 21d9989050931c523a3b2364f521b71c
BLAKE2b-256 437fc3ecafecd335fc9ff13295e891120c82a439cae644929d78a2a0504ec6cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bfcc8b31272faf1292b1423efa8ec252442b814e72a58da164d265919f08b3a
MD5 14540b4b25183333957906e3ea49c267
BLAKE2b-256 1d5efc614294558824ad1127193eb82b0569f97a8b54adfbff8e8418f319e601

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 09caf2ca844d40ee94791550309a76744ac1760bca79d491c8773c013423a448
MD5 619d0d3d71e80f72fd86ad66b97559e4
BLAKE2b-256 60bb7c77a184fe0c39288358841bd02cb30c3b24d556921230e4431d6f3bb5f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca752fb888a7752f43d0185d76e6e8454ac1af8088e07d9b58040bffb3dd76eb
MD5 0f1dadd6f61a3da78bfea332bae24ac7
BLAKE2b-256 a7796d9690afa7d0dc6ccd430b013e0835e7a5ab7ed233ca7be25eb1b3ee08a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75180618290f9cb27a5485c62dc2b744658b02f52aa361df9cf2701faeb9448c
MD5 48bf2447a6a7433310e6df5c2d8c1ef9
BLAKE2b-256 e00971d156bdf7fed2ed9b860dfab2792cd6288fa9829f4476d8b4496cf4070e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0737ec2d276a58110b890b281950b96d4746bd6ee43781784a72b483815b91b
MD5 6246c67f947fd39a7ec6607c11f3ef8c
BLAKE2b-256 17c4c4986f0405d9f31830edac9103313213128d1b37936404f9c9f9facf0679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f6276711be2cba81b207d09ac60066c4aea3da2eda192cdf654c1eacd51b1e3
MD5 2bd784c352091730e6eca820d8f7190e
BLAKE2b-256 ccf7c348241fca69d0a057b8eaad3643a0d4a507c632e912c1359d51f29e42ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d58e48574a0f1722a948f65c4ca318ce9535ed6daae7efd39854c34d3116b7f5
MD5 0cbc878bff3314faf69b45deeb52a537
BLAKE2b-256 a740eb3447c7a9f9317374c545ca7648689e12867efd1aa9cb460b32f32cd1ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5147ad3f88daefb0019b62c64988915464dc66b6e5773fa604b1c06d6d589f2
MD5 64ca6e9e25a0abd8d0ec3e6c7465cf7b
BLAKE2b-256 00a1021046f5f5b9bfc871d92be8f0274e89291c0e92f1e67ed685902562afed

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 063ad012ba27257d87cf7cbda535390226271799e5082374501da3b39a7861a2
MD5 81811224cb70ae05dfc1a5200ae48633
BLAKE2b-256 74847b35764bbf49c44bf350deda9f00ee7b10f09e07d596d4045e43a13b8845

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c08490955c52919f848edad53564c717e0ae56a902f7d6a6e2bb588f85ef0dc0
MD5 80c1458f0a10e5ac6abb79083e0f1a35
BLAKE2b-256 e8e28cc678acad2525253fdf2be845d60b3d9931c2e12b03df98a71ff3998216

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b27cfb387ebfe36fbfb53938620c17891494b56118a92a760caa978ce654fb4
MD5 45877deb76287d4bc8733a8c0cd1460f
BLAKE2b-256 01dc0cd51d0d849d903bb65656bf851d550227e299f15fa17d2ff544cafeffb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e396d4c554c3a8dcacb72a0efe86a5c3d395a62a0f48d48d48fd3a116ebf393a
MD5 7dcafc8deda821fb312a3dac185a4fe2
BLAKE2b-256 98afee8815a97ce90c368a3d208327a014d0bb973da3015f83a4dca2024b8e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33cfaa8794fec4a78518fecde141054fe4470306898f90fb627f91d85f354aa1
MD5 821965dfa0d6d912be6375444bd6b538
BLAKE2b-256 5359fa9cd0589283e544e20155ff7ddc50cbb2ad21514f820847f0914ec9137d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 92b46157aa74ba23bdc5b6d7a136354e4c32fb393eb3f2013275a830ad555ae7
MD5 65b61a6584965e26e0b27f4b10afdcaa
BLAKE2b-256 170d11bad4456a8a9e1fd7edf313ad34cd08840cdf95e183b2b44b225801991f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9495620c5fd3c21f75f285f9790c3b5a9cc60a497f9db0dbfe742d1b8122c91d
MD5 5200cf59a1a53e28e9804a690420df55
BLAKE2b-256 9077163233d735f4c21bf78d7beb6f4efe50178dde308cddddb75b705a0aadbe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b83d248b5b92bef08dc8f79163cb945daaf9a1c6790d980d6748e7edb9e3f751
MD5 44abc65abacf38af541cc1f66f7eb57d
BLAKE2b-256 a4be3a42e69a93ce97b63ca51a2980aa94694e789e5180898790115ced5d115b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2664ea5d6720a057f20ba7ded8f16e936da468001964c4816499da9d6b21bfaa
MD5 98f05259a93a62242e7406c75ea2021b
BLAKE2b-256 f8562963b605b290cbe83179aa1c031d41774d36c2300016e10d12adae4651ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98d1c9b6cfc1d846b9a785d6357779b45f4fe82ae41f7428bafd9b0323002343
MD5 1d50fa8309af8332341986621f92060d
BLAKE2b-256 05251ada790ee570b70ab408975102f23f246735a3c9b245ed81d78fb18cfa2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3283cd15c836aba3d8324e216ebc10dc4546a8fab2ee9023912b6484191ea87f
MD5 5ecdc60e36389d6d51cb6404322f7ae6
BLAKE2b-256 e0290f24ae856ba5f3167f55f385f420e81d4f4e25e91156810ffbc50053892d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c9f48a6ec5e53edbb9d44282db07836229309cf08dc56c886e2a7d880135229
MD5 9d0240362105e0f8949627ff4f431b59
BLAKE2b-256 d0c0a015f7e4d780c503e78179b958d40dd2d6dc40c15199e699e24974b7f504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 89ec80c5a19cc9585a29f63935147ea3492dd1a397c5b501e045bde54f5ec3aa
MD5 7a0978a1e7ed759733d1d9c3f5031f93
BLAKE2b-256 73876c5a65f6a7d4d01488100822a7a3c8141dbb2198e00e0adb1800d393c840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfe081b8b50c1ed3ddf71a4811f312deb305730e05e9e28f42a794dfa44690b3
MD5 539354b77b810483881e571eb17d27e7
BLAKE2b-256 5cdfdba5c4b606c4b04c1e4a9e533f8a2d96963b774ee976c6c540ad554ccd3f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a786063ac380d5db2fce608f75440a63497dc12e7e670d1da210537287b8008e
MD5 2dae518e4c8382008f0d92161a5a208c
BLAKE2b-256 0f46eb6761bf1547ea0f044a1360b03f55ced900bbc7a8961971992b80c141eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebaf6b96d8d9e60fcc111b86ebcd88aabaf709c69f7a48286a5a0fc7e07c0fc8
MD5 edbd562198867e060e83a3ed77967878
BLAKE2b-256 de0d411d484fe6ccc679909f6cd79fc91bbcbb63385cb69eb18df73f9652b6c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70f6991320727214de202858505504c9362527e7161a468023584a36ecb169ed
MD5 2ae1c01624776dd5ce9ad9d6c47459bd
BLAKE2b-256 f9d06b4149a9df751d39fe41125be027a0d90ac4dfd4b60bf05c72e04a0bc035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26b889d71026750b56b817f09235604358c14b94c661439a4f2de41c3967ee57
MD5 90061ac89add5d8ac62f4cc468eb0ce7
BLAKE2b-256 ab66a5ff8b3501e0b4313d94907f5220ec45dcb8dbe1c713fa84751b66032b79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 483c8b1e758e81122d4763e8ef3c097b02b74dcd2db63d789e08a5bd0012aef5
MD5 bad21b08cd00f74b1d9aa79528f0d9e6
BLAKE2b-256 497f0a43deee79958212f48a3ac2c084119eff4284271927c732188357973ec5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1005dcfc100cb22e0b87cd5447ef3e139419e29b1c7f93e755ebf93919cbcd8e
MD5 a328130fc57bd7ad84b80b52c06c178b
BLAKE2b-256 e78c4de0030c3eee660f4a7b54ec067628856ca00c436671fdf37ee4321c3203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76a12899cb15acb8e85591a75c07c6b4c59458af5fd2a152cd8a1fe7b19592ba
MD5 2da2fd22c561c43dcb76806f2f821243
BLAKE2b-256 dbb6aa103cdb8e4b17b5aba51476d35b426fcabfa9e1052e6e941545b499b302

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9d0d1f6b91cbc0e88abb1a25afa5e7dd5286ab6a330636ca117d0dc0988395f0
MD5 d0141108df066278af91827351674bd6
BLAKE2b-256 65ada61ccc52adefaeb8d0af32d641574813380126854f82f0e1e6e5153c658e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1df4806e37a3493ab99d4e4e2988540845a3b3f853c3eae280a2d2f9e1edf371
MD5 9ae0a16de9de83cc8cce8c05e3a20f76
BLAKE2b-256 7b9d46727b73956ccc77841774a8d491a9b639fe21329600156de6d61779ee58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e43445efb659d36655a8fdc05f4b5b311e15128cd6a7bc2240f4b682f2a2b1ac
MD5 951af6acf8dadfdd9770f2dd8bcb5a55
BLAKE2b-256 c5c8849c73414bfd745771910ca999f72a7ad299f64bc7729a27a25736148e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97ea6eb5e6d18dadc8f2283805982d68c90610fc6903b4fae5f8fc5169e17199
MD5 0bd23a2cb979d18804c0828ce41bab2e
BLAKE2b-256 550c9e87351c39274b93914da13155061f505ccd7da2b1af9825ad00f0735992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74bc9d0e4e7444d4465c7634b165be9f059d03abe43c2211d55b5bef0884bb9c
MD5 99d7bc858d6a072855b8e3419bbb46c3
BLAKE2b-256 a716c7b4ec26f505d6e9512089ebba4b564f1ec06b47542bdf2ff6ffd6c98cd6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.4-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.4.4-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4283e5009b1b3e157c34f81b4c7faa1ec7f51df31b90c509ee8b69b216fa67b2
MD5 2d92f867b1dd225d28ac36bc6995a167
BLAKE2b-256 bdff476b24e4319bbf1b9bede0dd5dbef67049ecd1fff44ba18720f997ee60b8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab21c9775af174ec2c42c034afb9e554a8f829c180af433914234fdd2f6f907d
MD5 c2bc1350c023d173ddb0394a519e9746
BLAKE2b-256 921369826617c60da31d1faf77bd3cc7a72d6217d948bd653df70069b4b9cd6a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rnzb-0.4.4-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4bddb39a6c1475103d99bb6eddb0b9788324e7e6c1215d42ac8ddc6b6710a8c6
MD5 9f81bac187448f604ebe3f04535ea597
BLAKE2b-256 8af087f8ee1f862c7a8002ed595bf5a2e1cb551faffe5d588987d0b558a5ae92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.4-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.4.4-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3871e714a353aafba513787f5eab3fab4843d5eecfb12d11aac4f5649c98c3c2
MD5 94def9c2149788421792a5b43920178d
BLAKE2b-256 981d8a3c148d2b281172eed7f2fdfe9900624bf7c3e77fb701e74931b928cc0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0045a840bfab97f880e5e243f86271c4d3ea693f05fd91d592b55bb6c00e9a9
MD5 e6c8a019362ffd52b870a0d5d16b2954
BLAKE2b-256 06d9c08a82b8ad3a40723ee4d272a27494fc469bc7cf172bceebc9f045370728

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.4-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.4.4-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4d70216079b11480252684fc143b062ea906b0e7bcd2d014cbc5cf925af662a
MD5 c15aeef4066f714eb41aa740e2615487
BLAKE2b-256 ed8b2afa29f744eb002a2928bd3d4aba304d35a8c652a9e8232db76b7ae34bfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rnzb-0.4.4-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42e369f16cb88bebbbd3a7d63453ecf9ab663d388c558040d7f914f777d2b533
MD5 95655ba67e6eb628ff5115692466c3a1
BLAKE2b-256 e3689b1cac5091a093fdd1769d15ef1bfcccdd3ee80a58d58db2018b68168a17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.4-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.4.4-cp39-abi3-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1ef1c6ebc305fd1853ccc731eb35cca869aeffa1b5d6b751f36227a8bfb08634
MD5 6148b27aa198d8f936c839695fd75b3a
BLAKE2b-256 e38e1d919b62172e090d2f44009f3f0bc88632d65d551d7a920bc327caaff506

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rnzb-0.4.4-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 952.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.4.4-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19f3bfc79263d7eb2078e5816644c2d45f980adfb018f3e810fb7616c4db10ac
MD5 e5fe4b2582da39f424b21f0656da46af
BLAKE2b-256 751131389e8b0c9235ebe3239a61548e13555a1d4f7f55faf4c498b2682f2187

See more details on using hashes here.

Provenance

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