Skip to main content

ZBIC

This project provides a Python package that supports compression and decompression of the ZBIC algorithm that was first seen on the Nintendo Switch in version 22.0.0.

The zstd.c, zstd.h and zstd_errors.h files in this repository were copied from Atmosphere-NX.

Installation

The package can be installed with pip: pip3 install zbic.

API reference

def compress(data: bytes, level: int = 3) -> bytes: ...
def decompress(data: bytes) -> bytes: ...

Example usage

import zbic

data = b"Hello World!"
compressed = zbic.compress(data)
decompressed = zbic.decompress(compressed)
assert data == decompressed

Source code

https://github.com/kinnay/zbic

Release files for zbic 1.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for zbic 1.0.1
File Size Uploaded
zbic-1.0.1.tar.gz 8.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for zbic 1.0.1
File
zbic-1.0.1-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
zbic-1.0.1-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
zbic-1.0.1-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
zbic-1.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
zbic-1.0.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
zbic-1.0.1-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
zbic-1.0.1-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
zbic-1.0.1-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
zbic-1.0.1-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
zbic-1.0.1-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
zbic-1.0.1-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
zbic-1.0.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
zbic-1.0.1-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
zbic-1.0.1-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
zbic-1.0.1-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
zbic-1.0.1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
zbic-1.0.1-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
zbic-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
zbic-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
zbic-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
zbic-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
zbic-1.0.1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
zbic-1.0.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
zbic-1.0.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
zbic-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
zbic-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
zbic-1.0.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
zbic-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
zbic-1.0.1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
zbic-1.0.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
zbic-1.0.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
zbic-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
zbic-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
zbic-1.0.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
zbic-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
zbic-1.0.1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
zbic-1.0.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
zbic-1.0.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
zbic-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
zbic-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
zbic-1.0.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
zbic-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
zbic-1.0.1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
zbic-1.0.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
zbic-1.0.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
zbic-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
zbic-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
zbic-1.0.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
zbic-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
zbic-1.0.1-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
zbic-1.0.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
zbic-1.0.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
zbic-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
zbic-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
zbic-1.0.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
zbic-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
zbic-1.0.1-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
zbic-1.0.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
zbic-1.0.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
zbic-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
zbic-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
zbic-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
zbic-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
zbic-1.0.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
zbic-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 96.4 MB

Release files / zbic-1.0.1.tar.gz

Download URL zbic-1.0.1.tar.gz
Size 8.5 kB
Tags Source
SHA-256 checksum
How to use checksums
5b7e08bccef41a150e35999d3b17cdd7b510e54e8d93bd47506de64b354ea6cb
BLAKE2b-256 checksum
How to use checksums
161b8d187bb9a9a7857cdc22d1a4afeb10ed795a90020985f055021d31f3c2c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-win_arm64.whl

Download URL zbic-1.0.1-cp315-cp315t-win_arm64.whl
Size 138.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
aca61b30e82c8352ff1d883e27c2bfb5fdbf1c5cb0ea72af8e4caf29a9aa9003
BLAKE2b-256 checksum
How to use checksums
53e058c07dcb871b8b856ff15728a14808ecc07b061d5e629eee0dab39516382
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-win_amd64.whl

Download URL zbic-1.0.1-cp315-cp315t-win_amd64.whl
Size 160.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
2d1d0ecbefb9bd9439a15462724a4b89cefb1e47c83e57b9bab35a8def4321cb
BLAKE2b-256 checksum
How to use checksums
8e4516675cdd999a99c629e341f2d4f0671b9d1791031124eaf2a64cba2c6b9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-win32.whl

