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.35.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 djvu-rs 0.35.1
File Size Uploaded
djvu_rs-0.35.1.tar.gz 2.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for djvu-rs 0.35.1
File
djvu_rs-0.35.1-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.35.1-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.35.1-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.35.1-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.35.1-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.35.1-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.35.1-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.35.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.35.1-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.35.1-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
djvu_rs-0.35.1-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.35.1-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.35.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
djvu_rs-0.35.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
djvu_rs-0.35.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
djvu_rs-0.35.1-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.35.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.35.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
djvu_rs-0.35.1-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
djvu_rs-0.35.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
djvu_rs-0.35.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
djvu_rs-0.35.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
djvu_rs-0.35.1-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.35.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.35.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
djvu_rs-0.35.1-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
djvu_rs-0.35.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
djvu_rs-0.35.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
djvu_rs-0.35.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
djvu_rs-0.35.1-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.35.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.35.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
djvu_rs-0.35.1-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
djvu_rs-0.35.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
djvu_rs-0.35.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
djvu_rs-0.35.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
djvu_rs-0.35.1-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.35.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.35.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
djvu_rs-0.35.1-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
djvu_rs-0.35.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
djvu_rs-0.35.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
djvu_rs-0.35.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
djvu_rs-0.35.1-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.35.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.35.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
djvu_rs-0.35.1-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
djvu_rs-0.35.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
djvu_rs-0.35.1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
djvu_rs-0.35.1-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
djvu_rs-0.35.1-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.35.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
djvu_rs-0.35.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
djvu_rs-0.35.1-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details

Total release size: 53.4 MB

Release files / djvu_rs-0.35.1.tar.gz

