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

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.2
File Size Uploaded
djvu_rs-0.35.2.tar.gz 2.4 MB Details

Built distributions (wheels)

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

Download URL djvu_rs-0.35.2.tar.gz
Size 2.4 MB
Tags Source
SHA-256 checksum
How to use checksums
91c902da5f9927a880ce00dda52eb7bfaaf0d1dd253b0f97f1133f53796d6bf3
BLAKE2b-256 checksum
How to use checksums
f70e81e1a579352e2f0d7741ea84410c07fa8f04a01c2419fd5e7c847503efbf
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.35.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.35.2-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
3353f5fde2d0eb900d7e0aea4341dabcbb364b7707cf550557eff577679a1d8c
BLAKE2b-256 checksum
How to use checksums
58bc4d7718cdc840b72e3b0fa50c189b580a06c25ec31b1b5f5887eebbb06c0d
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.35.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.35.2-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
d69ad18f9e438769d3946fe38678f6edb447909969c78724ca899340d594e012
BLAKE2b-256 checksum
How to use checksums
9834c53ed9add8a309e816b7b4342443c6d304dbe57f8a9a9b1fe009514cf75d
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.35.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 926.6 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
353b08d76e8b8835392bf48bf95d2575411daa16ec4f5aa07a018f1246943ecc
BLAKE2b-256 checksum
How to use checksums
4e0d8a68d3e867398dcd73e47127c46b690d15bd1d6ec30581c7d81042a0fb75
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.35.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 889.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
5b794bef3d13a9244a32a33c23883111c77448b64e8e1307d647c6a000441287
BLAKE2b-256 checksum
How to use checksums
ce7ba50c4000dd038fcb8ce682127f1a3359b200505181dbbfbcd1d90029391b
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.35.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 922.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8761808233813a8eae18869a0bda03d161ebb8259c95d1488315962126e7778b
BLAKE2b-256 checksum
How to use checksums
a8365673b58a114b641f583f495f6dc7c49e792922a2f7f948b19f4117fe1a63
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.35.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 883.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
60c23a9163d68ae273fb8775ba491dd3c79f83e049fa7d6e228a8f8a6d062260
BLAKE2b-256 checksum
How to use checksums
3122eed1fc70da1a09a246216fb0dd5d46cd97db336582afdae5140f8bdfaad1
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.35.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 923.5 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5cf0e4f090ba99cda11cf5912741104dd4da1dbaedf8a4b3e7aab271aaae5e46
BLAKE2b-256 checksum
How to use checksums
b35bfe29075295f09f5f4808ab2cb2b4f05f953a17333433841f2ef089983925
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.35.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 885.0 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
163b9daf6d94081178a771ee9127e49cad26bf2a162e586a0e8e8c91e1a0e738
BLAKE2b-256 checksum
How to use checksums
f1f1a217dc9f060c3e88a5e74725c25a5eadef0eee5989b0dc4b4b93af5068c4
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.35.2-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.35.2-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
0c1f11379f2b89c4bed2d9fc50a3d74f3e242c2f4a0b000e779fabde572c7038
BLAKE2b-256 checksum
How to use checksums
282dc4d948050923f82904801d1d06132b10e826f4ef1eca34592d66376ed0d2
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.35.2-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.35.2-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
187db2ee458fa8bcdc1df52023f7ca5ae8146289ac5ddef1052a07449140028a
BLAKE2b-256 checksum
How to use checksums
c37b73b0e2481ef9f0bfcc3c11d11aba63d1dc46a74a3b3cad19503b79726b92
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.35.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 922.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
321794bbd734c6b10699d42f1520b0ad7976a5b27b1b1bf8ba670322647ea283
BLAKE2b-256 checksum
How to use checksums
0e9e6dfe2259a3cc5285679692e30fdc68c817ba764044bd1e69dca1a3dfa0df
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.35.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 883.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
18afa9e6156e72370fff7c65b87f5190926a4bb7a786c1ee015aa151132f2f75
BLAKE2b-256 checksum
How to use checksums
f2cf4d61e0c47e858015775caa7dad8e6469ca16aa47e15df41acfaed1db6157
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.35.2-cp314-cp314-win_amd64.whl