Download URL zbic-1.0.1-cp315-cp315t-win32.whl
Size 147.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
1fe3980fcecdd752e9e50cc5dc3d3ccac131848114c91c8c18b432f410fbd7c3
BLAKE2b-256 checksum
How to use checksums
1a67abb5f198157a28f3c298487b132ec363b9015925839daf2f3b3e6bffd329
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ad1ce036a23e3016db81cffd47e3d00aed18b80839e850371d10cb71d067fc7b
BLAKE2b-256 checksum
How to use checksums
67ee75d7bbcda793255c7a258537b96b4bd3a87b204d86bf54db8b84e5256f7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bdedfb5fd01c3ca64454f4d7435c54d195e587d3df4312cb0d983fa2f3cf2da1
BLAKE2b-256 checksum
How to use checksums
81e4e523de148f46a7123d6b9f19e01737206a2125d0f5401a2547c22bfec45f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4c20dd79885c813b3aad5ac6ee8fa739d18b4688da5beab4f89b266737aa76e9
BLAKE2b-256 checksum
How to use checksums
f31010106e874796dd68a7621b4ec690334f1b93db06f58f077946a806ced249
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5ab872871b206b6b0b9a98ccf3a24b40a81431f523e0554e34410a3a9285d775
BLAKE2b-256 checksum
How to use checksums
edd3a4aa3b7406f1d06e99f6e9859bf05cbd2e2ccfa5681127fea8265e2a354b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp315-cp315t-macosx_11_0_arm64.whl
Size 274.3 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
10d601ac9569b7d745a87520f2f63dc95e332ad63fd8dace1e53486b150f5ac8
BLAKE2b-256 checksum
How to use checksums
95108c55f092ad1d0a155999851eb7d8087b66cfec2804cfe7372d853796713e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL zbic-1.0.1-cp315-cp315t-macosx_10_15_x86_64.whl
Size 337.3 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
82ba64d558955f8e9657594c3dc19e9cb3c970a8338e4982fe0304f33a2539ee
BLAKE2b-256 checksum
How to use checksums
cc783971a154a3c48005d1a2550626b189dab5a00fdb1d1b1fd7675e881a87d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-win_arm64.whl

Download URL zbic-1.0.1-cp315-cp315-win_arm64.whl
Size 138.0 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
14931731c9c3cb1ec2d9a441c14cbb90d6600b7f0f979e47ac49bd4246d367ea
BLAKE2b-256 checksum
How to use checksums
1ad7d45e5a2acdfcb3d54dfdcbb21274af99b38745a6ddaf1c34db5a4caae7c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-win_amd64.whl

Download URL zbic-1.0.1-cp315-cp315-win_amd64.whl
Size 160.8 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
4bde3f61aff796ed2ffb39e3a770422b5b9da36468a7ec4c2f47145c688ac459
BLAKE2b-256 checksum
How to use checksums
adb26c10554f5f8e4d7c44bfa8c1bd96436286771490cb74894588cea4357f94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-win32.whl

Download URL zbic-1.0.1-cp315-cp315-win32.whl
Size 147.6 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
35232a99cdb41be4d17aef8c2b73723afed5b6414f2cc2c7ee647daeaa583347
BLAKE2b-256 checksum
How to use checksums
22c6982604718868ec80333c4b47a8ca516af71c4e388bce1a28dd900bc06db3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp315-cp315-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d407811c450e8bbb2f1fd69cbf6f7218a8544d96619e790542ec516711921479
BLAKE2b-256 checksum
How to use checksums
c6f4a622208268b9cedb04d9288717b0bedb9a5e0051b1a9f3767d743229f702
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp315-cp315-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e66b82a64a525c0c0d714da50621549b3673df86b0cfad2a901458450bd7515c
BLAKE2b-256 checksum
How to use checksums
1dfae5eda495e9c3c6ba65fd3a3a01758ed13508df263a7eeeead89a785cbc9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
fbc055d94ba900e37d34c985e94af86ecc4de649b92618a899811f16ee552719
BLAKE2b-256 checksum
How to use checksums
ac89a36b83183000706681fa3fb1482adbb3741a2bbaced0b8ee60df1b21d569
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d03fb522c6a2a8f72c86b2d6446eef289c8f314a601d79c89d9b8d2e695f81e7
BLAKE2b-256 checksum
How to use checksums
89e79ac7c29d46c40a91d3e52d3262435180368d737c65764f98981aab50bc49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp315-cp315-macosx_11_0_arm64.whl
Size 274.2 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a2daa79706877bc0da28abc58df969ddb6b66fe32bad30d1b262c85f7149ad59
BLAKE2b-256 checksum
How to use checksums
3fd0a0aba5aa126d1d1839cc185403a553bd7a80aa4b6741f120444e761fe418
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp315-cp315-macosx_10_15_x86_64.whl