Download URL djvu_rs-0.35.1.tar.gz
Size 2.4 MB
Tags Source
SHA-256 checksum
How to use checksums
59b590f60fc3fb28c49eb3d7e9fb18e24945a15afccf866e284195de0c5d38c6
BLAKE2b-256 checksum
How to use checksums
86ac6fd6b794b6b3003a761b165e182a76dec9d99fc25445d34fb4147d73bb24
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
4bd6a304f7f0062890639ac8cb0c35155cfe661f50df84e2df779ac7a79e5459
BLAKE2b-256 checksum
How to use checksums
2c5f1eff4c946d979f59bf0f3856247720542554aa4a996cd21d28a0ddabb5ba
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
d12887030a3ae5cd7836f378c57d6808e4cbc4fe03898b7b0106b41ad3535b44
BLAKE2b-256 checksum
How to use checksums
91298920b99f50bce91da8dbba77fb61b8019a499977ec68d6515b29d95bd672
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 925.8 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
43e34999044d2fd7db79af974b7479f0672338ef008ca44e5f2d7129280c67e3
BLAKE2b-256 checksum
How to use checksums
6b07bb5e086e65c4b4ea3cc7d2a5b1eb5582ce3bd106774cf3cc05c8289887e1
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 889.1 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
9b46ca32c6d1f17ff298269f15db6d4a8f2fdac486891139b06cdcbc005f0d7e
BLAKE2b-256 checksum
How to use checksums
622c5108bc738aec02230a6114d04e594e81c0bf47408112fa35ad81a679a8bb
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 921.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9cef19fc465a0dd1849494aed911ec1d5885002073ea75d558130933fb09bc22
BLAKE2b-256 checksum
How to use checksums
a804114fcde40f459eecd03146bce4ab4f2f4bde9de28c013e2cc6f5bda0ec51
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 883.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1af57ba35739f76ec55bcc819fe5bb98d8a37ba7fb4e0e6496b8cffcff475478
BLAKE2b-256 checksum
How to use checksums
9cdd12eaff3404f978864d0c4ff8c0414afa317eb3f4e4e304ed598105573aab
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 922.7 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
69f5264280f7f3491085acdbbd7cbfefd5d1b31759ebaa2a1d0bf17bfc38f720
BLAKE2b-256 checksum
How to use checksums
84525224066dbbcd063a5ed65348f028526d1f49b65ed565a844e2c655a02867
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 884.7 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
206e26c4f9e6ccfc0c24312241beee5b1b9382f6268d68df3dc3635370a0f8ff
BLAKE2b-256 checksum
How to use checksums
a7f41d84c421285300e37f5c0aae168f8d129aa207b3094ed32af1f921cef925
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
31fb058e6021708a8551b9acfadcb1884c1b6fe8fd41103aed5d6041b3ea2386
BLAKE2b-256 checksum
How to use checksums
7e4b74f52edddc5e3cccea13458adfc473931325b7140b7fce09a22492b2acad
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0699440ee25a0aa8eda8df717b123bc6eaf556dac59f3823e808d13fb6e63f21
BLAKE2b-256 checksum
How to use checksums
9c00675f1a49d97802b3af4bbd68a8c08c3448944068fb1a972673ee66d3db81
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 921.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c6056b39ca8e3c0ca96385358f5bd2df924fbe4a926eb5890ca5d8bd28089076
BLAKE2b-256 checksum
How to use checksums
e0c1fe054edd9049ee2432e12f14411b0175981f229ffb853167a96d3393afa7
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 883.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b61e2f9b50073882dbe5ae815d1e24acd3fb4e461021995bb0de1794762f8500
BLAKE2b-256 checksum
How to use checksums
ecb4dcfd06d42651c7e6b0411ca5788ab4cb3bde52b36541ea1ebe638539bd20
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314-win_amd64.whl
Size 807.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
edca61808d6b08bf554c0747ffaa0c7969269af818101051166d077149b10549
BLAKE2b-256 checksum
How to use checksums
ae46e636eeddfbd1402ba0d2f3b273e1de768978df60b352e1e88ab1e30edfbc
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
f7043c695e84ddf930d43d669a391f77deaecf47aa05aa8fdd8a2bed6db8c5b4
BLAKE2b-256 checksum
How to use checksums
4c945f307e252686b9adf87367c6be40f205b6b1c1816bf5d26bb876c991049f
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d03da5525897c39604803000a6e43bb9865b59f676f8b8152a45cbfa4f54b772
BLAKE2b-256 checksum
How to use checksums
63122d5c8d564e644578e7fadd0af6dd3d08a8aa5c4c8df7bfbfcfd0352cdd01
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 922.8 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f05df3df4f7386133bb94bbf8066f34af00a1dd620537e821477127d0612cb92
BLAKE2b-256 checksum
How to use checksums
a51588b94746e5bfbd3fa82c909c7ff24ec2a02a23492c1487425e7562f5c998
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 884.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
db739013a93ed65404e3049c83b47ced6ab1ae093f4703e2bd97aa785a0a6b3c
BLAKE2b-256 checksum
How to use checksums
9ad6fbd7c0a023e856f2ce74634fb635224bd344a906a063d7cef1dc30407ab0
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314-macosx_11_0_arm64.whl
Size 847.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
500f527c2b3946936a01fd29a6226de74117c3edc8f2bba7221764c8a749629b
BLAKE2b-256 checksum
How to use checksums
7316c090a5997ada1ac33bc98da1f859969310b480b0bfda2c25d801a01d0a28
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp314-cp314-macosx_10_12_x86_64.whl
Size 886.9 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
87dd9cad11d954e8f7cc3d69770d3c225acd6b83049c497a46aa84fbb52d8585
BLAKE2b-256 checksum
How to use checksums
9dfbfd708e79e39b1c2addb872f9c2f545b52bc9e2a71eaf6ff966722503f790
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp313-cp313-win_amd64.whl
Size 808.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
5dbe262ef5babb7e248046acde651d908a97e0071bf21b27a2dc8c3614830ce9
BLAKE2b-256 checksum
How to use checksums
c6a22268390cb89518a5ad303d74c2e09d61d5a9643282631bf066121faaddf0
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
02e53ea623ef023a6e8a22aaf2fb1a5f9a0655b0a3bd824ffb6e9b92c3edcd5e
BLAKE2b-256 checksum
How to use checksums
b2d13dfe0a538f4d50223d6d2bddaff528634f66ea2649ea05f1ad7ef46605a4
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
28a4cfa4136b30c661891751d33f6507599dee51ba21a87553dc167303ce4bfd
BLAKE2b-256 checksum
How to use checksums
e89daedaee5658f9aff8b1c7ff460888c4d83bb4825fa6ad7bebdbc68d002494
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 923.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2a1df6f52c373b8bff26fbbee0f952a2c5a9faa1ca83baa212b4e6d855f814bc
BLAKE2b-256 checksum
How to use checksums
02dbdff13736276c5c1d7e24b79c73758f69fdb1a1ab8f92e3cddd2fc59d6cc4
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 885.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f65922e85334a200408d26cc0bfc1a1bb49bed6da2a9800473cf1204a3f34448
BLAKE2b-256 checksum
How to use checksums
d352e7d6294aae430f388108fd0d144501a0ce3b40844d708a5e0be41171ec9d
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp313-cp313-macosx_11_0_arm64.whl
Size 847.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e36eec8cdf9c8190ee4bc9c7436d1fcff0855799d16e13db3694d60a2acea184
BLAKE2b-256 checksum
How to use checksums
370f6c24c4032c9e5bcb7eb100dd353445f0f100878088912e97eea7ee98a6de
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp313-cp313-macosx_10_12_x86_64.whl
Size 887.5 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
fdb5cc5c77f1a48e2d44a39d6dd0bcffd45c530cf247be3191ae059cae6f2c88
BLAKE2b-256 checksum
How to use checksums
877695f1f85fbcaedfee5409437216073a945ebca745e1694bda7d645e6587f5
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp312-cp312-win_amd64.whl
Size 808.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
935ee9af8ad095be836a9931a2d1afc6273bbe6e950efd618f44900e4a68d706
BLAKE2b-256 checksum
How to use checksums
e76f8761d41a2b27e3e738a45507ad8556272ac7d56c80cf27b993f6300029b9
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
89e61ec0ba13064802a1a6157a6008163ebee925143c77ed18ec0954775d7149
BLAKE2b-256 checksum
How to use checksums
99182ae83266a4fe40dc2b5b421ef721d67e702ba61ffe2f81706a7a3439bacd
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
217b01cbcfd827ef43cf2c5b11146e005d940c6ca040ad4616145a8edb9f2ab7
BLAKE2b-256 checksum
How to use checksums
8416f42dd7565168b27d57bc4b42cc98b3775d433d87dd0286fe9669e1c0bbed
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 923.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8c938b8d395c987d3a54826351cefefea3fd4aa8621355156887e02528f7611f
BLAKE2b-256 checksum
How to use checksums
d41ebc776d318fd12e7aa5750054ea9834baf401f9a0fa63829f68f9abe3f6b2
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 884.9 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8e49184056c874d1db84b68a31e74623bd48425286d12ef3164916cd656b9979
BLAKE2b-256 checksum
How to use checksums
933a6a6a666e8fcd7b7655f927c3c584a8d3718644e44f6cc9de6da35d68941e
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp312-cp312-macosx_11_0_arm64.whl
Size 847.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5f71f7052336e83f378dd9f33c188382b5526e1f6640c3b13500c312094eca25
BLAKE2b-256 checksum
How to use checksums
ab7c3a1d6c76aac0b39b3a0c2ad30eb98d16572b86244732d7d6bb755d9ede42
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp312-cp312-macosx_10_12_x86_64.whl
Size 887.6 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
ca9875f438f85f04249d2531112a3163c444ff0b246d6efc774b5e388e762760
BLAKE2b-256 checksum
How to use checksums
3350cd91cb35925d239528ed3850dbcab198e2a0a59805f65518d2f17ff4848d
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp311-cp311-win_amd64.whl
Size 811.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a7990b839fee400a47e559ad2f19c919141fc9d9730e03f6e92dbf28310fdf7c
BLAKE2b-256 checksum
How to use checksums
4414f65853a9b80b8037436bf47d1c034e1808426b116e9db201ee1a8df9332c
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
cda5b9eba76bba09bf46fa9567a3071b71bb38358ea428beb54d57bbd9f15d55
BLAKE2b-256 checksum
How to use checksums
a52a665b2e2283dac0051d37470517d224008c03fc672851ac0be580df2274d7
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a36f802c5de9ef8792673cc3cd83b710800bfc82b00ae694d88b8365b7235163
BLAKE2b-256 checksum
How to use checksums
4c5bb25af717fed793a87e6a51f54563136344068af32436fb5dfc9ff0f80922
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 924.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
65df0e4978b1c7814929cb3ca6a951a953618b90ecf9e0c25ad97e7d79b7e6f4
BLAKE2b-256 checksum
How to use checksums
fc579574eb58c2e84759ca4cd274b9cbf738c7a7ad6fbcbfd8e65110861e184d
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 887.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ac0a15ce2a14c03ba5604000bab21d2ee7e1e0b4fd2989ec60054c777b9cd2d5
BLAKE2b-256 checksum
How to use checksums
b6535d3ec38c2fd573f18f45bde173c28c3ad61e7bf743908fd16c607ed0f95c
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp311-cp311-macosx_11_0_arm64.whl
Size 850.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
343cde8ca171befa5fe96d6289d36ee615e0364a126a35a62d06a6f98ec45658
BLAKE2b-256 checksum
How to use checksums
5b1bdbbb8f61b28495f3237fddb53e1b3aed16231bf1654ead14a1776db96f2f
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp311-cp311-macosx_10_12_x86_64.whl
Size 882.8 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
dba77b39c1501926896ba3c77aa6a6b082220366fc9f0bea80b9db50eb799fe9
BLAKE2b-256 checksum
How to use checksums
56ae046f86fa05334822010e45f371eef267d0e5838afcf810a8d825e5d6aaca
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp310-cp310-win_amd64.whl
Size 811.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
9ead81537c8dd75f9333a43a89ffdc263d81aaaa10b95c78f8f4c79545cb7836
BLAKE2b-256 checksum
How to use checksums
e8d6cc6d391b69ccee75466b6aef05eab2d1c2f8ce9c90b12912ed50a4f8a4e0
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
e6ec5db5322eedf219f840ac6b4356dd98ff1bd0d4666c5753fa997cf6db9ba7
BLAKE2b-256 checksum
How to use checksums
56fb77ae5ee8af030c96182ffd3a23a44189d8623ea628eb411ca45fd956afa9
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.1 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
20ded1cedd75193d83afeb09b486b0dd8e99d1dd4561e006dfbd24d0e10ede05
BLAKE2b-256 checksum
How to use checksums
d8ed1203dad69cbeee1cb4f0f2356aca2d27f8b5b65d5edb75a64e254f8818b5
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 925.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f9819b6440aebe238a3cde6884bb9148e5bea8f3be68fc8607121f1ccdeafa1d
BLAKE2b-256 checksum
How to use checksums
2d6c9fe5be7d3aab3c3ec6b718c6c8dc08b1b46e96a41d6e88654b39f45ab80d
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 888.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9b4ed1e4a78efd11d4ca65716f106ce83b146eebb0e445d73e23879492a18d8e
BLAKE2b-256 checksum
How to use checksums
8510cb92a14731440539c38ef67aaa2a617a29145f708ef8b17531a21ffbb0f9
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp310-cp310-macosx_11_0_arm64.whl
Size 851.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
827d17147519cf35dfd11145b3150346047f557868e3d11b34a7f5e017aedbc9
BLAKE2b-256 checksum
How to use checksums
88b08d2db1adaaff21515bc6abcf2efdf7bc19cdfd41cd1e111244c411daf285
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp310-cp310-macosx_10_12_x86_64.whl
Size 883.6 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
a06bba9eb2afe6800e13299db343d76ebfdff14c3d92028665f64ae726bbf8fc
BLAKE2b-256 checksum
How to use checksums
e91f9fa4002366f407b484471d148ce44fecef68e23bb1b5e5080bfa635a7e1d
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp39-cp39-win_amd64.whl
Size 815.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
85455f774a4af7cadb8e4275ad4c2b28f51e37efd718a87cab615611e777083f
BLAKE2b-256 checksum
How to use checksums
fb86795310dbfd237fb5bacf64151ec980226ac9852832bd2f0ec022f1c30638
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
05f1ea42ac697deed5b21f812320126affa44c3979de862723349086ba7851ad
BLAKE2b-256 checksum
How to use checksums
71746059f24c2366ef9b5cb0184c6e8daea3e6196070dc16402a70850e890d5f
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-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
6d581a254dcb09b5ac66fbbebe47fbe4aeced2199c0de57fe481fd4639334ead
BLAKE2b-256 checksum
How to use checksums
35ba8285523a0b62fc4108047613dfa93cd48d9b879096fa6b570153f2016e57
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 927.3 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
340b0b39b91eb6cf737b92707ff0ec5aaf16a674dae21c10d219caba303f19ad
BLAKE2b-256 checksum
How to use checksums
0a95e427dd9f6eced8f1a5b972ed6b14033ddacf9aebb50eadaafbfdf4135107
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 891.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
01b6e0a8e7fe2882a219afaba2c0f0abd1cf93afcc3c0690f923c72c69dbde79
BLAKE2b-256 checksum
How to use checksums
01eabf007506cdca7a2f4d531fffe9292d078ceed8d7ea28279de60af05bf2b4
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp39-cp39-macosx_11_0_arm64.whl
Size 853.7 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6da3030a0781f248bd26c168c37d2ba2f302af66806ca7bee9618040823ff9b2
BLAKE2b-256 checksum
How to use checksums
c9032bfd9b9f583aaa681a8e490082d88ad5954eb28f73abc9bea2c7e085bb8c
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 24, 2026.

Transparency log

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

Download URL djvu_rs-0.35.1-cp39-cp39-macosx_10_12_x86_64.whl
Size 886.2 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
345c5ffae3d30207d940efd9b670e1cd35e6d077b3bbe17eec7f50ac73c573a8
BLAKE2b-256 checksum
How to use checksums
f7044e19d7334857dd5aa678236fcd654cedb30e0742d7841db5a8592d8c952f
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 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.35.1 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