Download URL djvu_rs-0.35.2-cp314-cp314-win_amd64.whl
Size 807.9 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
6313187c96dfaf56dbb304ca275ae007b38754fc5c78213e2e0b83e86887f4de
BLAKE2b-256 checksum
How to use checksums
cfb8c3013d021d82612052e200501fd18e0c83043a0a91eb3ba2b5235170ab0c
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.35.2-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.35.2-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
4bc3d586689b88af1c181c62c07ab844dba2de786258e67e145a427d3349976b
BLAKE2b-256 checksum
How to use checksums
e5bd7b07bc013e57abb4387909342d341b3d306e345c48732370c8ba95853411
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.35.2-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.35.2-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
aaba4c5b673310813f83a874f0ff18a7c477763c3a7b74f6543490f5f6288412
BLAKE2b-256 checksum
How to use checksums
c199b9e8b25b228e188e60c0c46810845d1102f9bdfa59ba2617ce8cb7241bf7
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.35.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 923.7 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
04be337f326cd3f0f5381fd7f264385ed0fe7626d8742ea2a0511d4b9bebdae4
BLAKE2b-256 checksum
How to use checksums
64f169398ee8bec88f8c4e91a2da4f2b3eb05617510c74536065031ba33584c8
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.35.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 885.0 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1d5dc9623ebbc44b9a831411191b96e06943d8da23de488371256b5e73fc53db
BLAKE2b-256 checksum
How to use checksums
acb222d1c9d657634e43ea02d890203047b58fca667230fe7848023f72be481a
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.35.2-cp314-cp314-macosx_11_0_arm64.whl

Download URL djvu_rs-0.35.2-cp314-cp314-macosx_11_0_arm64.whl
Size 848.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b3258cdf136adab4cbc884851ad2a7aa045db1ce79f02211521ec701e50107be
BLAKE2b-256 checksum
How to use checksums
fd39d6c67f62db31628a70d561f4d3297572d51db9547bc0e3c08bd6ce139ccc
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.35.2-cp314-cp314-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.35.2-cp314-cp314-macosx_10_12_x86_64.whl
Size 887.5 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
447ade81319982caba29401eb1b8a8690e16213a455451c16bc666bfce4af813
BLAKE2b-256 checksum
How to use checksums
62750ee3196a3d55bd39e7195a79caa35f391675cbd33cd046402d9b613d1176
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.35.2-cp313-cp313-win_amd64.whl

Download URL djvu_rs-0.35.2-cp313-cp313-win_amd64.whl
Size 809.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
cc2a3b105106f3551a49689b959e8546c7564ec2efadaac1f64f4581819a9b08
BLAKE2b-256 checksum
How to use checksums
800ce50e21e359e7d0126419b8c3dc21fd57d219aef5665b6781ec4c2c3c980a
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.35.2-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.35.2-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
185b8e4c51a9cee1cf3794a90088d1698efbdbacefcb6b23ae6c902dcab0b2a4
BLAKE2b-256 checksum
How to use checksums
4bd2e42da69b41358610113b6a6027cd05b7cbe8719e06ebcb4cb8ca2d02f17c
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.35.2-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.35.2-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
27a728f56445760709801a3740ad05303d74dabeba72d95f041660e2758227e3
BLAKE2b-256 checksum
How to use checksums
2b7f04354a296f7d90893abb96ac70ac8ab4d02080a8c1f1049e88db63f85354
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.35.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 924.2 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c304fc20bb6f64919ef8cd26585ecf5e7ad2a1fa771d57564d171d1bc90c48bc
BLAKE2b-256 checksum
How to use checksums
a085cfc5d142e39949b443fd8a12b9fa09dbdddc5d340f7aeee4edf6fd5a8cf9
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.35.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 885.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9e34eda41669728e264ffb18cc5af0813aaf4afe8296191340ba16dc4d303ce3
BLAKE2b-256 checksum
How to use checksums
399abacf6b21ce2d0e7b63b40afbebe633b4e2547a90c7677f7a5e86d2c603b3
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.35.2-cp313-cp313-macosx_11_0_arm64.whl

Download URL djvu_rs-0.35.2-cp313-cp313-macosx_11_0_arm64.whl
Size 848.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
01ccdab535f33f6944f1cf31ed27aa5a9855baf91e35803339f7bb6e5d432362
BLAKE2b-256 checksum
How to use checksums
397707fdb036d250570e5c0c5b62c3eba844c835776fe41c1d9d47427c234c1f
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.35.2-cp313-cp313-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.35.2-cp313-cp313-macosx_10_12_x86_64.whl
Size 888.1 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
9a2b9975b0416a109c692a3a90b947825e02c5608b661f4503248f17f081a5b3
BLAKE2b-256 checksum
How to use checksums
ed37982afebca1e99b0eda965dbefecfd3bcde928ffed0b963f0b9c307704036
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.35.2-cp312-cp312-win_amd64.whl