Download URL zbic-1.0.1-cp315-cp315-macosx_10_15_x86_64.whl
Size 337.2 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
c84d4bf3159753f625aba94bd8ec8aa5e4eb640cba81975841e72089453356f4
BLAKE2b-256 checksum
How to use checksums
94bab7a71b45792a0c5e4d76686908def251110eb10052d0650d0fc1fca16c6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-win_arm64.whl

Download URL zbic-1.0.1-cp314-cp314t-win_arm64.whl
Size 138.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
2975d3d22dd55330b87cb592a7f7f7820484636c3118ecec116113c77fadfacf
BLAKE2b-256 checksum
How to use checksums
d6147ed298268709a0c96f593b02838331589bf50fc80e53670bcdf6738fd53d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-win_amd64.whl

Download URL zbic-1.0.1-cp314-cp314t-win_amd64.whl
Size 160.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
80c5dafbbbfce5fb1d299b47b6f9498b3a70912b3a9f4d5c017d429b37d9befa
BLAKE2b-256 checksum
How to use checksums
7a3b8290640239e77dfd71bdb99cc6a3443a6b3385520cfc6d74fb48babe01d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-win32.whl

Download URL zbic-1.0.1-cp314-cp314t-win32.whl
Size 147.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
ad155345d67d4e2770d7b29165c725058f656db4a045aaa3264a553d2c0ed966
BLAKE2b-256 checksum
How to use checksums
7cff1d47a9d1d9866589f210cc5c4401f01bce171f9af72572a215e300768b06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a41f8e6915a4eec8896ce000e59f78e6b2e8a802bc1b1852bf2f79db7145d0ee
BLAKE2b-256 checksum
How to use checksums
2db69187a9bc66288aca66112b1b8a0652eb20518039a6a7cd227b99cea44050
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
60cd03f477e4d039d7f660f50e9da8693e5731c059d2f1f4b923b8a4082d6d59
BLAKE2b-256 checksum
How to use checksums
41578db8ca07d989cb245c650bd954e46aa383f482b9befabf103be8cbdf3eaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4c3ce38e9073d1f1b19b55e2cb119e9277ab3cc0b534da362e95adb97ccd803a
BLAKE2b-256 checksum
How to use checksums
ad6edd52c47a1c09f70eb1b5e6afcbd799a670098a733f558564f6141cee88bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
bf3b61ffa53ef270272426b2a59438087fe40bfed57096959978b2024cf2b5a2
BLAKE2b-256 checksum
How to use checksums
89bed8cf96b81d1c0a0f02b84a91a3acabc8d3bc3848694dd89dd0bfe3af8c39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Size 273.9 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3ab9727ddec54041ada2b8f628481e017d3e1aa4b028e0565f94518e6f0e5984
BLAKE2b-256 checksum
How to use checksums
f667465fbab0e5b11790e2627b294799bdc2d4d0d956fb8a79da5392fef44cab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL zbic-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Size 337.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
3f9b393d6205fc72de8548ba77d4f48f214b9ecb3d271c337a7e149c79e3135c
BLAKE2b-256 checksum
How to use checksums
26e76876fc6be10732df421a6895c69d631b81215bb0b1f7610f12c00cc522c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-win_arm64.whl

Download URL zbic-1.0.1-cp314-cp314-win_arm64.whl
Size 138.0 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
51668136069d70c7e6f2dd9f7330abf84b2230b6d9dbcf8b20117ab1c0ca5e74
BLAKE2b-256 checksum
How to use checksums
cea78a0e3d16134c7eeae77d21e11a878a46fb76e18b2f2f7086d02babf37623
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-win_amd64.whl

Download URL zbic-1.0.1-cp314-cp314-win_amd64.whl
Size 160.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
fe7a233507a0e94b9a66207c6b9852cfb0c6d3f9e24a93e9e359ca6c32505b00
BLAKE2b-256 checksum
How to use checksums
db74929f6e5ad5ffb576bec23037a8b418ebe57add4831e5f337e630d695917e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-win32.whl

