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.36.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.36.0
File Size Uploaded
djvu_rs-0.36.0.tar.gz 2.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for djvu-rs 0.36.0
File
djvu_rs-0.36.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.36.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.36.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.36.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.36.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.36.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.36.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.36.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.36.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.36.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.36.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.36.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.36.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
djvu_rs-0.36.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.36.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
djvu_rs-0.36.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.36.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.36.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
djvu_rs-0.36.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
djvu_rs-0.36.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
djvu_rs-0.36.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.36.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
djvu_rs-0.36.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.36.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.36.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
djvu_rs-0.36.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
djvu_rs-0.36.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
djvu_rs-0.36.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.36.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
djvu_rs-0.36.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.36.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.36.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
djvu_rs-0.36.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
djvu_rs-0.36.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
djvu_rs-0.36.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.36.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
djvu_rs-0.36.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.36.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.36.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
djvu_rs-0.36.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
djvu_rs-0.36.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
djvu_rs-0.36.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.36.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
djvu_rs-0.36.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.36.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.36.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
djvu_rs-0.36.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
djvu_rs-0.36.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
djvu_rs-0.36.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.36.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
djvu_rs-0.36.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.36.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.36.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
djvu_rs-0.36.0-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details

Total release size: 53.6 MB

Release files / djvu_rs-0.36.0.tar.gz

