Skip to main content

djvu-rs Python bindings

Python bindings for djvu-rs, a pure-Rust DjVu decoder and encoder. The bindings cover reading and export: open documents, render pages (to PIL or numpy), extract the text layer, and convert a whole document to PDF, EPUB, CBZ or TIFF.

Encode and document mutation are not exposed here — use the Rust crate or the djvu CLI. See docs/packaging.md for the release contract.

Install

pip install djvu-rs

Wheels are published for manylinux/musllinux, macOS, and Windows (CPython 3.9–3.13). The package version matches the djvu-rs crate version.

Build from source

Requires a Rust toolchain (see repository rust-version) and maturin:

pip install ./djvu-py
# or, for development:
pip install maturin
cd djvu-py && maturin develop --release

Version policy

The Python package follows the Rust crate version: maturin reads the version from djvu-py/Cargo.toml, which must match the workspace crate. There is no separate Python release train.

Typed errors

Exception Meaning
djvu_rs.Error Base class
djvu_rs.DecodeError Parse / decode / render failure
djvu_rs.IoError Filesystem failure from Document.open
djvu_rs.ExportError PDF / EPUB / CBZ / TIFF conversion failure
djvu_rs.PageIndexError Out-of-range page index (also an IndexError)

Usage

import djvu_rs as djvu

doc = djvu.Document.open('scan.djvu')
print(f'{doc.page_count()} pages')

page = doc.page(0)
print(f'{page.width}x{page.height} @ {page.dpi} dpi')

# Render to PIL Image
img = page.render(dpi=150).to_pil()
img.save('page.png')

# Render to numpy array
arr = page.render(dpi=150).to_numpy()
print(arr.shape)  # (height, width, 4)

# Extract text
text = page.text()
if text:
    print(text)

Export

Every format has two forms. to_x() returns the bytes; write_x(path) streams the same output into a file and holds only one page at a time. Use write_x for a long book. Both release the GIL for the whole conversion.

doc = djvu.Document.open('scan.djvu')

# PDF with an invisible text layer, the bookmarks and the links.
doc.write_pdf('scan.pdf', dpi=300, jpeg_quality=85)
pdf_bytes = doc.to_pdf()                       # same output, in memory

# EPUB 3.
doc.write_epub('scan.epub', title='Scan', author='Nobody', dpi=150)

# CBZ: one PNG per page. `pages` picks a subset, 0-based.
doc.write_cbz('scan.cbz', dpi=200, pages=[0, 1, 2])

# Multi-page TIFF. 'bilevel' with 'g4' is the archival choice for scans.
doc.write_tiff('scan.tiff', mode='bilevel', bilevel_compression='g4')
Method Main arguments
to_pdf / write_pdf dpi=150, jpeg_quality=80, adaptive=False, ccitt_g4=False, mrc=False
to_epub / write_epub dpi=150, title, author, language='en', modified=None, reflowable_text=False, jpeg_quality=None, adaptive=False
to_cbz / write_cbz dpi=150, rotation=0, pages=None
to_tiff / write_tiff mode='color', scale=1.0, bilevel_compression='deflate'

dpi=0 in to_pdf means the page's own resolution — the largest and slowest output. jpeg_quality=None gives lossless page images and larger files. adaptive=True encodes each page both ways and keeps the smaller one.

Release files for djvu-rs 0.33.0

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

Source distribution (sdist)

Source distribution for djvu-rs 0.33.0
File Size Uploaded
djvu_rs-0.33.0.tar.gz 2.3 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for djvu-rs 0.33.0
File
djvu_rs-0.33.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
djvu_rs-0.33.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
djvu_rs-0.33.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
djvu_rs-0.33.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
djvu_rs-0.33.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
djvu_rs-0.33.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
djvu_rs-0.33.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
djvu_rs-0.33.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
djvu_rs-0.33.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
djvu_rs-0.33.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
djvu_rs-0.33.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
djvu_rs-0.33.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
djvu_rs-0.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
djvu_rs-0.33.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
djvu_rs-0.33.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
djvu_rs-0.33.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
djvu_rs-0.33.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
djvu_rs-0.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
djvu_rs-0.33.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
djvu_rs-0.33.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
djvu_rs-0.33.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
djvu_rs-0.33.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
djvu_rs-0.33.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
djvu_rs-0.33.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
djvu_rs-0.33.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
djvu_rs-0.33.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
djvu_rs-0.33.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
djvu_rs-0.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
djvu_rs-0.33.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
djvu_rs-0.33.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
djvu_rs-0.33.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
djvu_rs-0.33.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
djvu_rs-0.33.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
djvu_rs-0.33.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.33.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
djvu_rs-0.33.0-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details