Download URL zbic-1.0.1-cp314-cp314-win32.whl
Size 147.6 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
3764063d6e3b37d1d8e41923279e67f1f9050dcd1ed1b0e8c8126e6f35359363
BLAKE2b-256 checksum
How to use checksums
b3144750e89ca4689d36e0dbd56f63dd15e152e55a613177c558aae4bb09be11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b71ead8895ab449e093e368961361c0a19470979eb7edb5aa9ec293bab1f7474
BLAKE2b-256 checksum
How to use checksums
fbd3e9f459aaa2ea3fea6c21147bbd6edbfadbebd9a2ce0b07009fff680d35c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f314cb5ae68e4f88127908c01bec931f319e8ecfd22bf5ebd28de669be4094ce
BLAKE2b-256 checksum
How to use checksums
e74e2474d9db361a40cdc6cb7b53f976590d2ee3ab745370838fec371f1da867
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2ea3759beb79e8e8d72e82b2ba16b797c7766564f66757009e3b7deb6b8452b5
BLAKE2b-256 checksum
How to use checksums
a6df89c2cdfe9383eba10cf938d7a0cb002a1ba28d6106e678b20c6223d215fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
46437526d22e3cbbfd3bc4c38e1e1406fc83d33becc0f1c7f94b9b776c675d3d
BLAKE2b-256 checksum
How to use checksums
ecd6efcb35582bfe0f0233aeaab65cd5eee4366daff215a91a2acce9f6b419d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Size 273.7 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ede55644a21d266fd3585d79f9c9701afa08cf5f3746610c44f4ccc4cd394d26
BLAKE2b-256 checksum
How to use checksums
66aa9703fd543a4d473b7af37d228369bd0998e1a6a56767548059a47d973deb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL zbic-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Size 337.2 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
0fb00d4f6d5b1f4c10b68fa7886655aad0eb3ea833fe007b3d0930f0a033f1c7
BLAKE2b-256 checksum
How to use checksums
f1f5ddea3e117c96f7738214e17a68b08d3e24b5742d3f7200d0e2d693c0f9d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-win_arm64.whl

Download URL zbic-1.0.1-cp313-cp313-win_arm64.whl
Size 133.4 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
4adb4f6c3386ae542a49e0e56bdd459ce34af9e9da941c457244a8a5928e538c
BLAKE2b-256 checksum
How to use checksums
63a959ab34bc225836df319c26ee34fa6d257f0628bf0ebaa1e8778513014591
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-win_amd64.whl

Download URL zbic-1.0.1-cp313-cp313-win_amd64.whl
Size 157.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
bd51ec78d04b9ee3ac6c32a175401b6e6cfd8f7abab4f4190ae5a648266f8320
BLAKE2b-256 checksum
How to use checksums
d5bae086dc23093c49f5c642527f0ecf756542ecefe962aae294c337ea0be1d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-win32.whl

Download URL zbic-1.0.1-cp313-cp313-win32.whl
Size 145.1 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
ebb575297da7153ee9047edd7131dd0c38252fa0896cb2a9d6140f113cfb648d
BLAKE2b-256 checksum
How to use checksums
80494c0e33ffe5bbfc6c2ec9028a357375828ba3cbfe34a75c3325fdeadfc764
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d229fcd1af6797d80c3a4e69126362875a10d8b75120a7ac0871998608814cc0
BLAKE2b-256 checksum
How to use checksums
bccb705c370da2bb7d39d11cc4e16ec5f77aee8ad3618ff794023af733e87fd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
741872c56db96ca4258fd2c2ba89abcd7f7def0e18a813d30dd57cd3608edacf
BLAKE2b-256 checksum
How to use checksums
d74e72d61c717c65e0ea57ce634c59f6870772ce3491be0696d73425a9322940
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
67ff13027c666dc1bbd132449cee02e2a7041e9d8957fce58430f3f5d3f4f371
BLAKE2b-256 checksum
How to use checksums
6a5d3a614e107879c2af7c64227de5675bbc1159da6b8cf45e5538aeb6623134
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
151ba4825e31b8ce9048c9801d7c799f77109691620eaf6954a3bd85e806e856
BLAKE2b-256 checksum
How to use checksums
85e3da250c3b2e655b61d9f5d46bdb33109e663aad6d7be4eed5dcf7f613a9cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Size 273.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d6873aec6eacc6e573f4631436effd8ca50c884a4f4d8993d8f67b4f58c81503
BLAKE2b-256 checksum
How to use checksums
979fb0ae2fa55978ade4bc710f83cd57fb12b6ca3473dcc9520f0ce080518ada
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL zbic-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 337.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
ae57b78c2718dd94b285f220465033905d7dae8e7c3fc38e071e0265007cc902
BLAKE2b-256 checksum
How to use checksums
55678774835385f8e3fcc6ce957dbe25f6a5586828a627b8f27e92cb51b5f636
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-win_arm64.whl

