Skip to main content

djvu-rs Python bindings

Python bindings for djvu-rs, a pure-Rust DjVu decoder and encoder. The bindings cover the reading surface: open documents, render pages (to PIL or numpy), and extract the text layer.

Encode, document mutation, and PDF/EPUB/TIFF/CBZ export 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.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)

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

djvu_rs-0.30.2.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

djvu_rs-0.30.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (730.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

djvu_rs-0.30.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (682.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djvu_rs-0.30.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (520.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (503.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp314-cp314t-musllinux_1_2_x86_64.whl (727.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

djvu_rs-0.30.2-cp314-cp314t-musllinux_1_2_aarch64.whl (678.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

djvu_rs-0.30.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp314-cp314-win_amd64.whl (399.0 kB view details)

Uploaded CPython 3.14Windows x86-64

djvu_rs-0.30.2-cp314-cp314-musllinux_1_2_x86_64.whl (728.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

djvu_rs-0.30.2-cp314-cp314-musllinux_1_2_aarch64.whl (680.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

djvu_rs-0.30.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp314-cp314-macosx_11_0_arm64.whl (471.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

djvu_rs-0.30.2-cp314-cp314-macosx_10_12_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

djvu_rs-0.30.2-cp313-cp313-win_amd64.whl (399.8 kB view details)

Uploaded CPython 3.13Windows x86-64

djvu_rs-0.30.2-cp313-cp313-musllinux_1_2_x86_64.whl (727.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

djvu_rs-0.30.2-cp313-cp313-musllinux_1_2_aarch64.whl (680.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djvu_rs-0.30.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp313-cp313-macosx_11_0_arm64.whl (471.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djvu_rs-0.30.2-cp313-cp313-macosx_10_12_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djvu_rs-0.30.2-cp312-cp312-win_amd64.whl (399.6 kB view details)

Uploaded CPython 3.12Windows x86-64

djvu_rs-0.30.2-cp312-cp312-musllinux_1_2_x86_64.whl (727.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

djvu_rs-0.30.2-cp312-cp312-musllinux_1_2_aarch64.whl (680.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djvu_rs-0.30.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp312-cp312-macosx_11_0_arm64.whl (471.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djvu_rs-0.30.2-cp312-cp312-macosx_10_12_x86_64.whl (487.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

djvu_rs-0.30.2-cp311-cp311-win_amd64.whl (402.2 kB view details)

Uploaded CPython 3.11Windows x86-64

djvu_rs-0.30.2-cp311-cp311-musllinux_1_2_x86_64.whl (729.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

djvu_rs-0.30.2-cp311-cp311-musllinux_1_2_aarch64.whl (681.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

djvu_rs-0.30.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (502.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp311-cp311-macosx_11_0_arm64.whl (474.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djvu_rs-0.30.2-cp311-cp311-macosx_10_12_x86_64.whl (485.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djvu_rs-0.30.2-cp310-cp310-win_amd64.whl (402.6 kB view details)

Uploaded CPython 3.10Windows x86-64

djvu_rs-0.30.2-cp310-cp310-musllinux_1_2_x86_64.whl (730.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

djvu_rs-0.30.2-cp310-cp310-musllinux_1_2_aarch64.whl (682.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

djvu_rs-0.30.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (519.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (503.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp310-cp310-macosx_11_0_arm64.whl (474.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

djvu_rs-0.30.2-cp310-cp310-macosx_10_12_x86_64.whl (486.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

djvu_rs-0.30.2-cp39-cp39-win_amd64.whl (405.1 kB view details)

Uploaded CPython 3.9Windows x86-64

djvu_rs-0.30.2-cp39-cp39-musllinux_1_2_x86_64.whl (733.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

djvu_rs-0.30.2-cp39-cp39-musllinux_1_2_aarch64.whl (684.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

djvu_rs-0.30.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (522.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (505.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.2-cp39-cp39-macosx_11_0_arm64.whl (477.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

djvu_rs-0.30.2-cp39-cp39-macosx_10_12_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file djvu_rs-0.30.2.tar.gz.

File metadata

  • Download URL: djvu_rs-0.30.2.tar.gz
  • Upload date:
  • Size: 2.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for djvu_rs-0.30.2.tar.gz
Algorithm Hash digest
SHA256 f987e860759ac1862f66e0c4088b3c7d7469dfafe40d3bb5081d377485637a98
MD5 d2e79eab24165cea3e3a168035688e0d
BLAKE2b-256 9aa25f5101eab07621a55237f427e5cec57881ac5b5b5afa3c7414b4eb16f7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2.tar.gz:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a09bdba9a549db72df45c7ea56d065adaf7780969ba6d621839263bcb818c2f8
MD5 a3718c9ff2c1576dc441a6d49f5a2640
BLAKE2b-256 7c13816426cbb53fe1dfb7e7ac70283bf132c5569e0d82d97b496d7e5205d09b

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e145ecae46cb6154f8aaf956b893690e89e94cad21a4c77dc73be009264dc29f
MD5 153c8367b7cee22b017a1495c8e0b760
BLAKE2b-256 848b88911a4b8c5e1f483aa23db03e31f8187571d586d02ba0a0a82a6ab4e065

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e1307bdffa1764aff5e77772d704b8f2a7fefc8764671b5e21964f51d3c942c
MD5 260b486e1ecfbcaa41dd23927d827636
BLAKE2b-256 46756504aba71671072c31ce0284ce545a4f4b28af44c1f948793e40d1ffced0

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cc0a9eb851e5ac9b34e4ef2ae6368b61a29b09f2c0d150b87f46bfa24eb2ac1
MD5 194df4ccb97874dc4d9bdb32751f48d0
BLAKE2b-256 0fc888c3897c4e564113d95376065684f88d18875146040a5140d6ef259598e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce01d0a94510e581822c063b6aa5b6d168c333e309b80d6c6b6886e45ee54266
MD5 17452bbb2bc791d5758b8edd051c7b58
BLAKE2b-256 7753ad03ec5ca0cd279ee409c0d712d3f57da12fe2bf0817b99b4493a767f55b

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67ff9d43b5e72d400910969e6ecf7342e1722a07660db79be765b10500c58b16
MD5 3fb31b97e5036fe4f8d70ac9b8f08e43
BLAKE2b-256 df2229cee6e45383bf9d703bd3f85448a1d23544c5619f8baa3de97cf8eeba0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a4a3ccac2dc4a4478333b46eaf54c10b208f1bab713d032347f3d568ca1d811
MD5 c6962c36f92fa9b5c6cb9a753a344dab
BLAKE2b-256 29d2a646360043b80046a9dce4f6952a57cee22f81049a94b2254507f0f0fdb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1a6c13f111bc0efaae3762c17d67ffd0358ca4f8f8321d6da8c590a7fa2df2f
MD5 051b78f2986ffcf97b5b0a6fac79ed39
BLAKE2b-256 9f0c5883757af8d697e992853507caa07983b0bdc70b8d3a0ef745781560dc90

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dd624fcdfae40f69493b09acbe15348a494c260fae89bf2800e2ab99f03c622
MD5 f3f53e09d56cb866c63dd23771a7fe10
BLAKE2b-256 1a00cc9ee7b09f23be80a27bbf87779f4dccb65eebd889fe05f1253d0b92b499

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca34f140e6e601c9df7cd39a133a4a428d3c5bf984ee97ceb7392024c4ef2cf0
MD5 9317467b101633d21023f956dc3f1a2a
BLAKE2b-256 9f307d1e78d5ae9864264c504e96b191a1a6d01df6d37f3de6de145a3f32bed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b10778fcced5eb5746c6579e1781ae04db00b79854ce72fe1bb078ee0759018b
MD5 714a10472e77195df1c4954c4b134452
BLAKE2b-256 27f68493ea291eb191d21ae0d776c5136f4d64c266178a489230f2b39b152c2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e9cb2f3e06ee7b0637d0d2c1fd5af58ed0dcdd97da46331fd066b564d30bac7
MD5 47908b3f5b59f092f0c3b3abfd49b6d1
BLAKE2b-256 4977fda5fffeddb2065fb94bbf0dd22fca5f8fb283ac01a377e5aff731576bef

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 399.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cf1e2f326c24df70bce552f9937a201c45f3c304bc9f88a213e3ca00159bac4a
MD5 e24cf7b66995e1a9ab345b7118280217
BLAKE2b-256 945cd11843a5effb6da99957f504e3d0691139d531c58dbe24fc2e4901f1fe0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314-win_amd64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6b01d9b9bbc60368ed8c2dba1d78a893ac92b857bcd82da9b363c281d137cd3
MD5 3963c49103efd84f6fc28425660e8008
BLAKE2b-256 83cf3a92f3d0b70650b7d14bdbfc6bbeff5ad011fce5a071a10a994d1d89702b

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15ed264361b200616b4c5da21eb5b92a9a1118aff620a24b6d65c1c8d9c98c5e
MD5 5a03049f789aad75759a97fd75af2177
BLAKE2b-256 fbb19b8e5b4cd9b24be1f470d8485dfb1552fb8da56f6bd167523a5a288a7f90

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64840311019cb16e9da545bba2d259359f1c44f91a3e93586abbd5c15801d958
MD5 d025568981709d4c46e08d727763e0d9
BLAKE2b-256 d5e6fc89b3c384ad36fd7cecee36fed6bad959b1a6a8134bb21ef4e949870e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4eea92cc1bf1125528f09963960f3af5d91953ebbf74884e1ddb24be57909e9a
MD5 1e85bddc8b9020ec3aa0f4e33e25e977
BLAKE2b-256 cc05cc13382c94a0cbebc38fce5cf23cf06271f21e2f37b14998f8245dc4527d

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2065c5c6501181c18f760d144fd1b4456e96258b7c7a90423e6e630ae924ca19
MD5 162cabe8092ef7ecb098e6fba30af88c
BLAKE2b-256 9c3d1024ead44c07f3d0bc9b715ba37f9ab8471111a210e7362a0a7c01e46375

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 743cb6a36d1cd7e1edfe892de0fbe77094293657622d7f06663c964df95c7a12
MD5 8a227fc6ca2599b59668a47b7d86e57e
BLAKE2b-256 5a66ae8084029719e4cec15f142fe1befc533855d3cb0097b1ca11d459ccaa7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 399.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for djvu_rs-0.30.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 745db5ec23451e2552378f431c5f4182a8d29538edeaf2a824458be6e12dd5f7
MD5 baf772b01268b805dadbf843cfc68d24
BLAKE2b-256 63b6abccf83c2a546345b2a8c0eaa256536d9fff4936d9e6ecf8a33b12841b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp313-cp313-win_amd64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b733c2eccae268e45a3fe05106666ed3a6213781189d2891adc9d723b580693
MD5 87b64c4aadebf3e0a6cc68eedab0f638
BLAKE2b-256 98a72298b725430ff3c2d50bbd13f4bf9204bf59f9b9661e54f3067fc96dcfd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bd3e616077048ca869f6434bb873e18f6758d4de0fc49aa7b18de45d1b7c255
MD5 a6a1a53df7d19dbe007265419a9f4f99
BLAKE2b-256 fedb6298ef0d16b3715aacd072df5acc27ad8d670f90ad2e8acc1bd46a23d34f

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2600024f2c00bbf76073c7511e78d67cd6ae4a0470c4d22b144cb89a0629ab04
MD5 3a91ef1e6af8e67b9e5004b5e3120aa2
BLAKE2b-256 e51c9f742395a5411bd8b703475fc82004fab20620297b1385c2f663d2101a62

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6aff98cf102e159b4661a8539a4afa15cbf6bf0884f95cf886008cf23d0dc635
MD5 8bc44a721b340b44d782e7a051d737c0
BLAKE2b-256 28621c7b1a5d5959d654d14f643dc7813879f269d92a6a2f9944402c572ba30e

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0336d879bd385812f75f63fb0da680a5ba61e66ce0879dbac56a0493ae5c907
MD5 4b1246da965314c48ea4a2ac5c3347d7
BLAKE2b-256 dc47f4f7770c158468ef8030c772c7da6b5d467d99afe02f5b8a08382159f803

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1822016de8d92eec0beb4f70745a9ca425dff30fd4a78409c7573c0dda04acd9
MD5 d46b854192dcff5ae9e207e476c6decf
BLAKE2b-256 ace4ce4c51476ed17263c9ac69d675e913c5efdec8cf1624564332f3bc6be4f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 399.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for djvu_rs-0.30.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 189b4943567ba5192174b1476a32219477cf036a8d6e56b9f803514366c49364
MD5 7cca86909d46e13a31041e3d01a4886f
BLAKE2b-256 683981aa850f100331a683b859f6b5cb30a6d196a1fb7a4a30911949f29e5d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp312-cp312-win_amd64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07a30bed5054546dcf1fb815a58e6635bc67a1eb99c21f0884f1c5166922d238
MD5 a199fa6e59e557df0fd183937f35d056
BLAKE2b-256 470cefc19e1403c0ffa9ceda8fef4ed554f12589c09c4cc74585a1902d4285a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 075372d8a01da0c81242328c47552a2a63e0b3d27aa976662c84587da8bb7992
MD5 e7bfe97140d74f2420ca7fcfbc78cd06
BLAKE2b-256 42fcf2faf4e905608329ab8d9478d7e60b5b9641f4550bdaac4e0cbd76a3779f

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75dbd335f41f9950ddd445d09633fdb436834b4d047df9bf060917e473b8d018
MD5 9f3bdf8d63594f468753960f8446cae3
BLAKE2b-256 23bbdf23722adde71b312213492973563467a3389fcc536604e23faa73603abb

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8d327893b958e4ddc931d3713b288a5103990ec1a8a73dd48b9a332a7e37c87
MD5 a5a6d3ed1b31007deb847052b129be05
BLAKE2b-256 fc8f322ce4c68f7595b5b246884f14c6a55e9e44bf5604e6ab1d2f73f740f6e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff4ec68cf859cc98c7336a9930d0a35f51a36b178bb3a6f5648785b2b8f61343
MD5 12f1932127d275160318e3d1aca04b66
BLAKE2b-256 89d61ea235a57ab4c78ba55021abcd969ee10ec498bf97fa432c57284f4bdfbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b283381999f8796a55375d383434486d356a43c37a0705a20251aa1be915d680
MD5 d5cec2e0be2096ef2e16b7e41ca21692
BLAKE2b-256 88690faeb98d7a05a7f401dd1367eb3fe1e8a67d78935650804683bc1b5cda59

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 402.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for djvu_rs-0.30.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a10fbee8c938f79c7675a2d774a9648b177f410b5abc32c8aa0f78ad421de89b
MD5 7d843e082fe3929ced1da42f42d76884
BLAKE2b-256 642c7aaebbba501301d413ee68c794e79c5eac5c69fe910e8726fb3dbabf7fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp311-cp311-win_amd64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 347b17b200e2c82c6a9b8255eb6641a63704aa5869af9f16a143d55de96fe244
MD5 de2e44fb8eba7386987139daa4746c4b
BLAKE2b-256 e71e664308887005c0b974520057c7d4c3573bf1657e79c7a1efd3af1e06fe43

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbb6e4ec6a54a14da1c248e68dc5fa89b8ebadd97299eda13c47b6f61ed36d54
MD5 ad16a8b81663126985c92af2fc0585b2
BLAKE2b-256 f9f79480428585fb5412de4ad6f62f0cdeaf69edaf47fbc6bd678727c4547398

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac22a125a4f58cbb836a83905c64de69d09c0240f553afabb4e920e072712df1
MD5 974e066db4788a3923b569a408f77b59
BLAKE2b-256 b2d786d313b736f6ea6b70c60b153b5377b541401bf85beac0b6f36da3315b3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1560b27b56fa17f7ae877d964aac2307f6e31565aa89b3881aa39e9f1e1e73d7
MD5 1e703058ccf34a40aded9ba4ed455558
BLAKE2b-256 3f0fb44a1226350a40d438dc42ff07ab34d03c4879da63bcb5456b937c4d263e

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d24aa5401d0208294af4890cf99defd66ed9506a5864f017da0b9f6a01fba56
MD5 d766621484ea1cc6ca5176d0171941b0
BLAKE2b-256 aa94d43a455d332e7b7386c80a765c3d1a31891781fb8ceab28321a114f40f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a86526d1c789c7d2d7469b3db21a772cf2d6c0e34b989bcda8d43ccbcd75380
MD5 91af6493f4bd47bbc61f6279f1c07c53
BLAKE2b-256 8c3cdcee49971b2e46b971d7e9309f7e1d54e23b74eb093da09d43cdb3ac77a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 402.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for djvu_rs-0.30.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 162f7adb5abf529082e64404cfac2c57d1c390d6099b6116322d039060027f59
MD5 727d3374b1df0db0e3e0d06d510dfd70
BLAKE2b-256 ea5f5c952ef347209110308a667b6a213164fb240f249d321ffc055fb72acb66

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp310-cp310-win_amd64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bdf024d977199e142925c27181f0b5f68519c50ae7c4e743996ce8f8ba35b27
MD5 01bb8490aa5f99747ae34e828736c154
BLAKE2b-256 5f799f49eb28543a901f080cfede4524957b12d439b48bd4f27932094bfca2ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aee9c2ce4a83c95a44e0bc35d92fcb7ac9c0a7996aba93e7c289aa5a9ad24d91
MD5 e4f4b2e4e7f90186937c050c265ab3c8
BLAKE2b-256 48ab89fd67dc1ba84fb3dcc008d575c43b884d3c768ac48e761d06909b0aa233

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b94950974067fc5313b2ce848756a78b748237f6844cb596895d1ab002bbf8c4
MD5 203a48a8e445bc1149e86136f0c17576
BLAKE2b-256 7c5e57c6c579356deb5af658cbe5e8fd193713c09f66236ce74417868b1991c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 653726b424efb5932bfa07c9b3dabf099af5d852dd6341b6c61c5db48b01aa8a
MD5 1824f0aca99e19f82b92546b163165ef
BLAKE2b-256 4b3947e1c949cacfaed731c1a312ff336a11a558d5e71652bae766211e1cb13e

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fc5d48e3ea63ec3974413b382697203100c6a47d690837ac7fac3f5b7c11989
MD5 0e22df26a5a231364d1a53eb69ef237e
BLAKE2b-256 8e07eb89226c1020a6706289d6c83e3c6a2dd6f02f4fe735cbd895cda2d88298

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d2ab54a78875b874db39ad15e51d4e6a8a9906f5e191e33c0bafea78d20745b
MD5 bd240e82e66f7eee212c4b9e6498c6b6
BLAKE2b-256 3b3d776fd6a5fd1bf0d1d24007b8d836566ca54b1db7aec8099c135128d4cf89

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 405.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for djvu_rs-0.30.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d1ac5ac70c142c8c609ad45e747524d1fcad7c6246751fdf2bf92a5b7d42c3c6
MD5 7549f3de6fc3b8eb04e57d5b0c4075b6
BLAKE2b-256 042752cd71e7941404772535293b6d7ab9b1e2a59f128a9a7c59192bc39cb5a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp39-cp39-win_amd64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 733e7b6aea5550ee0237b62808c9717515b22f33ae29f2a6901df4e2549a837b
MD5 89814548f3afaf332deda6c5d53fcbee
BLAKE2b-256 b3791ec1979f841746d4cb767e5dd891fb26e788827dc6a0662224622aefeb61

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb6afa9a31c7429eb5fd8d9ada3693cf4be8bfdbe2fbabc0751dfd75482722d8
MD5 2499184476943d1a34eba850feccda80
BLAKE2b-256 58b82a573e740cc6b5cb2ba51906fbb11d3f53b42e3e007dd3b0cb6a9a67c522

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a722096da5ce82ff7cbd08700539b4a5c24873d11798da323008de6042bb750
MD5 6eed786aa10c3690e93d531f7d9b089c
BLAKE2b-256 f5ace92cc4b5b7166e3fd58f061f8e8cda9472ebc358433276c13b6c8e95b3ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ef3fa245a53bfb78c0b1d49a2c9616182c218f37621afc68cea1dc197ad343d
MD5 067fdb6440443d294468f9969b2a3937
BLAKE2b-256 ce90479c42db85f5cfd71d491cab7b4de35faa8bce7fba97365765d6195c7482

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffb1198524e06356ab52fdb053c5c52be33153e87347719c248c0ee61e685fd3
MD5 867dc1ca93ba15687eee38c75c9aaeeb
BLAKE2b-256 aa9008e9a4464f5b7c9331623bb262ebb92399698aaf89b85530454d73a8cd50

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djvu_rs-0.30.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d5d66f67306a848ecb5108aca6c0b94e1dd7048ae30043b3e3ffc215d6efa81
MD5 c8c805fa3197faf527aa023827309d8d
BLAKE2b-256 78dba0b15782d95759f9deb1a2b1720b0f33b0c4bebcf138f333bfa9ca081daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.2-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: publish-packages.yml on matyushkin/djvu-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.31.0

55 files

This release

0.30.2 This release

55 files

0.30.1

55 files

0.30.0

55 files

0.28.0

55 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