Total release size: 52.3 MB

Release files / djvu_rs-0.33.0.tar.gz

Download URL djvu_rs-0.33.0.tar.gz
Size 2.3 MB
Tags Source
SHA-256 checksum
How to use checksums
3c3b3b8d85ac3cad18f3cd919ab50b662e4ea5373eb60d9c2abc589c102f2664
BLAKE2b-256 checksum
How to use checksums
4592eb1494f60f7d53a02ee76175985a6adca6200c1826061511eddf05a1bd4b
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.33.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
177364d06536adcbe6cef5119904abdd071247f1ab246d11fa344a63dff458e3
BLAKE2b-256 checksum
How to use checksums
9d4ace180b16461813c1e945437467c4f5d8e0dce1f7717f0552679b59bd02f7
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.33.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c19978616fcade40ef251fb4b5ed16a93b67fd49bd550b69b5114fcaf9c65f22
BLAKE2b-256 checksum
How to use checksums
9f4b2469fd37718e39f3f9f85cc7a8a37df16a6b0e9e9c6793691844e86da0cf
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 905.5 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ef2a302d749adfdc4076413f5a49f4bcb6f5b4b7bfd424346a47a2baf4c8830c
BLAKE2b-256 checksum
How to use checksums
5ede1d1e898b804c53ca65c28402dcfb790f488068b675d18bf9d7db621da60f
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 872.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c615989e3f51eaafbea23a6393749314e1ff11b3195fbada05c0f0ce6fa936b3
BLAKE2b-256 checksum
How to use checksums
6127944dfafff741abf944dfd642882492eee22fb42db7927086d249af899ad0
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 901.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1d17b3cde70ea2bcb21a1d299df91e4713694e7fbb8014d6ae1b03ecc5319b5e
BLAKE2b-256 checksum
How to use checksums
b239fd0819a9d7cbe9b90fe520c316f7aee97985b0973af6dc5c16c593c7b6d6
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 865.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
269b79ed40043920c72827fb0ab32b2f2978a84a7d1e97a54d5dd94b0bbcf777
BLAKE2b-256 checksum
How to use checksums
83fead7a319c1396fc12b44abc3c7a27063033e8c9ded65b5fd85e97e2fe6b8d
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 902.3 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f3bbe196f31dadb676c5d9665df0c1b3e118576c2e7b31b2ad7aee19346117a9
BLAKE2b-256 checksum
How to use checksums
cd9583a5ea77511219f368427cb15f314adfaec1bed853103d89b87400be20be
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 867.3 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
110afda15e4badb6d8c50ae28676823fed41fa9c5855fc59bc4da5f266fb9f66
BLAKE2b-256 checksum
How to use checksums
eb378ecea4f153166a7742429bf884f2181cc6580e1de315d475963a383ca857
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.33.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5324de7b66c8efb8401349d73137825ee461c8c64c034d6048478229b96642ad
BLAKE2b-256 checksum
How to use checksums
b50e793ac0409aedb22b9c682bcb3732572a5d5d41ca440babb436e859e35f99
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.33.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
04a34c69753ca34f5d731b241e593c52661327e464165ab11220215eebf4948a
BLAKE2b-256 checksum
How to use checksums
eccd5d3618e668e8a0c547eeeabc9434e4fa38d5c0d84e6dda552a1fc1afa8e1
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 901.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2b5442b1ec769be13ebbdda2344a3923ab0cd2b4522dcf4e30cba438d0cce030
BLAKE2b-256 checksum
How to use checksums
7b64521fc56d8f5f10fb5ae360dda60bc6eda4b2fadb14a3290952904d759d7c
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 865.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
469af2619200dd9a854507d964cd4f0056a77b1cfd3fa7738751268c243b9031
BLAKE2b-256 checksum
How to use checksums
cf103e927417236dc0b2307caaf4ca352d063736aeabc4ea1b61b2dd73cd8338
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314-win_amd64.whl