Download URL zbic-1.0.1-cp312-cp312-win_arm64.whl
Size 133.4 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
d50218f90d180082b60c6fe72468282223cc2a2410ba3980010d51874f5b1d16
BLAKE2b-256 checksum
How to use checksums
8ad7bcfa8c77d823f77fe29fbc2fe8440dfdb80e4c94230b8eef207bcf0879ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-win_amd64.whl

Download URL zbic-1.0.1-cp312-cp312-win_amd64.whl
Size 157.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
75781724f477db377d556a6fcbcf0490c83e8a6581a945cfa97c1b79f06d3ed4
BLAKE2b-256 checksum
How to use checksums
ec97d84b35bb54fa8a924cd652271efe2426a966e58d64d6b241c7b7f3a0fc70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-win32.whl

Download URL zbic-1.0.1-cp312-cp312-win32.whl
Size 145.1 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
ae6101701d9fc7ce04c1b148d0ad394ea0c1da42cc74ef10f6fb3c7eed3c1cf7
BLAKE2b-256 checksum
How to use checksums
0ef5fb9718fe69e069476ae5f947a85d4f6defece18f222a188bd8939e4b79d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9129f33dc00a69112584fced350dc2d3941333628cf0260bfb4bdc675b723a5d
BLAKE2b-256 checksum
How to use checksums
452adf9964e60653554b54774837e95cfd79a8b245c380870eb78d37e01bfc85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1232325a2a591fc6286b1e271f2eefd2e5969f2d97d44f9672dd143b30458f9a
BLAKE2b-256 checksum
How to use checksums
43603aa7bd24ce72b52f1deba7a0e56a8bfd1b6afca5e79168705e0ede5129e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
61bab8d96515fa4187fc3412cd2a19d0701b943805dda95ff1edfaab0027558e
BLAKE2b-256 checksum
How to use checksums
aceef8f3c6a345cb4269d5fcf1c0b9aea6a036d64085a7e2f80c7aee160d25c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5f944abdaa0bf51db343e5313006f76c0bc549a9379c12557970cda1990969ae
BLAKE2b-256 checksum
How to use checksums
b078e3f471723d603a40fa08969572162f6e237d01a8b22a0516a07e60ad344b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Size 273.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fa717b491ac05445ee047245d3bf121f4e1a67b979d0848c1bc52e43a2a447cc
BLAKE2b-256 checksum
How to use checksums
fa93e0998bc8ecc1885e773b37519bf8869e827e66b5bb364a79283d0bfb4cc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL zbic-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 337.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
4a2d681670bbb8517bf38d0e0652200d7f7ec9414226100d3fcd21e55ccbc3ee
BLAKE2b-256 checksum
How to use checksums
ce0d7625ab25a44b7028e1c6186bd700cbdaf5c5ec2c9ce4e8927e811f8b968c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-win_arm64.whl

Download URL zbic-1.0.1-cp311-cp311-win_arm64.whl
Size 133.4 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
b1db7d7b9116ab7985340cca5c47adc11e1ad3bd8afd3ea51bb6ca089bbc7e20
BLAKE2b-256 checksum
How to use checksums
a12258d605c27c6f1579518cf9f1f70566b8a81662e7d9024e6dec88a9964928
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-win_amd64.whl

