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.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (729.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

djvu_rs-0.30.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (681.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djvu_rs-0.30.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (502.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp314-cp314t-musllinux_1_2_x86_64.whl (726.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

djvu_rs-0.30.1-cp314-cp314t-musllinux_1_2_aarch64.whl (677.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

djvu_rs-0.30.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp314-cp314-win_amd64.whl (398.1 kB view details)

Uploaded CPython 3.14Windows x86-64

djvu_rs-0.30.1-cp314-cp314-musllinux_1_2_x86_64.whl (727.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

djvu_rs-0.30.1-cp314-cp314-musllinux_1_2_aarch64.whl (679.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

djvu_rs-0.30.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp314-cp314-macosx_11_0_arm64.whl (470.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

djvu_rs-0.30.1-cp314-cp314-macosx_10_12_x86_64.whl (486.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

djvu_rs-0.30.1-cp313-cp313-win_amd64.whl (398.9 kB view details)

Uploaded CPython 3.13Windows x86-64

djvu_rs-0.30.1-cp313-cp313-musllinux_1_2_x86_64.whl (727.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

djvu_rs-0.30.1-cp313-cp313-musllinux_1_2_aarch64.whl (679.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djvu_rs-0.30.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp313-cp313-macosx_11_0_arm64.whl (470.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djvu_rs-0.30.1-cp313-cp313-macosx_10_12_x86_64.whl (486.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djvu_rs-0.30.1-cp312-cp312-win_amd64.whl (398.8 kB view details)

Uploaded CPython 3.12Windows x86-64

djvu_rs-0.30.1-cp312-cp312-musllinux_1_2_x86_64.whl (726.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

djvu_rs-0.30.1-cp312-cp312-musllinux_1_2_aarch64.whl (679.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djvu_rs-0.30.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp312-cp312-macosx_11_0_arm64.whl (470.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djvu_rs-0.30.1-cp312-cp312-macosx_10_12_x86_64.whl (486.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

djvu_rs-0.30.1-cp311-cp311-win_amd64.whl (401.3 kB view details)

Uploaded CPython 3.11Windows x86-64

djvu_rs-0.30.1-cp311-cp311-musllinux_1_2_x86_64.whl (728.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

djvu_rs-0.30.1-cp311-cp311-musllinux_1_2_aarch64.whl (680.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

djvu_rs-0.30.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp311-cp311-macosx_11_0_arm64.whl (473.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djvu_rs-0.30.1-cp311-cp311-macosx_10_12_x86_64.whl (484.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djvu_rs-0.30.1-cp310-cp310-win_amd64.whl (401.9 kB view details)

Uploaded CPython 3.10Windows x86-64

djvu_rs-0.30.1-cp310-cp310-musllinux_1_2_x86_64.whl (729.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

djvu_rs-0.30.1-cp310-cp310-musllinux_1_2_aarch64.whl (681.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

djvu_rs-0.30.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp310-cp310-macosx_11_0_arm64.whl (473.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

djvu_rs-0.30.1-cp310-cp310-macosx_10_12_x86_64.whl (485.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

djvu_rs-0.30.1-cp39-cp39-win_amd64.whl (404.1 kB view details)

Uploaded CPython 3.9Windows x86-64

djvu_rs-0.30.1-cp39-cp39-musllinux_1_2_x86_64.whl (732.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

djvu_rs-0.30.1-cp39-cp39-musllinux_1_2_aarch64.whl (682.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

djvu_rs-0.30.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (520.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.1-cp39-cp39-macosx_11_0_arm64.whl (476.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

djvu_rs-0.30.1-cp39-cp39-macosx_10_12_x86_64.whl (487.0 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: djvu_rs-0.30.1.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.1.tar.gz
Algorithm Hash digest
SHA256 2341dfaf097a40d93e3faa8ce1eaffad94aa73d30cee457ea414b407cf01bcba
MD5 14091dde49354e0a24148a3cda56597c
BLAKE2b-256 5f1b3d101e475d83b5bd858c26ceffa379a37e02aa474083d510ec3093d1d273

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4761bfa6cbb75dbcc30c57ee62c773c18441505279af8fcbdd790018f9e7c1e7
MD5 5c5efda07a40eba364230e4d68c29322
BLAKE2b-256 8992288810084fb108a9124e0c8192f4774ddb16fc5be32c50621751417fb02b

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d70102ed68f2bb75533940888c3b8c8fb67481d4c9b3ba0732de12bfa4cbb92
MD5 8296f996811ea830118ba0b6cc84743a
BLAKE2b-256 8ea4a8f7fba8a0078f85c985403a9b9fa7f94adf3ece7f7c064950b30ef03e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02e50ae3cff20f70654757bda1ec59b7607c42e4b71b8f815583bf63da2a1e62
MD5 509ce7433654bdaf3fa731551adfd3d3
BLAKE2b-256 6a98f972259535191cb021184e08532bad6f7579f74b1cf4dc65ff6054e6ae40

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0612b8a1a59eb7d3d25227d06a088c913b987e0a8c85ec6b89700457b84a3163
MD5 1cd29a9afb2b7f4fa006d14fddd128d2
BLAKE2b-256 a94d3c3368d802d5d103cc2bbe0b9fe91b9727a2f71e3a2f52d5b47681a03b21

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b17f96f36aa7e5312d771456137b4e7d4716c0fe5324ad8134ae6791a200ae3
MD5 243f2df64b870c92c005fc3a0188b224
BLAKE2b-256 0c821ec31beed51e872f1eabd82167e449ffb1f21b559fb582f2e017c4a35309

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 602550d86c17c51d50a0e249d350b92012d7bae627ece1e3cbf204f36e80b47c
MD5 027d4eb468d659c4c5fda71cb1745703
BLAKE2b-256 47a0e7dd6b8a202fd647b6d748b40fbfc09822c99924baeb82e4f95348b93c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1a09a2a5ad41520cb6b975acedc1c019ad3763ed3d13baadd7deaa25bcfd945
MD5 34d3cf23d0364d123ba68db9aca31984
BLAKE2b-256 848a386859bc5bc6d74eb5866aff89ff539240131e6f440172b293181c8e8c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baf76a16102bff54a0fe184ae03426693f61efa1b00e1b76e2e05103bd02eab2
MD5 e98ee00f65651d9bd983f225347ec16f
BLAKE2b-256 8499abe15f0bd48a1cf83e26d26f2e2990423d99e560685d46b02bbe546cf9eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92f183b1749b508cd52bc6ecf0000241d479dc17989d43b08e39e75b7f6e3b7b
MD5 a38b3ed4c5620a82fb4ed1d1c51161df
BLAKE2b-256 61a37953073fb6e4697d659f48147fe460af08ff484bfcc156e08c0253f823fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a87031b55656995393f44ba6be49fcdc09eeda52991b2aba883774361ac41ad
MD5 b9d2b5d6d8ec0c9d1618307184907a0c
BLAKE2b-256 e7421d1f38662906ac83e65e9d59980eeeb370c20d16316751bf796bf0326cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2672fb0a151bd3ba23dd1dfe9c7abc1e471afa9c21afa55bbee818227a94095
MD5 d8ebc2e32d42fa1dee3dc39a7e9a08bc
BLAKE2b-256 32f314c10e0e10a7b06a660712f7e3a6a8d4c0a713b074602f1944818e351045

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 580361087a05cf5745cee215db1844ced4d10afad52e3f256179437a73efa06c
MD5 8352f785886427c7a01640635b2adb3f
BLAKE2b-256 3b89a91fad21bcaf2ba6f2ea85d294adc5db271dc5097f0d989333c1455c6b92

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 398.1 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5aeb8c0bbdc029925100009c3037bf22192e608a40a9a039457a6f4eb8df822a
MD5 22ffb1cccbde3371754a02074d3ca056
BLAKE2b-256 db1660b0e4e9ccfa62e6316cc0e0761a4a9ec6ec8533ccc1ebbaa8b950ffd7ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d30906174e3fb5ede9f02435aa13c210a31cfcff53e0026aed20a7d26a2dafc8
MD5 b86b2a5bac1ccbfef3afc348d0104337
BLAKE2b-256 512859090c2fc5da7f7bbce8b712697736b5f2b9fe6488b089aa11bcc5b64290

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73f2cc567132560fd909e3495ec379face4b025dbaed81eb3ef24fb6e2c6ecc2
MD5 07bbd2ac450899f541d20c5c37e41143
BLAKE2b-256 3b0c6cda2e89e538a89e0a1189b6058165a204d68a5d31372cd9d653baada850

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3b3820a59b2c71a8d78aa1f228ed5683858f354214618fdce5f22b5fa5363f4
MD5 17b96a75d43ed01c1bc1a7c84b71ecbe
BLAKE2b-256 cd2dfa83e49bc9e66bcaa43e1a76ec68652940af5e639c8f83fcef55e7651c56

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2ebac1996c1b40c36480975120d0cc258b3ee40f4528e0f5c675635fb4ed700
MD5 4e4137df773be269f568d431d59af508
BLAKE2b-256 4ef2069ecf898f103b785847012f11479881d51181318d9755cde78dc2de195d

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6887ffa028bb3ef7d3ff071a99eeec216307afca41b215e15d04a921ff6bc5da
MD5 fe13d1ffc6a5ffa83c4fb0483338bbdd
BLAKE2b-256 9dcf7adfa5b13ddec9507d4fef493acce5b9a7223030540eff2c039d2ccf8b8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 924edaf815cd92a36d14eb456a92faee40123c8fa6a9432fae7da74da7e8bce7
MD5 d47e79f794583022376e41bb6d76c246
BLAKE2b-256 4afb2c6953c148a1d1f94a4acea868a8ddb483dfd04525616e7e291a81f8e10e

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 398.9 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7850f57d0603283d7c50905b335fbf1ab8be7c9c717813d5212cbc586e3eac35
MD5 36b50f410a90b22b40bfd15008b37c13
BLAKE2b-256 e70fa7d0cdcefe44a42a17c131be2846eca6e47ce556418b071234de69499f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee08636058f06213b87128ca24096847d0a421f66319740ab9277fdf5a66cf21
MD5 5d359a2b34a00784fcadcc794317f3d3
BLAKE2b-256 fb73355e357444c5b2d91f074cd13af90e94ada1f3cad6f5034084f1ff163d5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e04f29d0f01098ea3a2459e6938474d6c66730dde212eb652644712ed465f30
MD5 9c6a7720d5e7936bb233f939135ddaa6
BLAKE2b-256 f61a53cf499d1da29bda3990d33a467ea8ab1063743c2182f4ff606281f0d472

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25c6f0f3a8f256879942e96eb5788e57405556a05a958ec2f637d20f7616ee00
MD5 4640527188d7e8c7173a15f40daabd38
BLAKE2b-256 3bc9443005dd9a4d5a0d771758bd6d479c3279d42fbc2006951646087ebe6b58

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fb9a965b87af58f669dd844756a25929cb1dd0d8b72ed2a9c6c4d5dc18680fb
MD5 e33506cd8da84c8a40083918cbe5e719
BLAKE2b-256 59ed7128a947c57adaad4a1521b824bd2c3ac488af436207f462361358fcb17a

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49e13a26091b395e3f85ccddeffc1c74a1306b83c8a448c9ff2a9f1e6161559a
MD5 7baca95b55ad233158189a4e88447f5c
BLAKE2b-256 22f40540c42627ea97f7d36de8816645413e7a384611697930f9d456e2a4276a

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aeebd14088c9eec634eb48be17ac69c6852470aa721d23b34b4664d3390d2abc
MD5 1fe2474d5b66951005b7da74a4f763e9
BLAKE2b-256 4b9f6d4819a5c372c87071fa24271bae70ae17569b2ff445cc9117ed3d69b7dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 398.8 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a623056b19ea7df7d3fedd5564a0c0dd45d538f05a70c05f6481b77057cf8a6
MD5 a593f4a05a73f3571b26c4350739026e
BLAKE2b-256 d2e667a2a6be20b1bb7c59a55c3fe2fb38bde7bbef045f8dc7e2216965b0a10a

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3209c5f1389f896df91e3bb240e21b526e63b31da9c3542641b2de34a500d177
MD5 769db9f536d35f55cebc1eb5c2af79a1
BLAKE2b-256 2b52950da851cba2cb1e4368d56c03de7246bfcbe60d182445c1bcc09413bd89

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52454460fc54a8d3be85bb738af250bb4af01d140eb2a319fae374f607f33d57
MD5 6c61f3e58e4a0c9e7ae94c18dbab26e6
BLAKE2b-256 4dcc9b77799ba6040a5005e7718c86cbe98e8d53f4c614e9e5e87839cda0e285

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea983b5ada58e42d945f88f694ff6987e70bb43aa21e7ef461eab67aaa11194f
MD5 6aaeb8a007a5484faeb46e5511ab9989
BLAKE2b-256 a003b09e71c5fd90a07ce8ce7acd53798597d8f90cd590d2222ca4cb60232c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd25508226b1c9192c1a923c2eb3956b28b01a3b33d5d6aced82d4580ebc2816
MD5 ee7c401e4cb92aa0ace3a1c0a1d2aadd
BLAKE2b-256 8043ed97ad9655dfc3df595692f98ce4a43c0b4b7a3c30cb7b04eac865f9d61e

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf8576f6a0c3089aaf24036164f7623c00ffff5f5ead63be7df3bf223c103cfa
MD5 fd8ee91e71bc1ac108f07ddba7edc14b
BLAKE2b-256 e9c71254ed53d8d666c87bc01bcbb25cfa6c7d0a5d6b3989cb386df671994348

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49dfd6d56dbbed3665abe9dde93bf6f1e80ce955578b71babfdaf9a2b29c408b
MD5 5c47593f6af2cbedf0031234c5fe0900
BLAKE2b-256 7dcfb1b6ddbb446cf7b2177cf432dccd2432184543530a1380c43b545da3d6a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 401.3 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 02aaacda126998496846eb591309dce5d9d7f3f3e667964f30bb42d45687a768
MD5 2e44fb9fa809f89d8f0d83bbfbd68528
BLAKE2b-256 786728765eef60bf282e3dcb30347a670ef61520aeec7509e5a9a6b7ade843b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b2bc9051a581fdc1c666b57e4db023365ecc48c0f51ea160d575b2c68babd87
MD5 3a1fada40fccccb84cadc8bc7b1fdef1
BLAKE2b-256 74c3bf8b3d137a03a53bd9ff128b6818f29d33857eda435244f1eee65312de76

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1922b969cc18eb64e066fdece6a8b2579bfc77638159b4ad63981017371af1e8
MD5 ace94b2ff40e378f154c4271d032a521
BLAKE2b-256 678caab113fd5821dc7395bd0e8bdfa56aafd0a826665f1dbcb9d0d00fa82fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b82406710731a6452a1cf0a71ed33c2f13db1b8f3ad6935a9473079ea892217c
MD5 bda4f4d4f001fea8d8997d13acaf14c7
BLAKE2b-256 31dedd4914ea17017e59b6dff93e6607a9ab2f8a6c2b6aa0b337223194241cf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c01553da3cb1fb815befea2df266d287260fd7163528c5930356cec356445684
MD5 27949dc593da5a1954f4e87950a28fdf
BLAKE2b-256 f5ce8232e28e4c85404c20f69870f63c19149eed59328129d8b932629e1705b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f16aedcef0a2f24dacda03b59a7a3af5adaf878701b29e4816eb127592265475
MD5 d719da287485738eb9ea2316354d53f3
BLAKE2b-256 c890998d9de79c08a7e8a33f2011cdb5178c815cd75eb223ca3231469703c9f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca6d87b154f4dec93bda2039fe38aafccb1e0c6c45107907932adbf0f9ec44e2
MD5 d78a8f4c514a9cfd195a2a05e53b8552
BLAKE2b-256 5dafc65d763ae8a4fef66926d79026defd792f738d8acab2b5ab621b56caa67d

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 401.9 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3187f68c747625389a491faff5cbdaed18cad857bab90d68a47b17c93ed7272
MD5 3e758ef4a4fd4fd10f89882f6c8d3a3b
BLAKE2b-256 3b3c8978906e44fd8b2229d580e8d3eb9f594fa1a1d6130893e4ea0a3d30fab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bbfd027029e169bcb138573eb2b7b723b4ad081d9371a90c6df6fec83c0d493
MD5 e7188db61d2c01b8dade1de8a4ab0d00
BLAKE2b-256 a2276bd4faf7168414f27dcaf7aaec96891f869d0bd7275402cb64261c557252

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cca1a17d5df64eb90c318c1eb5dc4e2a874d10feea866c77ea6d2b5406fd9694
MD5 99605b5a4a370a24d4b89f204d223538
BLAKE2b-256 6d8b94888a3d07f6bdb55aae13daf0f49081e33b3123f647d23defa928d81a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c04805a60b60ee10adea322b6b7c33f1f2b1bc8d4479e25838e4e0b7bda9a41f
MD5 fad39dc356e44a2f71b1ccb71f609350
BLAKE2b-256 a895bc627ba4f37681e83095d651e5ef607698a95a01c4e2698cda8ac14b07de

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 045eedd6e963858149bc1126e9884d7472216aeadae726ac400719bcdb27bfc5
MD5 73ba4eed082fc2e2420d625a810393ee
BLAKE2b-256 a9bc5fa2a3ddeb9ca4e31e8c909ed4182d53abe712d70616b31bec77b1bc657f

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7754fc4cc26e6f1fa0058f3dcdc4bfe3a105a183b24a6d90c493c0288871a2fb
MD5 6e0d35129a00088220db043019e043c9
BLAKE2b-256 c9c8cb983d7d4fd3978629a102b237a38afd56d2f48627f63d4614d153936905

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 540db8f1586be52b767853f2c1e51359f7c6b8396c22dabff27fcc9e17654fcf
MD5 e63a2d153c966f62f4063b53399531e2
BLAKE2b-256 5ff5b4c7b9384aa0aae0c2bfb01c94017e7d86f06362f226ccc47c8f27f0b09a

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: djvu_rs-0.30.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 404.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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 18f1ff4517e147542865bc8e4f4555c485642e35e5c610672c36c449c2ddb966
MD5 a20a7804a7bf387a1972513f39c07eca
BLAKE2b-256 9776d701775b5c24c9e5c6c6422de31974e3be54dfe57f2002d27edffdf210ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcdc6a859eb42ddca6824aca21cb7209ff30ff5b256c4b72b730fd9f7456725e
MD5 38ee6318e1b6d5c437230a0d728b6b19
BLAKE2b-256 ca017f033739013b3df1a105435461a44efd1222566389cac0ff8fcb24fedef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6434d6240faccb4060e2e94fcaeb3194172cf3ddc2030bc52638a05b663f4af8
MD5 0adee7b0c54c2ebfc33eb7f475b9fe01
BLAKE2b-256 557ae5779bba9d05558c2791705317f068c983eb0c685b633558b9558b17eb2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55522477f0319228913ec26d2fa39126b159d4027aca80d1eec23501dc45700a
MD5 75aee535a3aa5316bfc0bf96510d2969
BLAKE2b-256 16dca261a65bb79d2cec90bb6742dd7ed8ae83f575b9f790745341c9763ec874

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fff0a5d68ad5f4a52e7f2dbd4ac106c79c0f74448ddcd01c38910ef754729b4
MD5 02d1f28e9b3d63dd21e7ee14688717c3
BLAKE2b-256 04c41c8fa7d2239ddad4872aa9236817d63c2e0aa14fdf0a244573b130c73f2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9745f483f803d555f4f9ef52d3f9dcdc50898705a5e08be9a88b658db823fd2
MD5 71f5c047a0cc992bfd89a0eb5d73bb49
BLAKE2b-256 07d97799d4fec482f6e43c92a261095d12da73c0772affba0190a67e639aa851

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djvu_rs-0.30.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 482913445cf1889eeaf47508d2fe7946f9618172ceb9c2660b9f76f09f5e633e
MD5 00b0462a3f7b19916574283db09d472c
BLAKE2b-256 83cab1764243edb15c0302f0b461a6644a3063baded4ab417209d9e9433ee33f

See more details on using hashes here.

Provenance

The following attestation bundles were made for djvu_rs-0.30.1-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

0.30.2

55 files

This release

0.30.1 This release

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