Download URL djvu_rs-0.33.0-cp314-cp314-win_amd64.whl
Size 788.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
0da875da5cdac2d06568fced90f33dd104b0b9292238ddebbecbd984e63ebbdf
BLAKE2b-256 checksum
How to use checksums
591f846a16e60af3804539b6969a2858f95bf5e09be18b6de42703a2901876bc
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.33.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4934f3c33acc8a3af1ef1f3ef3aaf8bf5dfa289d40daf80c861597467805b300
BLAKE2b-256 checksum
How to use checksums
0fda0be09f883839f45912f9826678af878bef1141254b9b5d81ccd61db5c576
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.33.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b36ac32dc842fcabfa7e7b9293d5f2dd58875debd8e52669d03b65e98b7499aa
BLAKE2b-256 checksum
How to use checksums
92750bb0f2f453a08e52bae896e36db55a0b972316acaa76de4c727077e2a332
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 902.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1ecda9aa8efe0a76cbf2f6340ec6ac6f0b979e64d59d6e6a775bdf8ee5905901
BLAKE2b-256 checksum
How to use checksums
6810cbab65959449eacf18f9928ff454dd81d3192eb030cc492501cdb6ebbddf
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 867.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
179c79f9b9bdcc1c5e450b0d93e5795b48e2482a8399e20f4e12936c4ce6ec60
BLAKE2b-256 checksum
How to use checksums
01b91a82f11149f15236ff5dd014eae61ee9ef9baa572b271a7893437be83caa
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL djvu_rs-0.33.0-cp314-cp314-macosx_11_0_arm64.whl
Size 831.9 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8afbde31192ee3237813f88338a14b37d39f631eeb34c8fa4872aeaec647202e
BLAKE2b-256 checksum
How to use checksums
2eef4fc3f14f926ad201322b9877ab9c915fe95edc1f2a3edbe422562c8bf6e4
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp314-cp314-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.33.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 869.5 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
93714915e1bc0effcf8fc0929def3b47b1f13f0faf7adae0310869b990b1c74f
BLAKE2b-256 checksum
How to use checksums
94ba59a5748803a7aefd02a191ed809e5fafa548a41118edf35e11a3b96ad9a1
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp313-cp313-win_amd64.whl

Download URL djvu_rs-0.33.0-cp313-cp313-win_amd64.whl
Size 790.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
6fb1ca2085c235b48a6668bbf63964cfc07ebd7f69811b426a999262daf6ee9a
BLAKE2b-256 checksum
How to use checksums
ea902558c7f0e81d9b0c8d18042e6849855e840541585d088536da302df7bc8b
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.33.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7e1a668a4c7d083dc0e41f12a0ffbd368b7d34245620bd367d4f0e7f8220b72a
BLAKE2b-256 checksum
How to use checksums
99ac65c0535ca63ff849b5aed72b215c77885fb2329c93b348a839f5afc3b215
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.33.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5c411b0c72ed6c852e653c1f4d81615929bc3f8c273d7c15765f3c2ab294bd4c
BLAKE2b-256 checksum
How to use checksums
fbee70fed2a51a3cc42150d5c7cd461ab19ad1b69ecd63a5fe428ea95067c018
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 902.9 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4f9d06a985e9ab551847ac41314867846d2fbcf1fd52b09f6093adbc9868115c
BLAKE2b-256 checksum
How to use checksums
0f85c62bf0033eefcfaaff3994f58f8aaf11f20bf66f3ac4c7bcd47b3020df55
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 868.0 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ef0d34b00c99ccb3c21383425d1fa4d485125e619305c56f9e046598b1b761cc
BLAKE2b-256 checksum
How to use checksums
16b50cd0b762d8a4970f607ca9b5acc5751c0efa7430ba7e66ba224d450bdbae
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL djvu_rs-0.33.0-cp313-cp313-macosx_11_0_arm64.whl
Size 832.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e22ca0ef55a3369f14e594cce0209ebb1bda635675e9420bc19ff9991a74b13e
BLAKE2b-256 checksum
How to use checksums
a0ba8491367a8df08029b329dd0e37f0623027c5d4ac8a0a0889c9884bec7b5c
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.33.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 870.0 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
e5972956d1c16431c32ece3cd41e62b8fb924ec609086cdf8568a86c9e4a3031
BLAKE2b-256 checksum
How to use checksums
bb2fbd44d69db3a29ab4a4405d195c72f2d78752f4306375b69fc0e769ece3ee
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp312-cp312-win_amd64.whl