Download URL zbic-1.0.1-cp311-cp311-win_amd64.whl
Size 157.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d898def3a590b2efae1a40bac8e3f33995598f49a1b64f56cffc4d3998954794
BLAKE2b-256 checksum
How to use checksums
3def348d6381424b861d0c0a503f656f48f16024a66674deaed55ee4710cf1c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-win32.whl

Download URL zbic-1.0.1-cp311-cp311-win32.whl
Size 145.1 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
c2eb2776891b80f129f2be99b6b9dba5e68f7ecf9281818df4169b27fa296ffc
BLAKE2b-256 checksum
How to use checksums
faf4b61a30991a7082f2a3f4a7de77b5d22ee17611091d41e75af13aa631f53a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
60530a4d939c15cac2a67c663d9af4522c9e35691d1834fbd1a2e1fb4d703a16
BLAKE2b-256 checksum
How to use checksums
b543680eccdf2ced0d2f3bf592d0c1bd8d47db72071878222e51c2e3dbf57e5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7f0bf1b9cc6d937fc31e86a203cd52e056caae6a81ae42fd2aa2b88d870670ec
BLAKE2b-256 checksum
How to use checksums
847e210a163f18c9f3492800169fe0db46040add24b28594f614d52626c5eb32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b32f20261beab41bac6699d38bd0944ac20e40f5d19245653d92b4fe3e6d8397
BLAKE2b-256 checksum
How to use checksums
53460b684239fb09b4299e103d415f684a6cb9796ddbd3bc66fc0727df3bff63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0941fe619dbd86fea0e1bd96288710815100d7754c1ef47ac068ae378cf159f7
BLAKE2b-256 checksum
How to use checksums
58affa61f929069be506f2c3d18d93e8e09d2f42b71437bb9586426eb5db3d93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Size 274.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f1f052bfcf6c745a884e4985695c60a4b2b61becf8b31a4646bc1f1ede66b36c
BLAKE2b-256 checksum
How to use checksums
61b60837a286faed6863ec36ab6d0262a5b97adae6e8bd12426c3bc826e0b2cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL zbic-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 337.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
467a78b282178155b23638bb36bfd22b615ad16a84c1c2213a0d702f339cbfcc
BLAKE2b-256 checksum
How to use checksums
4cded2afc823688770d073bb5d3909990b5e3691410bbdbbf50d1def7588241d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-win_arm64.whl

Download URL zbic-1.0.1-cp310-cp310-win_arm64.whl
Size 133.4 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
d798d652bc5fb8579d5d7cc821ebcb327b3ac1a1044c3761773d8f38776eaafb
BLAKE2b-256 checksum
How to use checksums
2d9bbac6b2b649273b91293c85b6b93b966e7a3093ccc9bbe49ef2333e7fe5da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-win_amd64.whl

Download URL zbic-1.0.1-cp310-cp310-win_amd64.whl
Size 157.4 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6c6d298abe8fdd059ce956ac2bd18b27bb3b896dfe4c4cf635f0920c5bab1ce1
BLAKE2b-256 checksum
How to use checksums
3edbbd9732e3ccf808c90e42f290d0eb0c783303620304c4134b24e9a8d98805
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-win32.whl