Download URL djvu_rs-0.35.2-cp312-cp312-win_amd64.whl
Size 809.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7a57922ce54d88fe4215671cc0cca0d6a8b2ee5cb8e0773cdac45e1f5936c2ad
BLAKE2b-256 checksum
How to use checksums
2c59c292ba0131064e6f44a472dfff6a5df4f0bc41b5a6cf543f5f399eb4ac43
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.35.2-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.35.2-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
9fb6c7f82d50692759c49fe8ec030e4974ee1f2565fa454f17d4a2340d087638
BLAKE2b-256 checksum
How to use checksums
25407371941bab5728c25420bedaba9da69d82b79a04f3a03cbabf9b1ea75557
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.35.2-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.35.2-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
8b666936500e3b112bf03c7a8250ae6818969f2c869dd100869d44fb9e0f95bc
BLAKE2b-256 checksum
How to use checksums
1d3b616c7f481a4d25736fbdae18003765f769b4a89bfe107acf613f16987b15
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.35.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 924.4 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
32d87c7683597a696c0fda77d0337e0913abdbde07ccd3f35cca26a92658b555
BLAKE2b-256 checksum
How to use checksums
aa18540b2b1c2a5acb2ebfcfbf3ea6e2cfc892a18a19f20227b8d174402e0793
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.35.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 885.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8a21caef2eeaf0664c5aa81b1f586c0bc190c688fbd032080c967caab2ba9e5f
BLAKE2b-256 checksum
How to use checksums
4fec9d3c29bcdf670b689bf4023e4cac35dc7fc4fa7763863fb98002f2b68019
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.35.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL djvu_rs-0.35.2-cp312-cp312-macosx_11_0_arm64.whl
Size 849.0 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
06375fdf3b71960db866088d80ec460bc9e99c8298975c374e20bd2b6f319fdc
BLAKE2b-256 checksum
How to use checksums
d6bed0537bebb7cc415df1928e06056c409cadad6b2f71d79e4664388af56f78
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.35.2-cp312-cp312-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.35.2-cp312-cp312-macosx_10_12_x86_64.whl
Size 888.3 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
fbe33755dba3e4a7e3f7d4e4654d3138dad412c6863905a8750b34888d3f202c
BLAKE2b-256 checksum
How to use checksums
b575b1d023ec7e3f14f82fef78419e1fb54757415e4aeb6732f4d78c87522769
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.35.2-cp311-cp311-win_amd64.whl

Download URL djvu_rs-0.35.2-cp311-cp311-win_amd64.whl
Size 812.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2a2a37048f4fa514efa5835725ee77052a5c043248bed3ade1b94507fb0e5ea2
BLAKE2b-256 checksum
How to use checksums
66e41c62e9da7f03816fee1b93a0c54628c3956704f3792c9d84312b037cead0
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.35.2-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.35.2-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
a878bab5b7ef77f1ac247367a556256eaf44a8999e2ff0fc172bc9547d68aaf9
BLAKE2b-256 checksum
How to use checksums
ebdc8937bf37a439c41cff1b480fe41c76d6bde07df290d870cdcb1ae2cc6903
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.35.2-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.35.2-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
87e1bddd9cbd957e89dd079dcea9a6e29a717d340a1d17d4243fbd6ec26296e9
BLAKE2b-256 checksum
How to use checksums
fc07b384f4e950cca04d263f0d48ab219514abbfa3e7dcf3d9eac55de865b970
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.35.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 925.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a6a55f160a57272d05a9202f04064c64b0d5fb0bc524c1b40ce76cb6c08245c2
BLAKE2b-256 checksum
How to use checksums
048fa052e6b379236246d5372c9b79dad18feebac7c93499886b05f29707fbd8
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.35.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 888.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3a27a4ae483dc7d285d619b90ca8d9737107f07404d963004275b1e9da22061d
BLAKE2b-256 checksum
How to use checksums
0259d84eaa94a1617535b965163ed797d987b77273a065eec2e48e62f5ea1a95
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.35.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL djvu_rs-0.35.2-cp311-cp311-macosx_11_0_arm64.whl
Size 852.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
922f5a1b05ad3a279210f1fd3b6facbfa05ac477556d2953d98ec6b626248e9c
BLAKE2b-256 checksum
How to use checksums
11c09e04e61fbff71ecbee9d357a9c0f6ebaccdfe0a45d69f8e16bf460590632
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.35.2-cp311-cp311-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.35.2-cp311-cp311-macosx_10_12_x86_64.whl
Size 883.2 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1dc8c603a41897288fd624afe7ab8ecc0ffb93b71a9afc74f0efd9de18106b84
BLAKE2b-256 checksum
How to use checksums
46088c0f2a29b041706dcb8bffed0b62573e87e5e96d6fba3c43b41e2762ed97
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.35.2-cp310-cp310-win_amd64.whl

