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

Uploaded PyPymusllinux: musl 1.2+ x86-64

djvu_rs-0.28.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (681.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djvu_rs-0.28.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (519.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (502.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (514.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-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.28.0-cp314-cp314t-musllinux_1_2_aarch64.whl (678.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

djvu_rs-0.28.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (514.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp314-cp314-win_amd64.whl (396.0 kB view details)

Uploaded CPython 3.14Windows x86-64

djvu_rs-0.28.0-cp314-cp314-musllinux_1_2_x86_64.whl (727.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

djvu_rs-0.28.0-cp314-cp314-musllinux_1_2_aarch64.whl (679.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

djvu_rs-0.28.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp314-cp314-macosx_11_0_arm64.whl (472.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

djvu_rs-0.28.0-cp314-cp314-macosx_10_12_x86_64.whl (488.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

djvu_rs-0.28.0-cp313-cp313-win_amd64.whl (396.7 kB view details)

Uploaded CPython 3.13Windows x86-64

djvu_rs-0.28.0-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.28.0-cp313-cp313-musllinux_1_2_aarch64.whl (679.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djvu_rs-0.28.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp313-cp313-macosx_11_0_arm64.whl (472.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djvu_rs-0.28.0-cp313-cp313-macosx_10_12_x86_64.whl (488.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djvu_rs-0.28.0-cp312-cp312-win_amd64.whl (396.4 kB view details)

Uploaded CPython 3.12Windows x86-64

djvu_rs-0.28.0-cp312-cp312-musllinux_1_2_x86_64.whl (727.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

djvu_rs-0.28.0-cp312-cp312-musllinux_1_2_aarch64.whl (679.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djvu_rs-0.28.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp312-cp312-macosx_11_0_arm64.whl (471.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djvu_rs-0.28.0-cp312-cp312-macosx_10_12_x86_64.whl (488.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

djvu_rs-0.28.0-cp311-cp311-win_amd64.whl (399.2 kB view details)

Uploaded CPython 3.11Windows x86-64

djvu_rs-0.28.0-cp311-cp311-musllinux_1_2_x86_64.whl (727.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

djvu_rs-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp311-cp311-macosx_11_0_arm64.whl (474.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djvu_rs-0.28.0-cp311-cp311-macosx_10_12_x86_64.whl (486.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djvu_rs-0.28.0-cp310-cp310-win_amd64.whl (399.8 kB view details)

Uploaded CPython 3.10Windows x86-64

djvu_rs-0.28.0-cp310-cp310-musllinux_1_2_x86_64.whl (729.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

djvu_rs-0.28.0-cp310-cp310-musllinux_1_2_aarch64.whl (681.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

djvu_rs-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (519.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (502.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp310-cp310-macosx_11_0_arm64.whl (475.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

djvu_rs-0.28.0-cp310-cp310-macosx_10_12_x86_64.whl (486.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

djvu_rs-0.28.0-cp39-cp39-win_amd64.whl (402.6 kB view details)

Uploaded CPython 3.9Windows x86-64

djvu_rs-0.28.0-cp39-cp39-musllinux_1_2_x86_64.whl (732.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

djvu_rs-0.28.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (521.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

djvu_rs-0.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

djvu_rs-0.28.0-cp39-cp39-macosx_11_0_arm64.whl (477.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

djvu_rs-0.28.0-cp39-cp39-macosx_10_12_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: djvu_rs-0.28.0.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.28.0.tar.gz
Algorithm Hash digest
SHA256 18b280d815bf6d849732693c28db93162f34d76d28b5d51053de508093a7a18d
MD5 430570559212e5165732df17a0753c9c
BLAKE2b-256 dc2c2f808913c2dca3840300dad3c65b4a0057c6c1ae6a5a6695e8d68c4687b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc5ed8bc9d681923a5d21b56fa81b696129c6a68d69832cd69e1a3c27efdf16b
MD5 cd248980fd2f3e28e796622e11c0e030
BLAKE2b-256 5e006b3072c3f69dc669f8fa0fbff443833ade620b8b9918a64edc08b9d83e73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05eeb7e8547ac8ec4bb0e8a7a556b5f793626483341b3cabefc07a2f7d0c8ca0
MD5 fbba7168b7412056af9b109fc4db9d2e
BLAKE2b-256 381c2bf63f4aaeb1729c458f453fb0eddd8ccb35777e58f9f79b7ace7b8045cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36ede7055fb25560a1c8af92cdeda43d942e734cf8e9a1025892ef4360e57b6c
MD5 8da88f529644a49e537bdc7f7692944c
BLAKE2b-256 4b959b8e0e212d9ccbd1f0b56749518d1cd7f2b156b201b4d0f6f4fdb01f9bd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 397fe2eb6b55e809601e645962f8f2e742c78bdb52db6237882714948c3666f1
MD5 f0ed0fe21db6fce0c6f8decca2180258
BLAKE2b-256 f75f878a71b9e6b2500bba56c9e77a86087a5aa6e81bfd6460c94b143baae554

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee7d474e346ea00f9320474acf9ee2fe2f2bc61f3c2106fa6001772bf6eea3aa
MD5 623c631c3b3491eeeaa65b56d558a0bf
BLAKE2b-256 5c63897975bbc61e5105a1269b4ca2a5d7f12938ed63610ae48eb5294aa5fadb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7ff00f2a977aed0fec818134f6dc39fa7d35cf448fbd7cfb77e0d5276b30e7c
MD5 ebed8da09a123f61feb4cb5d5e537b04
BLAKE2b-256 6f467f8aee7d8b2b863c73fca63abcb85a8099e5a771f1242b888b879f40b0e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a254f7ff8f85baa6c2b8f1aaa5d10ee5080c8459ea690f1f1e71cd01010f508f
MD5 b4090243520589f1e174bb0713239e5c
BLAKE2b-256 712ca90f21e5173dd7e36aa2f71b0956b9d77233b62c8a8136ff803bad3fed40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e3f4905415ccd8f23026cac98bfd61e8336627cbacde2b5f611feb0e09cf13a
MD5 43e02c73157b51e6ae01e2a93162d76e
BLAKE2b-256 d5d63bebadf644ce287827f37dcd1b924f0406b60d2a0f70f465de42a479a89a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 820a23307174fed3efcb7ccf9dcac847920af3f31c71934d8b422aae460f89c5
MD5 607eca01c5b7dcca7c5b3f9cc2316517
BLAKE2b-256 5cd1875e409157485dce52f2d3d76f449815ac364d1ec7cacdeda74c0ff367c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a7905cd9ae1cbc2ef4cf60c180c9ca9a0cb31ce61c542dd075f1bdb82fb73b6
MD5 87745ad4c3b126869718216845c89aca
BLAKE2b-256 d1a624c805a28ce34543cb4f53f45812a5ce52571f44c1138dff16352063f70f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b3fec06dd52c865e07c704a069eed0e4321d5a1fc0c2d70d7d3b970dfeca867
MD5 e3c08012eed10b065a590940580dd7f3
BLAKE2b-256 6812a4004833392d3bd24e7017763a787dfb625ac4d438f2d849dd322da6877d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4425f5890f37619420f43652760dff1ca673c0a077bc0756550a11819dba1037
MD5 a4c0fb15ecde4e01be5f0d27950fa8e5
BLAKE2b-256 da31bc1778af893a9c01e0a99c35dd110b07500320944789ad41a743466681b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.28.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 396.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.28.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ed35550d8f272369aeae3d8513e1db8bb1b33f03a35564bda4fe0a6630a596c4
MD5 60672ed16e1e6f3002e47e244f461a30
BLAKE2b-256 6c83b21bcfc26a20946f85b6dcb388ac4098fe08a068384014891c748b3626b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec9046e9406f73c03987bf359fa8f481c7b3537521d6622f67862af7fd9303a8
MD5 a78067e7db0234cb043e643744a6d450
BLAKE2b-256 51f1402d1a8de8548295085483ef718cdf0cb08deba710ea05bef317d0429bf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ba8819a4b070d0933bd6386d60112c215bb6270d91729376727893eeaac0c60
MD5 1b9129e70cbcb2019f2074a1143f0fae
BLAKE2b-256 6d1ab61d0f4bb5f471a1a745c07392d08773cb44ac3a138c5aa00a4363095535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01057080d49667c174bb87245725ca6b76a9890931358ab18114ed278e6f9b2c
MD5 89880bed19002f8ddb7e9f7adb831f11
BLAKE2b-256 6d4f048b91ea496a9703ad8e1e53e3199a634c72e5ee7ed4daeb3adbd04e9f5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3f857ed38b52c87213e095052a055f5e9e062a20e9db9d7678592153612c88e
MD5 b4cdc91f131f2f0a55e1780e46ec43f9
BLAKE2b-256 cbb90ecd30e008838d42d1d252bb3e050dc51591c4c560d46f9e8bf3b4ee72eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0edf3c0649e746dd989bb3231c3896c4d0be4410e00a17e490e213f3f34ddbbc
MD5 26e8bb58ec3069492e45a360d2c6e424
BLAKE2b-256 19e82831ddc2f477461cc9037dd5fe6f92ecf6a275ecc670bd8332cbd65558c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c12ab2b12d69d3036f8ba1cae833d75b17ecc5696c9f1482399d36db4ae869ff
MD5 b5b83230ea6b023a9bcd4a27ad0fce27
BLAKE2b-256 1a8f958294446f198fc8e8fd2b2b093c58d48b9567c9f311ceddb21b3e081ee3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.28.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 396.7 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.28.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 902e9917c34b1949c64a07e71440168263b28160c9404950c7769190686017cd
MD5 9b507bd1ba70367b2d5ea8b42e9de886
BLAKE2b-256 d14ef378b68b8a32dd1903e22c79fd27a4cacfe40c8efaf7df8ff490b38242fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e7223395ee9c8b03b0f3f5218a3199ebff9874eabae49630a3f5a39522f62e7
MD5 81996ff9b6fca01b170b0e4d6f2e7622
BLAKE2b-256 0281adff1b71ff97b20504688d52c1d84cf11d5bd243dfdfcdca558fe01bfad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e476a12b2b654f8a8aa335de36b221ec2cde8c519a279c01b225621ff643c3ff
MD5 8314e4d8a5353d7bc56900def10c726a
BLAKE2b-256 b102ceeb7ffac0922f46cee441dc040fbad74e42549a0a59e98f23b2df2c1784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26ce57680fbc561da3f1450bb4bdbe0c1a78e6edc1a8f16f9160f7ba3c7375ad
MD5 6940d33d2a19d37289a1c32488577465
BLAKE2b-256 8af3ecce852711cf63c03d3da1c01fe9bfe9dedb8d2f7f3280f6aa66edbee115

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50cfa0238473953e0a8d506c7e61ba1229d52c1efcbea811604909bbe3df68ad
MD5 07269689d8ecdd1282fbbc57d8d7520d
BLAKE2b-256 de90147d79a47ec6dc414a399d95a46c9232daaf8f6bb8e0f943684ebb7e1688

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 234a5fba70153c50e63c1c0cdf5d9673a054710407c81fbc4e8629ec4cf3573a
MD5 9c7b8d4df90f2f969c50b695e7480904
BLAKE2b-256 859f7c63982d3d1674e4e9223e91c19d3af38cfa826c5ae2c50cedaa41f189a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5dd98ed5cafc53afd778ba126a931d0cafe382ad5dd1d21f81800daf82e865cb
MD5 69cfc906e9e5f4c7fd06621913ddc8ad
BLAKE2b-256 6c008d0d85658577fabc48dd6b48d793e8d48132391681252982dda00055391d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.28.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 396.4 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.28.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e322bdb5340fca08638a97589c06ce2d3b3e5fd0baf296f07b7ccd1911981224
MD5 b93522d04170ccb34898ae32d9a1c05f
BLAKE2b-256 6d1bc3fde95882477949d86634119cf9a0f4425e2bb1f87e401f0505cb8f8fe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc975add174aec2c6d8fa927d2c93c1bc56dbf0fa93a2bcd270ae9c75f328776
MD5 59e419bb6d3f78ce6662cb4e55cc18f1
BLAKE2b-256 3dd8fd912bee44768e8aabdaf12bacbcce763ebe9af1ccb1d60b54f15c2c3dea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 257d327a8085b3f8bebb2a71b2108e1e495657531e9560219c12fcb70b707d57
MD5 26c73b368a04eb1836b130b101dffb0e
BLAKE2b-256 9c0bf80c38f5d01ba00967e1c45325eb30be4e8b445878bb2e5c73f23a1c0080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fe2b5e3e8e3692d0961ffd065102e37f2b9c64c4155726c3904d6ddfb6a021c
MD5 d786eb95354d56d4b6654518a690923d
BLAKE2b-256 21bc18ec15566aa02588392d335e4194c560d1f4d1c79f9a1b0ac2dd2c388cbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b911be693bcde81c187bb98e72d65484cb6d49c3dd00caaaedd113170ce0ccf
MD5 598cc7ec7b70dd316f40d63d1bd602f3
BLAKE2b-256 b363a649585056dc948eba2fd0db21a45d8867479590479b6180b388ea7628db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e52faf78be85f33e265c167cd928370c4a6648bf45865f21207754ee57561cf
MD5 b968e04ad52b76e866234e7acae0365b
BLAKE2b-256 0afbd22ac39100ea3ac9854c2032ef3d2855f55636ff9756205b257afe1e7ea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8892c20080ba51c277766682b995564c78ab6ef6bb724c93f120fe3f17cae5f9
MD5 08c52e32ef84a7d5f793b3f33b6447ab
BLAKE2b-256 537f93dc3b27c2b5c959172bf7a82fdf7e1991722b27476b9f430b051d4a3dd5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.28.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 399.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.28.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2485e7f3e5f70413292baf6b064cac81726feb2b78d24cec820fa2084693d266
MD5 69abd9eaeef1e8b9139d7453f55445f3
BLAKE2b-256 732dd2a2b50b261282ea176a009165559460f4e2eaac7176969ce1692ee02173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f032c2f838de33fdff45e29d4c0023831561f1757f894bdcf2ecc34a56a552e2
MD5 19bc3fc3767935d9051fd9ecc24d998f
BLAKE2b-256 c8497e2650da80aa284cd0cf159391f10a22ba62d003ac4b0bbd64d04c718347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d1091094531394f74d4d0c33d288247b2dcf7e5a5fc045a8dd682f9c2b353da
MD5 8aa5c942915328ca38594f0bf93cf24c
BLAKE2b-256 84176ccff5d5161b4fcdd66d1ad7e53ab2c0529aafa4db2834b8bb1717239142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6c02e50f9af84fb938f15611782b9707ddbd2608ad71200872b3c1bda8399f4
MD5 4905e70274ffa45d8599a73ee1c10e15
BLAKE2b-256 f831fc0c3ac06f8805cceafb8fbfa9ab0042ec50b4e6885774ef6dae142cac13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a80b86fdc5392172cf85637a1eb11db16c0c5273301a5322d1302fa143263f0b
MD5 0399f46f74aa6b25a0744568fcc3a5cc
BLAKE2b-256 f012f1187b2ccf6c8bef4a02a960b8c4a9d9bf079eb1b25806d4ffe5015ef2be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0bdbe337d0c4e1d2a9cea500cce750c961b68a0cc24044eceb56fff83dfec28
MD5 cde0909af386be5f78ccfa9eeb09d7df
BLAKE2b-256 99f566bf12ea187fb16b75c9a19cd73e5565107c10516163ddeb31a50454442d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42d7b33a60035e0d19141d5036ddb0443b0dec087800eb0e5e777e5d8608a3c1
MD5 8dfd472a6f9031ca3accc163586e66d5
BLAKE2b-256 13a980711070fd655484fa237125b5912e5a25cac0214ff60dadde5dde86afc3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.28.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 399.8 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.28.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f19c1b0e95dbea14163b15f0c787e1dc4bb76d5be1da6ced9ef05e5eaa769cda
MD5 80a3e60f8270d155518b99551d2575df
BLAKE2b-256 b010f06c07b9cf1af4bfb97833a42853651be20e918d298064cf0feb98448304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a077b205c5e38d62ebcf00c94c19a28be2db234ec5cf6fc3234a1971830027c3
MD5 de0d8ca396a267d636a5e43d08b50c01
BLAKE2b-256 d08ead9465dfa18fd9695d92f50155025b3d17c828a4678d0907e3b45a627db6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27097f2c53f71a48ecca636eeb36da2ec7f7f46fb237cf14090e55bd566c4e90
MD5 7a750e3c4f4a5adc5e9b029326200f77
BLAKE2b-256 f3f98e7730191d0a10dd72db6bd4b23956a0972404ca3fa716c95e4faba0794f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f9edb700e78a8affd690f8b50053ad742787dd0bbd72af8b404510d5fe037a0
MD5 a7c16babd834c86fc4e0a27bd849dc78
BLAKE2b-256 9bcc8e07a62a180712cdd57f5552690cb8d65882bd1a40b2f86a99aec5764578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 733de7aba88769ce1309dca115d4daa3b2bbc2206c0f314478c19843d8b19c6e
MD5 a937084c5ae001b43616232efbcfdd04
BLAKE2b-256 0b0852dccc48cc1e460148b62c655899e7c62a4b4524211ebbed5b2fd8bc1bb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9771b69dbac4772b92034a58878b5e168e0cd5ae854a30780bb32b052b3f73a7
MD5 745e33fd923ece9c23963fdf52ffbf73
BLAKE2b-256 3f2f80b2d693572ee0d240a1a7b3700161d801ec925732912ae8f7dd54461c25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d5adcba4db680f1909030cc8458056deb7bdbff057cb96473b4f1b93d481187f
MD5 c4a7a8ce9f9e6dfe7f0491ad2b12bf86
BLAKE2b-256 73a75e782c53c2763b33d95c1ddd04b59a964d0ccfaddded64a11d66d66cce68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.28.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 402.6 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.28.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 07b8994a68d851c209f9f371e418f0e36dfcac28232783d06c0d7fa056dfa945
MD5 b8d92e999c6fe826dd2227f6aaea4030
BLAKE2b-256 fc561e609160378cb69a5ad97b7f1682e62fd3c3077b12dc1c69b2462ab54766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 940c42aa1a6524d1c1eae8417ce1788022d86ab5daf84a509044022a47308dc4
MD5 c9ce231c7c557472985182e2272faf44
BLAKE2b-256 4d3d8fd336db4e72b7a3589d2ce634bdea10b746c9863f79670a77dab704ea75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 896a40a743a491c69dc301f1842a79812d5613885226d76c696448df2bdd7637
MD5 3762a7342db42a7161c65b9ef33500f4
BLAKE2b-256 a90fd0f45b5fd20a288dc9855ee640b8663ac3cc470d79145c26bdf3311bf5f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 582fe940063a4a6189b0f28b7cc63854bd70c3e5c9975bff70cb1f50f647c70e
MD5 45ebe9ad0ebd6c1d3431dc26b3121031
BLAKE2b-256 0785ab89b968aee39adefc2b8148a0a4e0c83a7aec94e162d3f1d5d34109e7e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6c736010361f1e23f839d10f850e74f35199bbd4a47ff1ebfef22507ad4e9a8
MD5 25ddb011df51923dfcec15360ec7f63a
BLAKE2b-256 08bb59fddd51e22073dcb3e0e6def97352a5aa04f3940ad5e36941fbdf93cdfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d362d959efe5d8334ec23235ec2c16083dba73768c6a5d425f697d4479292170
MD5 3ff9cc49b3df6e7500aaca9b3841ebf4
BLAKE2b-256 00dd18fb94b2edb6846b20e030a9bfabe7fc0ed895ecd246fba990bcd31d6bbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.28.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1931660ff389221f79c7d67f0f0e3dd9df461319bfa40154f23b6f507c459df
MD5 8c5c07148982cdab908265f1cd091b85
BLAKE2b-256 4145b4ea91abc139efabd2b91a5944cad1a891d74693291ba58d566774d9b306

See more details on using hashes here.

Provenance

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

0.30.1

55 files

0.30.0

55 files

This release

0.28.0 This release

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