Download URL zbic-1.0.1-cp310-cp310-win32.whl
Size 145.1 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
6606344329a91e83f500c2b64fc8933182bf129e9e9dd897220327ee58386044
BLAKE2b-256 checksum
How to use checksums
7bb53692888e1cd361268aaf0b3eb2ee2a3bc6788b41a2daa9e34fdffb86c7e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
178c4bc88988c7b318a79b7170f08ba48a39ded6a694952b2598fa6d869351ee
BLAKE2b-256 checksum
How to use checksums
c71937d1d8d342638f9e1eabbd97c48ec1d97d775253a0a63c0157e3989e58f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0225a09f3feec2e5985eaaa4706e56748f754f557309f04fafbaac25af1da4d5
BLAKE2b-256 checksum
How to use checksums
d0f75a733b1a79c7ec3e0f2ed1f78e369eb086816ff1ac0dfa68c3854af96cb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4223118411857427313cfb38ab92e58fd0da4feb66073d4d242e5d99680120f7
BLAKE2b-256 checksum
How to use checksums
828e164caf1344d892b208b2eb888cdf9aa3029b3e601354f0a1befe0719b0cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b26e166e34a9df6573f81ad0eabeee63f3b247c459d70adf922dd5b96c81d3a4
BLAKE2b-256 checksum
How to use checksums
ceb9650e252a4377a2feee1c63f3fae991fdf52448e3f92f5cc92abfb6fea8b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Size 274.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
311438adc6983725d713de3de02dce5fde94e7cc8551e4c4f9c8908e6f74b74a
BLAKE2b-256 checksum
How to use checksums
4df9df01d4a7a955a446fe93a1e5a77dc59737a65b943490f4dd2b7b654290bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL zbic-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 337.4 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0ba9ae151c47d4b1ef5458b84f6a587f77bb3020bfbc00b297633d78cbfcaf1d
BLAKE2b-256 checksum
How to use checksums
f8006c34b94f18e980be36ee7df1a1ebc8f5bf03d89adce00568d9a7754db56a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-win_arm64.whl

Download URL zbic-1.0.1-cp39-cp39-win_arm64.whl
Size 133.4 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
03eb8a898f2f006c447636bcdbcf221da29126686ae5d95d39a0f4c4c3333d56
BLAKE2b-256 checksum
How to use checksums
904621d1e21060ecf981b271971c249a1dd1d446029f3ac9c24603d8f3547bfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-win_amd64.whl

Download URL zbic-1.0.1-cp39-cp39-win_amd64.whl
Size 157.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
46943a294736f863f51ca47b53555a0fcba7ee56309f62167b599fe30e6d2d25
BLAKE2b-256 checksum
How to use checksums
f56434593224c5375a4b4326176f71c1f08c15c2f3f684b1a915dc7e96c62e87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-win32.whl

Download URL zbic-1.0.1-cp39-cp39-win32.whl
Size 145.1 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
95aaeace96bdd55872f8b340f157d220a9d9aa19ab5e4b980bede6ae94a52b51
BLAKE2b-256 checksum
How to use checksums
dbfcce6433dce48be97e5709d28e9d720b6be0fde4792dd5adbed3ce2e700f85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL zbic-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ccd6afa2d340ef2e5385645d4e380aa7cc6347c66d58296adb73f89819c945f2
BLAKE2b-256 checksum
How to use checksums
d49624891ee980391aa0743a3b8e32813f3a7353e2f5abebe1379afdeefb5a47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL zbic-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Size 2.3 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bb57cecbc33b394c872b46756948f59e7ebbff319d8dbef82525d4c5dd41fa74
BLAKE2b-256 checksum
How to use checksums
981146113233a52673ae8139b9db8ef0ac09b92f4bb3a355589ebd7dd8855a27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL zbic-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.6 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5aa23f5c800b453a8fc7f1a751eb67805cb51e55a56f5b0a3ffeb353e8016d5c
BLAKE2b-256 checksum
How to use checksums
30b968d9efbde090b87938f6547429a8b978aa63ab7e4bbc9e72dd9f7e924419
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL zbic-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2a9ddc26378bbc413a637dc2fbf6d81b7764d254b2a6b7a7e192fb24bd88a837
BLAKE2b-256 checksum
How to use checksums
2a30ab1e06b3c1ba4063c25bf29c0fdfa469a1ece21c3c702383d20fec76be55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL zbic-1.0.1-cp39-cp39-macosx_11_0_arm64.whl
Size 274.4 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
acb9b851c129703c12aa6186f303e5840844bf6e2a41f640171585c9fef8d288
BLAKE2b-256 checksum
How to use checksums
2375be0f96f6d1a18418d116160297c5534aec79ed97e609dbdc94cf0ceba423
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release files / zbic-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL zbic-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 337.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0a02c1dad3cb4ccea0aaf683888a2ed6897d74be0c56c8b5a934a47fe4d23a8b
BLAKE2b-256 checksum
How to use checksums
39b231e47e8866fecaba37086ef41bd91c54709df7f6f191278c07a054f95359
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 10, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.0.1 This release

82 release files

1.0.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page