Download URL djvu_rs-0.33.0-cp312-cp312-win_amd64.whl
Size 790.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
90ca7c58020bac14d653a7fffdcf626dcbc76a2d7c17a8fc244232a12b5b4bea
BLAKE2b-256 checksum
How to use checksums
92818c33264ba690add6b6ef77e894833fce4bc1a56e7778edae911e9231a44f
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.33.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
692d81d58352562458689b625edb1ebd32d474ac7f17cb4a2c90f90e484fcb2d
BLAKE2b-256 checksum
How to use checksums
da11f8a9e08c1d1e5528e164a6d92ba8b35f9704fd787cea9de8ea7cded631da
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.33.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ab35c2d4bf1e6839d2e7d7907adbace25b396ff4aaf1e770f2d7087da7825f3d
BLAKE2b-256 checksum
How to use checksums
aeab2e6a37abfbd38116998ac2877aa2d208ef0b825e01beba395826cd7546f7
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 903.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4543a28b379ee653c1aad02fdc5a4a7ea25ada340aefda9ada193dadb931d74f
BLAKE2b-256 checksum
How to use checksums
6d60547f172e2b59754969202553263f337d4c702cc6d717562b345d041f010e
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 868.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6d24767344e047c127bed0f718fb964b5e2fb42a65a8e95bb5dcbccd7dcce385
BLAKE2b-256 checksum
How to use checksums
0c8f0a64bf37303a1d9b8e9d4d66185b8c1a75d2d1e2db9f7794c223cd38e7b2
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL djvu_rs-0.33.0-cp312-cp312-macosx_11_0_arm64.whl
Size 832.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bfb01769b024804cbe2a38cdf55b4f3b7edeb35b0840a16b3a260c00273f5cd7
BLAKE2b-256 checksum
How to use checksums
a181088b7983f72ec3f6ec71f53fecb5a6cb227f4c2b6342e72659b42b57a793
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.33.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 870.2 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8e404563a4d68dbc6e1f9b176b73318f4ccd0faeb06d28ede905b00890b870be
BLAKE2b-256 checksum
How to use checksums
c5e2337d59aa7e6c606ae66382e463d9f7765f8ab34c0fea7a8c35596a7deb78
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp311-cp311-win_amd64.whl

Download URL djvu_rs-0.33.0-cp311-cp311-win_amd64.whl
Size 793.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
13089e09c10b79bbf5d290de939e791bd86078792724958d5baf33742d99fce4
BLAKE2b-256 checksum
How to use checksums
4cfafb4a06610995c448aafec2fb41322944be199a7a6bcd0f3cf35dc508b989
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.33.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e4ef1f9fb9de4ba79be5dc97e6790a9947ddce1a532651a6ce3bc13713a3d0bb
BLAKE2b-256 checksum
How to use checksums
b701827e2f92a165d07ed47d79d55d5b58ed9613f96331ded178814810e395d1
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.33.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3a9e0f4933cb0e99f291bc91777a9d00db8f5070d12f5641bb4cf313ff1b303d
BLAKE2b-256 checksum
How to use checksums
ff299460bc9d7fffb8da918ea5e2ad2048c262bb549c1ec5bcaa8215bab6aa98
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 904.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1c4c6db7b7a53c6fe3d1462c67086823ae4c7576fb3d0b37f4484342f3318ab7
BLAKE2b-256 checksum
How to use checksums
8c7df0c5f3d8bab80ebb00eab884614bd107d6d78c2815d2d70add6a823a55ae
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 870.7 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3eacfc17f9e96f9b36d5feec75fdf8135f78485c430212abdad1116f5af5db38
BLAKE2b-256 checksum
How to use checksums
4bc105a30f9e531bfbdeafed204c8af9632cc9dc7bf7830db8e0484df9c9cdba
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL djvu_rs-0.33.0-cp311-cp311-macosx_11_0_arm64.whl
Size 835.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b49e7e089e7c251c5b9285d76a2fbe89d0102a9e0e01383fe426d1151b1116e3
BLAKE2b-256 checksum
How to use checksums
ccf3d1de9498d2f96ce2e1f8a73f551d1f7e448b60979296ee26077669357b47
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.33.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 865.4 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
bfa4cee80afec1a4f8066bd2b992f126053393acf3bf14c138a6510e9ed73997
BLAKE2b-256 checksum
How to use checksums
5bbb8c1268d66096aa84bf94960f6591b709c501840e06e908aa7842951b3464
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp310-cp310-win_amd64.whl

