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

Uploaded PyPymusllinux: musl 1.2+ x86-64

djvu_rs-0.30.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (681.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djvu_rs-0.30.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (519.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (503.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp314-cp314t-musllinux_1_2_x86_64.whl (726.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

djvu_rs-0.30.0-cp314-cp314t-musllinux_1_2_aarch64.whl (678.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

djvu_rs-0.30.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp314-cp314-win_amd64.whl (396.4 kB view details)

Uploaded CPython 3.14Windows x86-64

djvu_rs-0.30.0-cp314-cp314-musllinux_1_2_x86_64.whl (727.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

djvu_rs-0.30.0-cp314-cp314-musllinux_1_2_aarch64.whl (680.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

djvu_rs-0.30.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp314-cp314-macosx_11_0_arm64.whl (472.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

djvu_rs-0.30.0-cp314-cp314-macosx_10_12_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

djvu_rs-0.30.0-cp313-cp313-win_amd64.whl (397.1 kB view details)

Uploaded CPython 3.13Windows x86-64

djvu_rs-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl (727.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

djvu_rs-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl (680.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djvu_rs-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp313-cp313-macosx_11_0_arm64.whl (472.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djvu_rs-0.30.0-cp313-cp313-macosx_10_12_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djvu_rs-0.30.0-cp312-cp312-win_amd64.whl (396.8 kB view details)

Uploaded CPython 3.12Windows x86-64

djvu_rs-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl (727.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

djvu_rs-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl (679.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djvu_rs-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp312-cp312-macosx_11_0_arm64.whl (472.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djvu_rs-0.30.0-cp312-cp312-macosx_10_12_x86_64.whl (488.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

djvu_rs-0.30.0-cp311-cp311-win_amd64.whl (399.6 kB view details)

Uploaded CPython 3.11Windows x86-64

djvu_rs-0.30.0-cp311-cp311-musllinux_1_2_x86_64.whl (728.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

djvu_rs-0.30.0-cp311-cp311-musllinux_1_2_aarch64.whl (681.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

djvu_rs-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp311-cp311-macosx_11_0_arm64.whl (474.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djvu_rs-0.30.0-cp311-cp311-macosx_10_12_x86_64.whl (486.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djvu_rs-0.30.0-cp310-cp310-win_amd64.whl (400.2 kB view details)

Uploaded CPython 3.10Windows x86-64

djvu_rs-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl (729.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

djvu_rs-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl (681.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

djvu_rs-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (519.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (502.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp310-cp310-macosx_11_0_arm64.whl (475.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

djvu_rs-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl (486.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

djvu_rs-0.30.0-cp39-cp39-win_amd64.whl (402.9 kB view details)

Uploaded CPython 3.9Windows x86-64

djvu_rs-0.30.0-cp39-cp39-musllinux_1_2_x86_64.whl (732.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

djvu_rs-0.30.0-cp39-cp39-musllinux_1_2_aarch64.whl (683.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

djvu_rs-0.30.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (522.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

djvu_rs-0.30.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (505.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

djvu_rs-0.30.0-cp39-cp39-macosx_11_0_arm64.whl (477.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

djvu_rs-0.30.0-cp39-cp39-macosx_10_12_x86_64.whl (489.0 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: djvu_rs-0.30.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.30.0.tar.gz
Algorithm Hash digest
SHA256 00a043aac9a8ed659e68b6fd4c833e757fc6e34d74596be579028274f1aedfdd
MD5 ab5cd868b8579a43104b73816831a443
BLAKE2b-256 4a225d59aed79ca9483580e0a1c6582310833ba8dad65acbb42dd399261800bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93dabad1311f4f71e30a1432b802abcc5aa666d7054acf1a5dba816c0996e2b2
MD5 a54fe8543e1cd328d706595b631499ee
BLAKE2b-256 f328b5e4e4661563de08795b8f1f40d5c5c9d8f00cd655736acca29227fb5d28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 430db8d744b4a0726387ccbd17dbd9e1abef70f35343463465e15493a4b28153
MD5 a933becaef2fbc5d0e31a1ae1a701087
BLAKE2b-256 29d09fbdbcec3d1e1c23fc171aa6f354859187f7e1547ea61e90bb9751d0c1d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6abc192e2d074a0623d11962da1a1fc6c2dbe1827e9c8afe0cf4cfe635985070
MD5 c8746575b8794e2da9739ab99a7d3b18
BLAKE2b-256 edacd6d003b20132c741c5d4b7f0bafbcda95ce56c1176b1382001d52aeb8761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42716f503c9c3f1e71b78dc0b036e209a1dea3c2bf029817f889f471a67d7fd7
MD5 7bed101ddbf236d664d536537b09ce32
BLAKE2b-256 ea2141bb3ee3bed6c9d452d43942f0dc55e1f635ff3adac4f8a82af3da1e4ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57d8ddaf14722fc9dfa6007c2fdeb718778d4e3223a2150bd0310eab31dacac0
MD5 c38a079492ed4fe0f504f8eacc875156
BLAKE2b-256 837c9e71f404c3e8a379dfd65c4a2747ac30f9e8d27367b2c11bb195c6c66e31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 225e1bfcbfe7fc83ee0aaf58e9ff00b8934939dec225e438a790583387baa9b3
MD5 b9f5bea99811a22baa2dbda6e598fa1c
BLAKE2b-256 8241a630dfa907df20c7b3c3f3f1a64fb502a2b20b141d61aa61bf9d94ed5680

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2f39002eaaa6526bb2784c4c2a407df94af53757f401337898f9934e72496b7
MD5 4102ed13cd620441596a81bded981290
BLAKE2b-256 7d36b692b4cb0a2c4f4289f0a5bd9a784f30fe6d75937362ea1cb049278fcc4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4957c1bcf83eb8293804b29fa2728a353891d8ec573dfea389ded838ec05b043
MD5 d4fe04e607abd8313086feb8c30dbef1
BLAKE2b-256 93beb0c6b469420b4ecd08676b0910096d9be5e6754570087432c231a24ebe50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d60aba03cee08bf5136aff8127a94654073f53548cfc4ce393a3896cd1cec4e
MD5 79bd7be91852795d3347e8842285c6df
BLAKE2b-256 7499228b11c629d8d5240511752972c9afe957c3a803ae191e1f7e465c95f28b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c069cf39bbbde471b0d377e64d0b9f38615e0f7fe53dfe3ee91c67403f2107a6
MD5 4a86ad1bf86e536abba5d136548c8a79
BLAKE2b-256 293e94dc74f4b44c35525fe18445c1bdfc7d2d2cfac1bc37c5c082d81579cf71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b133f5a4fb96dff78807f346dbf8a55a00ca9d36aa4ef553584bf6c06559959
MD5 e24a4355843e6a113aa234e677a7b511
BLAKE2b-256 449b2963df3f5d23073ff4470176181fd46d4f73393d693c825527530fd5cfa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99c01ba6e2e0c07ffcfb8b49b11b284b87942c38d19b46533da0f8dcaba33cae
MD5 e6fa33f832458de1ce0c76b079ea9781
BLAKE2b-256 638627370d3613856c4e60404299a1382a65d5ce4c116f509f0c060da91088bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.30.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 396.4 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc4b2f002059149ef789bbf275d33e058df86b3655014092b41a70a0b6baa3df
MD5 8613c8dbd7c9aff674481994e8393ea9
BLAKE2b-256 ef8b9890197f0ea3e84904b735ec6749dcad826a4bc7dd02d6e6dcf390516893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76872a80087286e6e0f114f2b0ff7b3f565df9842c0e7963d7be8a530cd08d63
MD5 51764ef1b47c7ebbbf7803b818fda50b
BLAKE2b-256 84c9449d7d6a42381802351c3233bd42b3eea1728cd78b9730e0ff5560e8968f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e6dfaff644b5b7dbf02203fb12cdf87775abd466ee8f7bf32dce90f07661c16
MD5 67cc984304ae29dd7a5fe7916ebc9a12
BLAKE2b-256 f9dbfde4e5fcd2f21d588058cf6eeaf897b84f51481da2c400359b664418354e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56e71c98d35919b128a4a335e5cb0fdc8b857fee578510351237697e9c39daff
MD5 a8938bbd73812021dd8abc1a10b9d725
BLAKE2b-256 0036029712e5d3b8cbf71da1d7b3c2019eb71b2ce61e3776089b38ab0d83497e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6224286f6029917fa03d2462f090d6488aace7a12f906d12a3459125a940b024
MD5 aa276e36ec06080d53e0ce6427d727bb
BLAKE2b-256 68c924e7d59ca4c3f0d1bd060df11784f7cfb0517f4c5fbe0b6787641a9f9b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35ef21fedf6cd79293c9b6b423a78f6b8baecbac3d9c8ea7bfa342e792e4cedb
MD5 e748aa91d7d00524a425e4d481453eaa
BLAKE2b-256 56cd6fc65c864fb2cd8d987c3228a8b844ec1c60aebcf56be0778bdd15caba57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c07d9748db6f4bf8ff291a397f14a856e2c2974db44b2ae9b7a24060691656e
MD5 f5ac91120e0f451bdeb6ffa7625d6497
BLAKE2b-256 1513e0a96cf3d9ba221062c64f3e6f5fd448b0a22d213a5d32cde397a43d66f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.30.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 397.1 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc81b1a0371d16c30c2455688e7494a86427e6248967926f5f6535bf53734d02
MD5 994a5ca03943cd50194fce1e4aff2bc8
BLAKE2b-256 28f689a7da65f36199992a82d7bdb3263d0f0e689db9672141698a4a4509634a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8e669a753093c48601011582154cc10290ea70904cd48c9a3f958acd34a8468
MD5 a07d898767b0b37fe9606234476a4d42
BLAKE2b-256 abb31b43be71b2568941a1a3b029628ce83c27586bc8472764f80715549e3b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 029acd12d792372f3d29202f337d9cc86769145df73658dc7756ab40c4d132b6
MD5 9a579e154aae098763bdd5cebc65b7ae
BLAKE2b-256 3262c69239ea424eb44e8c776631057b5f00aed114b2f4d3aedbd7c235609b07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 828fd9489eef2e7ec0a567398b160f26f238e9be8cf62432d480a071f5fcce8c
MD5 96243d88bffb279226bdc69eed244177
BLAKE2b-256 e9de8d1f2af95811322beb0d34a6ffbd4e767d70d83795f2b8aeb9e5b9c6adde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01e477fc44a891f67a0e1edc6fbb4ea269697126ae5a1c09d854a61e756e113c
MD5 84c29bbe673d4326f01df4b3e85bb367
BLAKE2b-256 bd67f77c5501a6adcbbd19b1086098337b41822d41b7aad113b3e08cb702ad20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 381ea7133db3a8b2e505b0611afe566456dd8e23851aed7c5025c33cc27513af
MD5 aca0342fc39581f26e6a2de37a4a7755
BLAKE2b-256 bc2ce86c7b55e3f352cfb887d7f635ec5f720ad86fb85bc886778b381404322c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ca9fd279b0b7aebdc447365bcd5783f285b8b1bc1c6c5b0af92eb00f9d79755
MD5 09e3e648b6d929f2fb0830442472e2d1
BLAKE2b-256 d5e022a7590940ad3bd254af1a3a18c78d3d000520df1a118d6e347c4c62993a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.30.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 396.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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 531bff8d089f1ea848b280871606a347a6e70fe26b56595b3483ba6b07a8bd90
MD5 5504a9fb55666da40f815428cd82a326
BLAKE2b-256 bc02b96f7aed91ac7de98a18ff35643f2fa7da65d653f42dcb3bae1fab65ba30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81aa9aacf65c7afbb358185519e9088145dcafe3d330864e1852d8db5cafe188
MD5 189d69d6c4804b2b24af9d63650d0677
BLAKE2b-256 2377a3dfe26e2d13d43224ac5b53a01a01826193d7b129ff9a994364857ac4d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9089185c6467d23a1f4e674c544cff29326dd6d6dafa11df1e7ec76c0d1b2e7d
MD5 9fa7d9758a42a03622c145d356906f6e
BLAKE2b-256 70a1c8ef4a6342d3a09ee66531a0973ac02e9df67b4b122f3f86554a71f606b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1a256aad6be4b8fae30d08394d82523c4fbdab9b3ae4b283bfc7f9d9fcff4a0
MD5 c834e2523bf0ab0db8b7362ebd0bd8f4
BLAKE2b-256 463d96e8e15fa5390c1242e98984e64e99131293c13b87386ede6e5c42d4947f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9fc8edc7ac47f4699c3fd02100cba2b0ce2b995d66510df6573313adce9215e
MD5 d61e635b9b0455de6c9229e6b915c4d0
BLAKE2b-256 078ae424e35cb10c3877b08863b0c2f6116bfad3c9c1e635267ab8da7d2ef63e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86fa9fc32f7e5ec6e5171e5e9f28f357538e7f78a0b3cd4ad64de49c11bc533b
MD5 e9b9dc46c170b240da3c8420caf04114
BLAKE2b-256 08545d0bf530b8549d1f3578a846d601ca0da089a93c633eaa03e8f9c328bad8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1da50e931a3ddefac19001044000eb8617c97cc892c4f3e965bf983b74867854
MD5 21a00de8342cdf032a9d8448dca11323
BLAKE2b-256 a2e41bacb36e064fb9c910bdb663e44dc50b231c57ca820ef24b28b67fdfd2de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.30.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 399.6 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 086beaa3a68af7aab1a5f6cc9a92d1a3c3908b449b023e151a1640e0378f8471
MD5 c5d7f8f760de35291b4a757e7ddf4cd2
BLAKE2b-256 3ead2f51218953928adba8d056fa61653e2e46759ff7229e6c0e72329cf25143

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 434d8a06ae09bc043d353a4d358777ece6dc245eee86fd9d4e1794ab98cf9692
MD5 617f00f31323b57760cfab6d26f3e9e3
BLAKE2b-256 30197e4b2a195118ba6ef21c4e3e24518b4eee606e160270770028e97251df53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d7ed2801c3bb78603bbfde38a0006f2274f424958e57939095e6a410bc9746c
MD5 2d278db7fc8c294f831aab8263137c7e
BLAKE2b-256 8279b7e3065908655e4dfad46e1f9288a2e0e1fa784e563b2d59ff2bb5709ec5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 886801af36ea681b61039294684b5fceff416491b714475974417178cbbcce82
MD5 f0a6a647961b2f5a2b02ed41f6c77567
BLAKE2b-256 27be9223e636725db5757764cc9798f8cabdc3648aab0bc9b747287175ba2a03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7af9650f0ac5e436180b372101b725d533be10e1bc8a74aa0d61b99dc62cbf4f
MD5 6441d5a54b947a0d7de4b48cc7ebf96d
BLAKE2b-256 0038e4fa372d2421034b1e05130494bc9544579bc9e64897db2f1198c368ba42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6d7a03ca7c96130c78008c05fc6462ce8ae3d15f337b14b68090be6dd2e1016
MD5 452322b4208533fc0fe80b8da28dd4cf
BLAKE2b-256 dd5bc931d62f45e2787977a89b2dfa4cca3e47434680c79efc93551b6b96011b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b973ca20491dd40352c8a87825f5dde2bebc1459ef2b4e3de61dfda8135c8e8
MD5 15155c66aab86a481cad9358b69f827c
BLAKE2b-256 0a2844125b32453425767d92bd0f4268d0ba7f50022ac209379a0726f0d84376

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.30.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 400.2 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 72243a0b3e79c51127c305cdad2955c7974658c103c2aa7c0d5f6babfaf02bd0
MD5 2e3d43af55e685c9ea77662a9905c05e
BLAKE2b-256 743c8a81eca06248d4798f67415ab15d0083bacfc38a34c366d04ccd7f661f37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfc017452d4613f2ea81253b677e71e78ebefb3bc9574a98d881069cec6a4add
MD5 ae163edc7f8aa4a6cb2ef304bb36059d
BLAKE2b-256 50cd90ec2028e78a6d2ff83cb51f6da1e08fa0c1e58202e95bd4452f2f1eb5a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6b603c50a268e7ba9de3f739611b73bd6eea733b5ff6e291084a98915cd1744
MD5 556d61c315418aecc7bcd736b1b239e2
BLAKE2b-256 718663b9eba4d9622c87cb7cc4a23e5ba2f9d5cc59110c140df035116d2e305e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 364259c3f25464d1f3f9cfc7c0ce994072a8bcb8af8122b7efeb7009f779728c
MD5 7257df304f0e5e3cdd2f817e039b01d5
BLAKE2b-256 3bebf14eca24a8de2ab674b63b1b6dedd44ae3ffc2964f71d0907ddb5f391911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45224789eb0a2abd0e4d8028e97084376f8a55dd5dc70fae89185b7743c0faaa
MD5 edcffab5bc3f6529bf877676a62de480
BLAKE2b-256 71f685c0d7ccf9465d3ba884296cc1743fd9288ed62f1cf753d43e18ffc29c39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30237c5051d9d1fbd0da11468b62450a4ecee3455e9f33e72eb49de302faf35e
MD5 d8b02ba56e6302ebe675c0b306a4b601
BLAKE2b-256 2d990eb24293fd55e2860077d02877f75d15fb023c415f4076221b4ce314e892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 750c12f43fb69d8f029541274622c13df47089b51a52df3e908d5d69968d29b3
MD5 4038b7fdc900986dd6cd3ccec4609a4f
BLAKE2b-256 e7072abd08680f61c7ac9f259133dc3bda4b82ee7555962cdf37210138bd9b34

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: djvu_rs-0.30.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 402.9 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0124adfee3d8c0d53ad8d0db4fe1fa4e809ab76807afec58bc20379b9078b585
MD5 fed5ee87d0ac90a6b0c617d6c0f1b749
BLAKE2b-256 694576f6cf15310c265b376f946874e62178e338d8352b4531f833440ef2540a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49baccd1a89fcdee4df297ca740e84fa7515dff653df9fc3ea701146f971faf7
MD5 4f8b555335b6f691491faf879f57108d
BLAKE2b-256 c8543d0522a690e99c893451ee614b4d35a98034f3326418982e798bad54f00f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55599547c56c01ec853e89f5cd130ec9db57795d87c2588e48f016a31442eb2b
MD5 264c2e1659ecd9e88433001b3b0e4ae9
BLAKE2b-256 1d2a28ade00c02820bdce8a1024e45e863a5aca6e91fb728b9a6233cd49c9ab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7fd083d103e3b06ca27ef1c8fb64e345cfe153bdfc790031b7f8f25cc73407f
MD5 e317fef06863a828c71ed50420a41ab0
BLAKE2b-256 aa389913f82b4392f2d6e05abb29e7b12ea485880948d86826483e2b364aeaa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 693cd5da651fbc8c2b4d7a9922ceb02ae90a6f50fd84d6a32acb18a50eafdaf2
MD5 bf36d8485c18fbb00925b4920ac9884a
BLAKE2b-256 039a1c1a63128cf21aa31bf4968ea1c18cb420860545da78e4176c84506ef8a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72aaf5d8210a0bebfb174096b37bd97c08ccad9391c3b1f123651b03a45fbf99
MD5 5dec707af667f36cbba83411d942713f
BLAKE2b-256 86c5920b68a73dad6662072e642015ad2331ce7d9b2a37e26262ebafed9b05bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for djvu_rs-0.30.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b664fce18f14a29f0beae53a15c3e1ae5ac513743883a0d17866e5e38a2fc7e6
MD5 7a3dadf0bbf0ae19618662f8c53e5974
BLAKE2b-256 72948de1cfdd68d76ef3b8b9a92cb16c15ed2baae97978f3efad12b4609704f3

See more details on using hashes here.

Provenance

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

This release

0.30.0 This release

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