Download URL djvu_rs-0.35.2-cp310-cp310-win_amd64.whl
Size 812.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
4a97600b0f5ee86b1ec4aaec81133a492a70bb73c7b1fec955b8a0294e1803b2
BLAKE2b-256 checksum
How to use checksums
95dccaec7db1527bfe7fb064ae3976eed1881ab39e34691d7b67dc6002b97694
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.35.2-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.35.2-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
e9e7296866f1655dc8f38858597f417a3cababa60de36076e57fc0283b188e1e
BLAKE2b-256 checksum
How to use checksums
53ea05d6287fea06695bbdc5f6df6cd48f542548f0ec382238fb46a33de10d4c
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.35.2-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.35.2-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
08a672fa01f1b99c502c89eaa8aedbe6c0c554735547ce9e8f4c9a5be83227fd
BLAKE2b-256 checksum
How to use checksums
ec2f3528aeab16c4ef4c71faefcc279bcfb651d092e4435d69bbeeb5e039fbb4
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.35.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 926.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
112382aaafd9171786b714d36dc01e5aa7183db0f4b932d9eb97aab5fa9fe713
BLAKE2b-256 checksum
How to use checksums
d266bb2e59fe981aeb6e9b58e9baa0398274268a1ec8ba5e4f2b8f6ab825e234
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.35.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 889.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ca8968f140efbda2f0165b2192d6768f71dfcd370e95544dad9b7671ae38be6c
BLAKE2b-256 checksum
How to use checksums
eb90b5e6f88b187eebf4e972144eee479521336a557c6e45465d32c181ec2a5c
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.35.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL djvu_rs-0.35.2-cp310-cp310-macosx_11_0_arm64.whl
Size 852.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c735b5a3428f7f85d12fbf568b99010f389ee2dbeecbd415ac497e41c170a2dd
BLAKE2b-256 checksum
How to use checksums
71ce40a3924e5e843433e5de97e4403158332eabbb93fcf0a9ad7d57bad41c5c
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.35.2-cp310-cp310-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.35.2-cp310-cp310-macosx_10_12_x86_64.whl
Size 884.1 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
38189286cd05bf05d06cd9ef7bf60d9cd750abc6084fb9852054e587ecc71127
BLAKE2b-256 checksum
How to use checksums
49a349dfa497691bc5843f3a563b1c078da6eee43bc05a26d3d8098925354c4f
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.35.2-cp39-cp39-win_amd64.whl

Download URL djvu_rs-0.35.2-cp39-cp39-win_amd64.whl
Size 816.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
a1e74a04175f1663cdc3427e510c220f45a32ec48e742150ef5c06b51d5ed9bb
BLAKE2b-256 checksum
How to use checksums
c5c3175ebc3a2fd8da764c87ad8c49e91f5fe9760a55b66747687606f94f712e
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.35.2-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL djvu_rs-0.35.2-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
40c66868a35debdb2d427fe925b42b7107d3c1f7816ab84fc4c5f560860e9f47
BLAKE2b-256 checksum
How to use checksums
f3bdcc76b7d076052abd48184479f68a0ad20ead0c4008d25ae51109f3df7ff0
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.35.2-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL djvu_rs-0.35.2-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
c7b6690b07c226ed34d850971b82763d82c5471df92720941b9c3ca5299f8457
BLAKE2b-256 checksum
How to use checksums
d5605222b7d49c8a975025cd0610bebc0639f4dd2d242004f0d0ed1c1c13d8f9
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.35.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL djvu_rs-0.35.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 928.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4ec14e3ee65bf6a584137812af4367f1332ee35917c76c47c00eb78ffdeec246
BLAKE2b-256 checksum
How to use checksums
a81acda9e99f664c7452d34464439907f7485cd8bc97437b954d428b4d935872
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.35.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL djvu_rs-0.35.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 891.5 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a79392d1b1d137bf2e66d9a6ca7265341e721a41933a7527d447b32efe5b8f54
BLAKE2b-256 checksum
How to use checksums
aaaab93395bcf3d6d35b61ac28d519732624808fb7a7c11a52ee4253782b8e69
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.35.2-cp39-cp39-macosx_11_0_arm64.whl

Download URL djvu_rs-0.35.2-cp39-cp39-macosx_11_0_arm64.whl
Size 854.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
357f0e97e80c1125f5a79c63102a0fa6a453bc4d69cccebc4387cf2b80f75eaf
BLAKE2b-256 checksum
How to use checksums
2e319933b762b809d701af3e06abb61e90ae07163cca6d50798b3ce8a6f8450c
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.35.2-cp39-cp39-macosx_10_12_x86_64.whl

Download URL djvu_rs-0.35.2-cp39-cp39-macosx_10_12_x86_64.whl
Size 886.7 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f773c2e777b7730de374591456f41e9a2d99ada2f3d75b85ffcdb3d3fbc38694
BLAKE2b-256 checksum
How to use checksums
d9a10a51e824365b3d5fbaea598e2db6bac998de7d2b9237bc7331944d0d85ca
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.35.2 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