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

Built distributions (wheels)

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

Release files / djvu_rs-0.35.0.tar.gz

Download URL djvu_rs-0.35.0.tar.gz
Size 2.4 MB
Tags Source
SHA-256 checksum
How to use checksums
846f082abfedee521f49376941430c329e3e750d6ca644dbd0d25e1725b7b239
BLAKE2b-256 checksum
How to use checksums
8f9153a2fc18465d02f8c1d94df8e10379b90dfe7a0eaff2d33742a24291f24d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
e5b9a6a00dafad8604ac55d9f66554f6743468bec82c97bcb5eb1353d5b7f911
BLAKE2b-256 checksum
How to use checksums
c8b08186bc4ee5079a1956d514dfa4db665d0b5a5bb28cbf288668e8c714f530
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
537102fc51fec91c7f92765210725fd45a95c2bf1fce126ec158d6cec8596c2e
BLAKE2b-256 checksum
How to use checksums
9efeda2ef4b2cefee17a30bff2072d4706be5ff0bfb14c43999c9eb5aebc670c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 922.5 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
93f6bdf5be38476e972c513b58fd43e2bb73f8555d41365c48bf86cc70b6bb96
BLAKE2b-256 checksum
How to use checksums
1bc2cf7137d48919dbd7f3616c05338fe7fe6f96bb3cacff137fb880c2f68013
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 886.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
da3beef668d77c4e0016cd7a50516da0d9947d3fa460ace1abc981040411b316
BLAKE2b-256 checksum
How to use checksums
e0130de30811ced2505582024e2985d014ca692cd3bbfa3e5cb399a12816740f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 917.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
aa3e41bb57db2fb40f19cf235f84001b9cb4426786063aefa9f324e91cbe4675
BLAKE2b-256 checksum
How to use checksums
4cc3828b1618b525c8117650e83bf1d27d699ec0de112b4d38658e14e0b71267
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 881.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9132711408c02a4221d011c4c1f602debe8778e0db3460164facaea4b93dbb34
BLAKE2b-256 checksum
How to use checksums
b94ca24b148e42ec32814287cc724d09d398e5078bed93ff772c2501424c7908
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 919.0 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2cfabd245397309d993a7ee2b15fe4763e5fc19bc2927790ced7c88ab935a1d9
BLAKE2b-256 checksum
How to use checksums
74b4a8c080a28d248759f32ef06d2385427ad0c7c9789007601425e9719cf4ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 883.2 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f1f8f4328e611c3486f3adcc8ce7fbc41686298f70d6991578d60bb4bb26e524
BLAKE2b-256 checksum
How to use checksums
01dad0817a67137b5125103685566790a84695a727a338b63c919b50f8777e0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
14fb81193a30127cf7e87be1d87f1a49441df5bd48adc8f827d3858ddb3591b4
BLAKE2b-256 checksum
How to use checksums
4df6b1115f81f11c485c920bd3c07e73ee1bc999011f73c42e5f17c51805d267
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
44eb0c1dc3abb06df06023d96b89dfc789392257c2bd381689e9f2b6c5ff189c
BLAKE2b-256 checksum
How to use checksums
9fd4ed7f0acb2a2f9e9c4592866d5b21727ebef346a854b355510cdba8e10648
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 917.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
680bd35a9700c3cdc2875062e3aad57984858c1e601b498ec590ba6638c0ee72
BLAKE2b-256 checksum
How to use checksums
a76a144fe88129d6fcfc8fda232a2c52fd8c1706df4c37e252fe3716f4c27921
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 881.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
11da00368ee049a6c413d1953dec0834c102ce8268f6426d77a7b2bdd1af7409
BLAKE2b-256 checksum
How to use checksums
69136c82ffdfe1ef03e91d823a76adc495e024f764bb4e5596433f8750270b98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp314-cp314-win_amd64.whl
Size 804.2 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
41a38bf670f4d468f2b0857c906a71d93295c53d21f9e1c5a53396e7486163e7
BLAKE2b-256 checksum
How to use checksums
d39ceaab1e51c825fa20af365729d71a86cb679341bcc811d0e625caddf01a9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
6b795122dd924485a468a09958d1f3fdf37b4db485da869b9b239a6b1cd7b455
BLAKE2b-256 checksum
How to use checksums
ea8a3592de8d7c596303f89952e54391f5b6980efdd04468ef9cd428c37737ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
da263ca15c8f283cd6827c2702f3fb27254dad759d7a4b505d4e00b391f30bda
BLAKE2b-256 checksum
How to use checksums
a25be382d3f75220db872d88487b17f274fa690d59fd177cbcfe394fbabd4e93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 919.0 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9c9489d87f74d203be3115302f692cf6cf05990aa8aa02329dfec8226dae283f
BLAKE2b-256 checksum
How to use checksums
8851dea335a123162a6c85e688b9b0697f37ff2ff7561b599f5e14cd94a9ce1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 883.2 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
88e81385a2a2e807baff6aaa4e1b18962821dff7dc0cdcbfbc3693523f3635d4
BLAKE2b-256 checksum
How to use checksums
3b0de2422b815ed72bba7a0196923473f2f75db94bdb4318424580350cf80ec8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp314-cp314-macosx_11_0_arm64.whl
Size 844.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c73a11a2ce599ca5655fd773f48c3ee5efc368c5ca53ec083095a727d397a523
BLAKE2b-256 checksum
How to use checksums
d5a9590935958f46dade99e282244ba3e04148c650a795b4aee76faa7be61ed4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 881.1 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
264501e03798aa7c56c65fe57a0796663ea1ceb13143471ac02a43d86b547667
BLAKE2b-256 checksum
How to use checksums
2b7dcbd98d7800792b61289c4cb727bbc9addbcd8a30f0cfb15866904b5e622b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

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

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
4f07317072980558f2fa4737f23e163fd39c249bf0e0c317205e5af41665e178
BLAKE2b-256 checksum
How to use checksums
c6d94452cdcba2cde2e3806d5d3c2d92df3105c887ea544349610d08d8e47cca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
b1e9f6ede8032eff594785ad2954f594ad0ab0635f242cf037a2453d1e6c4050
BLAKE2b-256 checksum
How to use checksums
78e251b1f8fb9e96cb8c21a938ef1dc53f2710da4d37afa747ca2f646f286e1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 919.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7508d4e5977b97f6ede27a3d9077e83d25bdcf285cb979a7abb1d38a8d1e0f6c
BLAKE2b-256 checksum
How to use checksums
d7c72f309ff7b3873ea15d5eb74b6b022b9bef6c0fbd8bd1701ae034802c7b43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 883.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b4028221ac360c6e480ff7634dc82ec811d4cfabe3f4595892969fa997cb2f25
BLAKE2b-256 checksum
How to use checksums
9c57059df713b7d64bb92e8a5f1a212b2175dd29ce4ea9400d2847a1b5d0f488
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp313-cp313-macosx_11_0_arm64.whl
Size 844.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
af427e687a2f9c5c473819899521f612a77a75f79407c9c3abfef705c5de7920
BLAKE2b-256 checksum
How to use checksums
b21eea2bf7c01c1d7f95a535bd9bb3023ad03c1c85d466e6cac87802947d5c7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 881.8 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
366d5a14ce614e2372e52ac72d5aee8a833428de37beb358fc5c5cce2121f799
BLAKE2b-256 checksum
How to use checksums
95e272eefa1c62f1225c731799d0805da19ff509b84aa73beb80686ea0c6c518
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp312-cp312-win_amd64.whl
Size 805.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7329903ad410e572b7989bba2626deaa71cb0c7c2ce51d4d1e84ffc7205bae01
BLAKE2b-256 checksum
How to use checksums
9e6dbd961a0672e704c463a3221ca82f91c85e025b2f8b0fb9cc464b1349520d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
bb86e2ca915e3a70e0d5bbdb27d180521bff2760920843dd1fba2eceffe17130
BLAKE2b-256 checksum
How to use checksums
e028c1f8c5f844e86820f18b6f786c8d79d8d8ae112c938880a6b979ee0dff49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
62fc52879a4fed1062839a0dd2b68a1fcb152e69f8b37b655b1521fdee0c5ba4
BLAKE2b-256 checksum
How to use checksums
4e18866327f0c421c50d094d1bcec35748f276484da7051151f2f62b7388c94a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 919.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8c609909895caa43756917bd8641e7beeabd62ad0167be591198505355892b96
BLAKE2b-256 checksum
How to use checksums
c184ea4bd18a42017afb0d5ccae305360733a5a4a6464fed9819f87c0278d8b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 883.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
482f474ca333cf9307f4b6a5522e65ee801312135061774ef65f46f1f718a2b2
BLAKE2b-256 checksum
How to use checksums
39d7ecad53f83a9b1ef872fc1cce26e04d9f0930792bd9d541fcc99f4e030e00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp312-cp312-macosx_11_0_arm64.whl
Size 845.0 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
49f6aaa2d1014197dc1b3ec94f9eddf3fda548fac508947b9fe015ac4daba7f8
BLAKE2b-256 checksum
How to use checksums
5ed1d4526c517a8e7cab8f6055e72c08b39127c93e0bb7965a2b859b2afefb08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 882.0 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
7c60e42b268a79f4da11cbfaf390d4553b4b8e1924281ebce6902f9f130d1f8e
BLAKE2b-256 checksum
How to use checksums
3fd1772151f128934341a3824fa6075bcf660ad768229a033317ca70094f8228
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp311-cp311-win_amd64.whl
Size 808.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
8ef9454e980fdcc536a49e60a1139d2c129ec0c214fade07b4cf254e8869a693
BLAKE2b-256 checksum
How to use checksums
e4c37ed8402c292ef0b246e9afdf9d60c99e109a1516fd4ff96da65b96d54ca0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
7b9c2ced62b9eb92636abade5583a6b7530b57de357bc4226f803a69b4b85f29
BLAKE2b-256 checksum
How to use checksums
d5ddbc0e147b2b6201b86cddbc168db0d80421679fdd52a5c1d7f6791d040c99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
096c7f11698b6da73eb2fa829a36f7fc3b72016c7d457d4b9d5ac915fdce381e
BLAKE2b-256 checksum
How to use checksums
47522d0b10648ffe253fea796e62c84a38f89ace9a4516a9a07eda51af319b59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 920.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a7a0561836d1a8d3caaadeff2671e079215ea2b28ad802d008a6f1be87d52555
BLAKE2b-256 checksum
How to use checksums
832bf02eff7b90298c6fb771c725ba8bba0db955ff8a0844a2643c95c31b3ec1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 884.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7acf2e50719f886198ba61a814d4722402976a721e74596ecbf8e603df732c19
BLAKE2b-256 checksum
How to use checksums
c41e083fbd903f32a7a8e64e856f564d7cb4c7656db9c0dcd773686c4b4b8179
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp311-cp311-macosx_11_0_arm64.whl
Size 848.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c5950ba4684d9d5cb4093ca4e2d0466d330bed213cf34bbc25f964f7ac7c27ab
BLAKE2b-256 checksum
How to use checksums
b738bd8a90136da060a1108a959464582b1f0565e95ae36512035491a82c6df1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 876.9 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
cf26213f4b7672060fd95d96188958b67ac2305468ecf7a87671cfdbfb9e54e8
BLAKE2b-256 checksum
How to use checksums
865347d2ef7f11d19d7f496f0ee78bc33214778c13969cd4f181218961b65347
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp310-cp310-win_amd64.whl
Size 809.0 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2284040a902d67d8486b7a71ef4467bcf70e5598a10bd08d1983dc464f25f805
BLAKE2b-256 checksum
How to use checksums
a0af4ba8ed5f204192b3a6e01dab8c839a7e2c6e4325e46a3e82e8f86f166a25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
8da11c1d6c4e57d166d344fdee9056ab6e31b2e0907401c17ef83dbcb84cf07f
BLAKE2b-256 checksum
How to use checksums
fbb6034fedd1c825decd0cfeb75d494205c62311ce62eb6f01913de1edb2775b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
70552eb2114676e6178377dc81440ccc793e226dd3f32fa0158cf72830328515
BLAKE2b-256 checksum
How to use checksums
8f4854097bf52816ecd7a91bf68c076c034182a644f04bfe1efea2e2b2ce4694
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 921.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3220309d8d117847087659d62c8a43cd0ff82318cbc474f960519a754b7279de
BLAKE2b-256 checksum
How to use checksums
b662dfed31d051c195eb6f2215442b33fb17bdfc0167a9eb719e69ee61a39690
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 886.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9626d85fb538c69d8abfe3461068e7967eba59375ffc5b467b5bc137d4480c60
BLAKE2b-256 checksum
How to use checksums
5e0e0ae6a29bfdc4d207002c12ddff491461a1a19649ed3aa7390699152c85c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp310-cp310-macosx_11_0_arm64.whl
Size 848.8 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dec1d6f21000ed54ae3d27dcf469c98ab952fd651d93cbdffa2d6c37bc1c9360
BLAKE2b-256 checksum
How to use checksums
91d901c1e1d08d7521da087df7b308b163ed4c3f4b6c532ac7b95da9d783f1c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 877.8 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
316140728b0181345d1af680d284982d5c758681085ec3a81d273586e6a596bd
BLAKE2b-256 checksum
How to use checksums
a3dbed1b0dc31d0af21ab699b05b578268fe9665fa0cf7f506337d6c3e387e5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp39-cp39-win_amd64.whl
Size 811.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
40a129e0e9a99ef18c8596958241f879b5921869ced20fe98f617e54f088c612
BLAKE2b-256 checksum
How to use checksums
ae5f17f74bf2fa4e640e31e8742e41098892e648c43f8473a23c23cbb79d563f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
26925b9777e1fca9923e6c8c92f53481f392d2611f62d64829dda9d5b02972e6
BLAKE2b-256 checksum
How to use checksums
17045a1e465d26c2628a0c8a38853b307570c57866ef922a00224b097a3a2294
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.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
f8ce4fc3ede7aea1fdf2d65a7db2254a31dd3123c0eb06f2e6fe13894fc29cac
BLAKE2b-256 checksum
How to use checksums
016acc0ce21aec388eb21c20d15062caaf40fe400c997733e2e92a0642be2971
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 924.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a6d82a6c732a62ef4c1708cd711134f46c79a7bea3f3e3e02cb9cb16813795c9
BLAKE2b-256 checksum
How to use checksums
820848731ab96f8dc95ad555ef6bbb41c4446b0920305c735e7120f859705840
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 888.3 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e5c9a45727e801a1fe2fc47deaa0c1fab812479a9a98d37aa388b71cfe5c0297
BLAKE2b-256 checksum
How to use checksums
51990a60a7e3ec06775bcf219703e309ea8014645a7aacb71c0780a62b0e922a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp39-cp39-macosx_11_0_arm64.whl
Size 851.4 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ea41ffe0afaa154dd66690b035640c421aadf59aeb838b184bb97cc255eddcc0
BLAKE2b-256 checksum
How to use checksums
95870a0a11a62a462410160065dee12ea413d2e25fe9605b56ae1ccee96ed71d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

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

Download URL djvu_rs-0.35.0-cp39-cp39-macosx_10_12_x86_64.whl
Size 880.2 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
cea665a2ffce4c343cc2e855ea26d02fe98d0ba192673780638c34dcdf4d3ad8
BLAKE2b-256 checksum
How to use checksums
355be00d9c6dff9606fa20b15c61516f70ca8f9be5d302ca1c7b352178e65d2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI 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 22, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

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