Download URL djvu_rs-0.36.0.tar.gz
Size 2.4 MB
Tags Source
SHA-256 checksum
How to use checksums
fd5e8776cd9299556fd765448f1e0bec4241d8ecacb2a7f3afc7c86885e8838f
BLAKE2b-256 checksum
How to use checksums
785bc74c2adfc99b0a5338ff23c147451be9301866836fb4cd5914cfee442801
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
a5bc71e82d85336b33f4149aa296bc4a7e1199fb670d39d4e2d26cf698b97cf8
BLAKE2b-256 checksum
How to use checksums
078d65c30e4b3b32a4680b91c0b69a7166ac64b0fda14cc1525b018575660317
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
891b1eea6ac22553bcce5942045a0bcaefdcde338a95611119632ca8a1d933b3
BLAKE2b-256 checksum
How to use checksums
86c47ff81a83b2b58cd8f9e8d7b14119cb6381e90f726018de3de79b3c3cda2b
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 929.3 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
7fe09fb4dfea982c857135861c94575e974ef4483322226ad4ac708531d7ac13
BLAKE2b-256 checksum
How to use checksums
3c0c06fdd1f8f869fdf286034249ef7d577855f1f7788f675f7eec5827468424
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 893.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
17e5acdac00f1aad9b784c030b5c1e3e6200ee99e427e02d433656682cb85fa3
BLAKE2b-256 checksum
How to use checksums
4dfa4b5c32d413be0874d18ea609bfc8f0a7221fa16dc92e80972576dae360f1
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 925.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
87e27a0d3cb4df340a4af52105d4bf460e1f288dad09a0ef6db7cd1c65d30b06
BLAKE2b-256 checksum
How to use checksums
4d6c83bf7f905de2ff874bf9ffa4d1937285d748787836e4501a782f3d905980
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 887.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
18de84b0d02e2817ad5efd27abc1968b8e03c13256f003e8da0aa05a050eca84
BLAKE2b-256 checksum
How to use checksums
dc93dcba6409d728bb95ae3c31128232b2fd59e6c98e02ba7081ee6c4b7c00d8
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 926.7 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f199b9ea1bbac2435982150ae850633619b94d60664201f1bdf89f5ddd6bb33b
BLAKE2b-256 checksum
How to use checksums
6f29fb34cb1bfd814d3c086c75d4ceaf50685f6f07b4e21cb4f22d23e51ebd19
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 889.6 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c93719f914063c0cca2b59bd245d47f5913dd462468209c92875331920af7093
BLAKE2b-256 checksum
How to use checksums
56e6f9c737de8cceb0a9a50ad54dadd968b6d30e3c0f9e002b40c50b85aea00c
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
3776b7af7b2accb6679d693555463803adbf2c75ee6843d67fc1ad9274855f4c
BLAKE2b-256 checksum
How to use checksums
aaebb696345f3fd1b63be33f627491c7d7a691f5c636159e186a2d3be9bcd8fc
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-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
885a3c6b68c175e3bfa31b8418611acfd973f6176d3c7972ccdee59d7f8c1103
BLAKE2b-256 checksum
How to use checksums
aea5e990a602e0be4b464cb726a05e89c662f52db4dbdfd873fb0664b2130383
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 925.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
89512b9e9ec1fac7fbb1ee5af4b160ccb2b7e66af0e24d6c6f004251bcaaf068
BLAKE2b-256 checksum
How to use checksums
b21f2c5cc0d8b8abe0fc75904d4c312c67436e57559b6ac8ff0f31e2a5612420
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 887.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fd1d1a8c1e042f8e105ebbca03b7858c1f5dfa2636debc2fb9cdcee4f7e066c7
BLAKE2b-256 checksum
How to use checksums
405b9159985acedd4e300c816ec02554acdd42beee9886e8689050abc5c71d79
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp314-cp314-win_amd64.whl
Size 811.9 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
fc38f57cc0f22a58a9a78af6395aad035d6355fb4c121662714a80d12cf6c352
BLAKE2b-256 checksum
How to use checksums
927c4c3cf0f976aa9806cd49efcd3897307b51b3df8aabbb4440f8c4c98e3a5e
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
d8c68e6c159885fdfb0dd41d7ef21380d519b0dd5f69314888e85b28d25b0972
BLAKE2b-256 checksum
How to use checksums
c868aa8f7835668ad0f66adcbe64bc4c8f05e1e301dcc76a1749fd57decf8d95
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-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
cd1954540936cd3d1887a44c0cb9f7cb57cce37e2a06cfe1f2764c694c1ca8de
BLAKE2b-256 checksum
How to use checksums
75779774b9e03dde7850be8cff85eda3ce793b0bff21d93e9ae86c63dad1cd80
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 926.8 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9ea01e96a24b4cdafe2fa1c589211f276eaf6b7b52d2b213f27b5d09b36e79f0
BLAKE2b-256 checksum
How to use checksums
88e34e3caf9e983ead87c7a5814a2814dc08f03042fb8cf5e25e31d583dec8f6
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 889.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
865259d8b8243632889259f16374f601a948d0810da1fffe4617b8e3f1a52bd8
BLAKE2b-256 checksum
How to use checksums
e4fa128120f743c861747ae9e24491bf28f5ea59517118830b115a76037f0d07
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp314-cp314-macosx_11_0_arm64.whl
Size 851.5 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d8f45e8c04c62e7a0f8610c4e31756d00e82c73338f24dfdf7aa461b8691f3ac
BLAKE2b-256 checksum
How to use checksums
2218a74bb2ceae17972814b4d06301d1f94fec868774e9bdadd550b96469f0e6
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 891.1 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
ddace19050cda72a1c11b549e0a8ce6171bb300d290f5c9996695e61b4940cc1
BLAKE2b-256 checksum
How to use checksums
61b8d6c8c3aba7b86ca28cfcf9534b8a1824b11854897d2b78ce4f56d8b697fe
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp313-cp313-win_amd64.whl
Size 813.3 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
88fe13b8ef5697ecebc82eaa86bffdaa98ddfb0af5a8f979c9629633fbd4b685
BLAKE2b-256 checksum
How to use checksums
ccb5967f5a30b48da5f74f9ba897988121cea71ad9b71544e6175dc625a47d04
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
78bef41d1ec1ee82e74648408a141c8517327923a766cf060477c34ee3117d96
BLAKE2b-256 checksum
How to use checksums
d78be6d7938c8c52131d30a2f21a6b3684a656a35d416f85e477be94e7dc4d64
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-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
98bd4f764facf684e78adb270d9195644a58e6da4880bad016fde011f0e5ae32
BLAKE2b-256 checksum
How to use checksums
56425fa4aa027c9982fddec44284ee79bc197c851defebdc056bff9788330c2c
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 927.2 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
219ee2e3c91e63ec4e1dff6d0b99286308b5f37ce36b563bca04151be44b59f7
BLAKE2b-256 checksum
How to use checksums
3033625c1c082e2eec79db3b1d4cf840bb1bcfcad0dc7cb6d1080d9bf959d177
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 890.0 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1211ec13f1ee3c18e6b5e77b3e95e426a3519d20001ab76e41d038a8630232d3
BLAKE2b-256 checksum
How to use checksums
4e40654bdaceeee14a7c60b31e3b638963d3b44217323baa9abccaa61659d45b
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp313-cp313-macosx_11_0_arm64.whl
Size 852.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5a1485d270645b57e9c38fc452e9a1f1b3229a02e92d738fef883228c90eacf3
BLAKE2b-256 checksum
How to use checksums
7e66d04ac7f9f0275285c068ce19447a0a191a032fd5fe64abd4afeb54d59543
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 891.5 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
ec190ecddd8350b7df60439897f06a715dd6d860fb04b2eda1ea3f54b57763dc
BLAKE2b-256 checksum
How to use checksums
c1528dcca361ea7d5f1a4482e01df9f06e875dea848e1c40febb1d4cbf815f62
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp312-cp312-win_amd64.whl
Size 813.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
445bcc711e811be463c208cefcadd86537f6c087a1ae5e93a8fe31dc6a08751a
BLAKE2b-256 checksum
How to use checksums
c34bc9043f9b7d2e8c9a35c5d2d93c74f468c52b1dd840ff495152c3b0b50706
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
974b7e539b1ac3251896766899a3d2dc14468ed48666e5ff45c94eb442ad5f91
BLAKE2b-256 checksum
How to use checksums
1cc8c2ac844d9db16a97bc9fdb1a4641655a5caed2e49629f2ec001881581a66
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-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
a7b244f0c83c186c69cc8800635b909f17a3f1808ebd5dbaaa549bdaa9dbcd3e
BLAKE2b-256 checksum
How to use checksums
093c8025503ac3c8d728a7e32e7797f49c16935bb8998d0de4230db94d78adaf
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 927.3 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
782c29d23b95819014fad87155f986bd586c22340134c1dcd63df8867d1f3b2f
BLAKE2b-256 checksum
How to use checksums
bc5afeae8043063560e12c94001c0537825cab0c3a9d8f39169b38771269a4a2
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 890.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a4de80b73a9381349743eb36cc329aaa01f50ca6212fca8994c613540c38b490
BLAKE2b-256 checksum
How to use checksums
f10be0029d086c78edf286ab7a93438302b8c0f9bf586116196ea802edb6f9f4
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp312-cp312-macosx_11_0_arm64.whl
Size 852.2 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1321fb9430d934d3cdd29aa4af7a31fa78ca6fbb4faffdf67c19eac1eae1bf2a
BLAKE2b-256 checksum
How to use checksums
968fe5cd3ea53cdac22ad3bebc200062b05fd210b5847c907cccca646d8067db
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 891.7 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
166e880d24329c2ba296b5ceb89d2d0ed0ad2abd40ca6bd975c11a3e0e367be5
BLAKE2b-256 checksum
How to use checksums
66aa6b3c1c3e2282708eef9a73773f5b2fc1fe80567039e937270771d8b86a55
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp311-cp311-win_amd64.whl
Size 816.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
ed84fbbbcaaa696e791b2d5f633ab79d64e38073d3ca476e587bd5c0b6bb895c
BLAKE2b-256 checksum
How to use checksums
680feceb76699b8d373291168f6563179dbd326ee3a20e02848207cc7a601408
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
791fc6453a597893faa34aba91b17a1e105140eef31d8f6e7b061027e4198c5d
BLAKE2b-256 checksum
How to use checksums
bd3bde6afe110623f1de5ba724d81301c62f209bfabbab6ea46ef99cbfd6d89a
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-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
59779a0e5a3f889f65c0e364e98b6db0cdc53a26c20df2c4736b370748542e40
BLAKE2b-256 checksum
How to use checksums
6c1ec85ff482c65ac96d78b5d77adf5aa48c9e112b02e787a47d5fcd4c0bcfc5
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 928.1 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ce5018072578e1bf8b286712fc50a3ea49fca63cf88a262937031d531474da95
BLAKE2b-256 checksum
How to use checksums
866f0bbd00e0cfa2338fb77443dc5a4f1e791403c676051e00d59aa9fdc7afad
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 892.1 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f271437fed5bf1dbd3ed1cc14de4855dd0d72ed47808321afe37ec165a66277a
BLAKE2b-256 checksum
How to use checksums
c7a8382440bdb1644230bc58ae634072525dc5372671d2f2969ca54ebb3ac4e1
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp311-cp311-macosx_11_0_arm64.whl
Size 854.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
23cbe45507b22b2dc261d35311e4e24b4d7b67d64e062926947ba5ef0fe368cf
BLAKE2b-256 checksum
How to use checksums
9873da04c9d3576b030dc3fb0a1ac3dd3b90f5971797609f4e5dc36adbcf5302
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 887.2 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
7edb7739d9ddc22e6812225c3fd3071d624b909fac739657a7e9962b75d07f21
BLAKE2b-256 checksum
How to use checksums
e7d28171666bfc39e6d02ab15a476d67f35326861d8b04e64203ca53ac57ee61
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp310-cp310-win_amd64.whl
Size 816.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3480c892a226979861b38d6e2959f2b4ca0878c69d566f3382568a3af7da08d6
BLAKE2b-256 checksum
How to use checksums
3333114468ff811293dd80e0412a7ab04a368a1223cd0959342ffc73d93c695e
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
06ee9b05084443780e9eae95850738a0d82af61c96812ca8adce80322305f132
BLAKE2b-256 checksum
How to use checksums
814d98fe6150703cf8cdfaaab1c3f08c29a667dd222bc4cc33ea6f0427d9d8fe
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-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
24e8bb2daccb3444f93b0dbd428c688da2e9b54df121943a0add49f3443adebb
BLAKE2b-256 checksum
How to use checksums
65a3e4c8b283fbd1213818209d25788fe375ad01bec9b2029f91eea75640a6fd
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 928.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
20080fc94a324358bda1af925bf07b774cf16a5076510d57f00bf4debdd88c27
BLAKE2b-256 checksum
How to use checksums
a87184198809ef164cf28cfc9ca2bd30408a44e15e63a9ce10c1621a68782cf0
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 892.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
12a3bacdcc0b80e0bb4c73aaa4d89ea4faa8774ee69dda38757ae156f1bd1ac2
BLAKE2b-256 checksum
How to use checksums
fff6c7919603303e7a088e89f987ddaefcf0db46075221ef0d735ab0f0da0757
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp310-cp310-macosx_11_0_arm64.whl
Size 855.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5c0bb56c0fc453eb8306247c8264d9044e87be2e1869a04db7062998089ac220
BLAKE2b-256 checksum
How to use checksums
de8561b02d799a84255a89382780c103817b5f2f0b42ba674fd4f514d800f29b
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 888.1 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f21eb8a75535c2a12aa0c352cc8c144ed6dacabfd7d1ceb14b2024f8dda78f8d
BLAKE2b-256 checksum
How to use checksums
9ed9df7ea695cd4487f83f704f1ded693050edaef2d3d4cc0901264f7ce90fd4
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp39-cp39-win_amd64.whl
Size 819.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
e231a0680059fe1312d22355d71076ce46a7bbbe1e04744e7d8b8244be3ebdbb
BLAKE2b-256 checksum
How to use checksums
27c9478e31748b844c2bb2f8157bf773ec034e312600b3e8f97dd69fefab8813
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
9873d94a4b4850f608e878fe6e2c416ed7d6546d2c07399c0386059b8e44e32b
BLAKE2b-256 checksum
How to use checksums
18c06314d2774bb4a0deb52333d7e7665bb53af6d2456e60b8f4d8f3c49e0588
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.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
6e732adb130441716b1cc41da59a3ecaf824643847bf0ea5db47b0a1b69b9c3b
BLAKE2b-256 checksum
How to use checksums
670dfda7c619160a592da62690d4b267b4bc570b5a112f17e6d76e91c826b1bf
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 930.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6ac372cb321720af8a1da700b95ca92153719408803626c0e4ab73bab0624c42
BLAKE2b-256 checksum
How to use checksums
301f1056a91db2c57f9f91d0838f702817f5afefbf453d35ce2d78bc9f1a7ed0
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 895.3 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
300de1888e36292a3c898ae59fdd51ae997accabe284bfc8b8b1b30ec5c33b68
BLAKE2b-256 checksum
How to use checksums
bb483c2d70322d63f5d14c6add425ba3140c5cae3a246824b28f42ee268adc5d
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp39-cp39-macosx_11_0_arm64.whl
Size 857.7 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e0d06a51ee301e7cfac7d34fda78947844d572c5ade8668eb61bf6052632dc3d
BLAKE2b-256 checksum
How to use checksums
0bcf69781a3a82e16b4a0d4d20a70722adcca0d9c10b33ac2da8fcbc6cfc7834
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 25, 2026.

Transparency log

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

Download URL djvu_rs-0.36.0-cp39-cp39-macosx_10_12_x86_64.whl
Size 890.2 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
3e23861bc03a342ad39415475c787955a2654555969bb834ca4cb1d5a2d2394f
BLAKE2b-256 checksum
How to use checksums
5023d0422310a2e7154af51b6f40988e4353681e7b176d412f78289b2f069232
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 25, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.36.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