Download URL djvu_rs-0.33.0-cp310-cp310-win_amd64.whl
Size 793.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5604eae45bcc96e6fc9cada2b0929ab5ef4331fc4971b0402cef2ef5e95d218c
BLAKE2b-256 checksum
How to use checksums
d2feeeea46b35f10f0d7275d9e8df360d3838286225c0d8c245393722eaccdf9
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.33.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
eee00be704bcce16631f4cf3464057bcff612c9c69fdaf776cae3ebfa8b6a0fb
BLAKE2b-256 checksum
How to use checksums
70ef018bcc8ca8e8df2a947ded9e71e22429409b367e653f5a81adf031a94d96
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.33.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.0 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
29f81f0d095f63c28ffce405013a2abb078ad78676411d8fec7f0688cf37f816
BLAKE2b-256 checksum
How to use checksums
336b6fa275d728aa5b59ce2608a1a4f8276bc3c23bc0431a273582a8aef5bcfa
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 904.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
45a87645fe50baa72f61997dbae869df8175e85938bd2b87558e821af3d76063
BLAKE2b-256 checksum
How to use checksums
75d74fa451495f8ed8d7ac8851a88f21d6f988baebb24a5da2fe53a14ce4ee4d
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 871.9 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ec3dcbad2631d382029cee0c08c6f92bae56d5f9e6097079dd05d57d77311100
BLAKE2b-256 checksum
How to use checksums
c35981d78ac719f1673c9fcd7d6a7e1eaa9e482df4cc45f8f96c1576abc8ab85
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL djvu_rs-0.33.0-cp310-cp310-macosx_11_0_arm64.whl
Size 836.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e65757712a32926b6180747a8c9f9f719ffc1f37e622d890533b8d06c7f74d25
BLAKE2b-256 checksum
How to use checksums
b805e4761b962812a0541e8003e4d0a7db573d4d8a0de0ec479120adcc9272d6
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.33.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 866.1 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
98d8898a3e6bf79beaa29ccb13a85e0fd636240c3a7d2653d86177114d2883db
BLAKE2b-256 checksum
How to use checksums
6dc65b17e7cf0c03c46750842c54855098e1d5898919217436938e187cfccf20
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp39-cp39-win_amd64.whl

Download URL djvu_rs-0.33.0-cp39-cp39-win_amd64.whl
Size 797.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
acfb3e7384a0498406768240ba23a78f8b86079e072e4f6126316130a2850b3b
BLAKE2b-256 checksum
How to use checksums
71e468f453ffc2d814dd7e5bc7ece6d9a29bceeb46110534e00c4cce2e77b4e5
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.33.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8e8a5f9109918409b7e9685b8dbd1ff7d89981f1fc9359e42ef3f6330826f783
BLAKE2b-256 checksum
How to use checksums
bbea0242414acf7bcdb3c673ea9405b02a2fa510f7694ae01b9d0ffc6c2b24b6
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.33.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0588f46c1bcc409be2872030a678f74bf828657a9a8bcd00ba7ec2fdf47b5ced
BLAKE2b-256 checksum
How to use checksums
3579f12820ca1af7857efaae711d15574bc479c8def1f9ac39457622bea5f2bc
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.33.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 907.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c62fc664c1187464c0af8193480373ead5eae911857fef9090db9fec2ce8279f
BLAKE2b-256 checksum
How to use checksums
5a9036e5ac5e6431955382412eeeeafc7b29217749d71b405eb1c923f193278b
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.33.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 875.1 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e1120bc1e91c0fdd80370926582087f0d3f1de050836ca2c237db890a4562b26
BLAKE2b-256 checksum
How to use checksums
d51757160d694cddec0e9b32e4aba95a2241e7e5b833eb0b44b73b6479b44c30
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL djvu_rs-0.33.0-cp39-cp39-macosx_11_0_arm64.whl
Size 838.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
03aced2ae295014f042f8415adff4b94f5b5d691edda5917444bbc78d0e65a07
BLAKE2b-256 checksum
How to use checksums
e11be6bc610c3ea9fc66bc0832da5cb29dfbbac8859d66cecdd26daeca0fbd19
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 Sep 18, 2026.

Transparency log

Release files / djvu_rs-0.33.0-cp39-cp39-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.33.0-cp39-cp39-macosx_10_12_x86_64.whl
Size 868.7 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
fa42c4a950b3b78a5135e7b56868311025dc5b5dbe712599b55798fb8e113ed6
BLAKE2b-256 checksum
How to use checksums
ed2e35d158249ee864a802a87b6582d1dd79ac418505f655bd1ada02bca78dd3
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 Sep 18, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.33.0 This release

55 release files

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