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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file djvu_rs-0.31.0.tar.gz.
File metadata
- Download URL: djvu_rs-0.31.0.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed49e86a225ec4c22edb8d38c897edfeb8c6584699f8b19227440fc3d3204827
|
|
| MD5 |
903de9f4e963d3e327e3fc9a39ac1131
|
|
| BLAKE2b-256 |
be0fa017e5464018c324c77d6a5eaa631cfb25d470632b8375f0454f2bb82b4c
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0.tar.gz:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0.tar.gz -
Subject digest:
ed49e86a225ec4c22edb8d38c897edfeb8c6584699f8b19227440fc3d3204827 - Sigstore transparency entry: 2742390117
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 732.6 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a93c02e6a98580bcf23bc04af30fb2063d6e75c27f802d4a4dfd76163c68c6f3
|
|
| MD5 |
5e7be5b6b53c107442093660837568c6
|
|
| BLAKE2b-256 |
5d5f7efabc4b4ed47c931f4754d2bb9198faea4148d0f101a7db2377921e7012
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
a93c02e6a98580bcf23bc04af30fb2063d6e75c27f802d4a4dfd76163c68c6f3 - Sigstore transparency entry: 2742390290
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 683.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92548d16c074d656a921fdebd1e7016f655b65fc1996454c12f228136961ccb7
|
|
| MD5 |
dbd26bebb569c8686cc273b7c7a2e4e1
|
|
| BLAKE2b-256 |
4014cb4953809fc58b3b7083089da46f302b5726df8d6d9ebd53fe58fd40d0c9
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
92548d16c074d656a921fdebd1e7016f655b65fc1996454c12f228136961ccb7 - Sigstore transparency entry: 2742390925
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 521.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d0c93e020aaf8767ca912a41a6b56aef367336fe5bd44449661cfbcb613e931
|
|
| MD5 |
098d1d2afb37c4d5d80fae9154d38d69
|
|
| BLAKE2b-256 |
968933c1530c6f8328a6ecf081ee5d2a2dc568275bcc233cfdf22682c42d8c21
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
0d0c93e020aaf8767ca912a41a6b56aef367336fe5bd44449661cfbcb613e931 - Sigstore transparency entry: 2742390798
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 505.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81a867854b328966fdc055a191c4c8d7ec674ffbbe8314d20879343ce3cc3d37
|
|
| MD5 |
2e68a5e63db2a73c602b08aa0879633d
|
|
| BLAKE2b-256 |
4454f34d43976765f96fdfb53b74ccbd21c01d0bb99c910bfc4e59af537cb4bc
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
81a867854b328966fdc055a191c4c8d7ec674ffbbe8314d20879343ce3cc3d37 - Sigstore transparency entry: 2742390207
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 517.3 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cce1ae8a6775344e26430cb3dfcf1e440b19bf1b7c7c1b6d4985a490c30b0bd5
|
|
| MD5 |
7daa39dc5c722c648267deb30ee0ff9b
|
|
| BLAKE2b-256 |
83bf0a478adb754392d147f9f3e332f402c5d215a3656467a5426985e4571a67
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
cce1ae8a6775344e26430cb3dfcf1e440b19bf1b7c7c1b6d4985a490c30b0bd5 - Sigstore transparency entry: 2742390563
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.6 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c386394c579388b89d6213deeee1b7b6f125f370171f20bc3b7b3bd69fba786
|
|
| MD5 |
298ad70bec82e20361cfc573fbfc5a58
|
|
| BLAKE2b-256 |
7ffe1c83af0c87946347fb64ff4622e7a904153497d7ad225690297ecb4f503a
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
1c386394c579388b89d6213deeee1b7b6f125f370171f20bc3b7b3bd69fba786 - Sigstore transparency entry: 2742390701
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 518.9 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c0a784fde06b1a65634072310b6b85660316d9fb3ada20ff5a6aca7c5e01f65
|
|
| MD5 |
ac75cfb849b6a6b57b1f5161ecf75499
|
|
| BLAKE2b-256 |
ebf651d9388a0ac6e55706de45b817cf4b4ea28f11a999a8d37c9af77c31dff0
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
9c0a784fde06b1a65634072310b6b85660316d9fb3ada20ff5a6aca7c5e01f65 - Sigstore transparency entry: 2742390183
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 502.1 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0ec162c234075a81c970216f0c2b559f76d58c94d8116fa80949c740f39cfaf
|
|
| MD5 |
4731fd09054956d6954fca34d8f1e471
|
|
| BLAKE2b-256 |
5bfd35e6b0789b602c6d657cc72998023f51cdf6768f4c78a20097080e78beb4
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
c0ec162c234075a81c970216f0c2b559f76d58c94d8116fa80949c740f39cfaf - Sigstore transparency entry: 2742390592
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 728.4 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c07512e17449c18e5e48a3031215af8910ae5de99f451cccb08cde9bb736d52a
|
|
| MD5 |
30003f9452d9132a622260f109927b21
|
|
| BLAKE2b-256 |
79dc6f76165ea66e4f9f400a09a3c0c91ae2be20735734e5c9057cb314a5a6b4
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
c07512e17449c18e5e48a3031215af8910ae5de99f451cccb08cde9bb736d52a - Sigstore transparency entry: 2742390784
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 680.5 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
283325cc6fe5027f1784ee83d85ae057594cdeea289dc50375289903fdd9e85c
|
|
| MD5 |
dbef3f4f92d60e6c62ec731becdab0de
|
|
| BLAKE2b-256 |
eee666e9455c86c896eec40383e6dfbe4d6cef13146dfa6f20ddc3fac402cf40
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
283325cc6fe5027f1784ee83d85ae057594cdeea289dc50375289903fdd9e85c - Sigstore transparency entry: 2742390575
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 517.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bc2368eabd0949c1730d26e4af1bfcb6b96366abdf55c753a530926cc9cc54f
|
|
| MD5 |
4e44f9fd9e251c3ecfe3af9e8d64a051
|
|
| BLAKE2b-256 |
1ad78425a9c0a441e946b48ac66b7bcc4444b8b907ff524aed205ea3e91a109a
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
6bc2368eabd0949c1730d26e4af1bfcb6b96366abdf55c753a530926cc9cc54f - Sigstore transparency entry: 2742390433
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 500.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03d0a368bf26d70fba450bb18d743e48ff9eb5bd8f905f64c5cdbe42b761f0b9
|
|
| MD5 |
8e1a340c93da63334c837176f44ea79a
|
|
| BLAKE2b-256 |
300ab3f74f97de909d9fb0bf0cbd724303601fd158ebe43f0098d021d9260e03
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
03d0a368bf26d70fba450bb18d743e48ff9eb5bd8f905f64c5cdbe42b761f0b9 - Sigstore transparency entry: 2742390196
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 400.7 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
048b18c028c2e61cff693547136749405991d32bb1ad65d08a3687564fcb4bb9
|
|
| MD5 |
5b008cc4c6fd939b8a6af9c8751f48d6
|
|
| BLAKE2b-256 |
9e2ad67ef1c040ffaf5fd9b77f9d29eb07051a5f3f8ca0336c06632c08950ecf
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314-win_amd64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314-win_amd64.whl -
Subject digest:
048b18c028c2e61cff693547136749405991d32bb1ad65d08a3687564fcb4bb9 - Sigstore transparency entry: 2742390946
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 730.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92b8fd9e42e84fd44adf2934c3d6167086448f0fad25bd94614d9e38b5987c90
|
|
| MD5 |
2e5b4efc75aa9b2a13af96732bbeef6f
|
|
| BLAKE2b-256 |
3c1d6aad5aa054e516db4d8521d290c0ecb3e9a745dfa05d06f0eb0594fb8c77
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
92b8fd9e42e84fd44adf2934c3d6167086448f0fad25bd94614d9e38b5987c90 - Sigstore transparency entry: 2742390640
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 681.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
576f9c49b5a33bb0163863344c6ff9282e72573cb01d8125b1af044c5ffadad7
|
|
| MD5 |
c82dfcc57e455b68cc0bf2c861b97014
|
|
| BLAKE2b-256 |
f7cece8bf33609d35d6c064207eb5ca2664f95e56f424630ce9e8b590073f8da
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
576f9c49b5a33bb0163863344c6ff9282e72573cb01d8125b1af044c5ffadad7 - Sigstore transparency entry: 2742390506
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 519.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db3d81c1e270398518e77992cc9995010f5a539dff3adc7bda15e2532c359682
|
|
| MD5 |
d3179ded5442715b976ee2a74e977b80
|
|
| BLAKE2b-256 |
dede224ed6c3c69834b53148e4cbadd6f83957a39d42b217c5ac8a07e6f4e1e2
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
db3d81c1e270398518e77992cc9995010f5a539dff3adc7bda15e2532c359682 - Sigstore transparency entry: 2742390604
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 502.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52e7e6aa5ce12d80e72a4cdfcf94060486a13e8dab89c4a5381059951580b609
|
|
| MD5 |
60f7033bb8dfe027c3526363b0b9e992
|
|
| BLAKE2b-256 |
c9b5607085f438f0a486583a8de1405b1c780a982ba46c64b2726a483c883f6c
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
52e7e6aa5ce12d80e72a4cdfcf94060486a13e8dab89c4a5381059951580b609 - Sigstore transparency entry: 2742390279
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 473.5 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5899ecab0cb52807f5f6d3741767d2964725d6d7181b1d760b7475786e930d2b
|
|
| MD5 |
5d73716e67e0960ac3590835c281c827
|
|
| BLAKE2b-256 |
8644db9651429fa604b40873cdca1e92d094b4cd1066f7e85b15eabb8c1ef46a
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
5899ecab0cb52807f5f6d3741767d2964725d6d7181b1d760b7475786e930d2b - Sigstore transparency entry: 2742390543
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 489.3 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f248f2becb5e6e5389264ebb27acda806c596588834c39332b91d3d058b7476
|
|
| MD5 |
d73a065d2b04a8eacaedcc492e6097cd
|
|
| BLAKE2b-256 |
72c0802c3992dfe5c8068d745a7f5c99df46c05985b227a9c71a3e4c5fef80f2
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
5f248f2becb5e6e5389264ebb27acda806c596588834c39332b91d3d058b7476 - Sigstore transparency entry: 2742390413
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 401.6 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcf2522350a3a262bb759ca906c2887ef1d0ca9cc8d21cd9b49e32a2677f08ba
|
|
| MD5 |
7b74062e4f66c4891094018e06e9fc77
|
|
| BLAKE2b-256 |
7f8650cf3cca6c0e1ad9dfc9845408b85f14aa647dbe74075a0577a594fbac28
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp313-cp313-win_amd64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp313-cp313-win_amd64.whl -
Subject digest:
fcf2522350a3a262bb759ca906c2887ef1d0ca9cc8d21cd9b49e32a2677f08ba - Sigstore transparency entry: 2742390246
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 730.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
432462bb57269571ad141bfb64c364ddf6744c901721740526661a32110983fd
|
|
| MD5 |
8f5e0113e7d21efdc76ebfdfa7756820
|
|
| BLAKE2b-256 |
a4fd104068a6a325f7c9ee55d27e7c12a79050f28473efb0466aff682bbfd49c
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
432462bb57269571ad141bfb64c364ddf6744c901721740526661a32110983fd - Sigstore transparency entry: 2742390373
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 681.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e799f285a054a5353c5750934991de17f8185fb767d16be6abec62f7ffa57118
|
|
| MD5 |
b2beee7693db1684af681cfaa1e1815c
|
|
| BLAKE2b-256 |
17fa2bc503e486e9ed2fd968323b39db91ebbf41da173b36fd355bbd554de125
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
e799f285a054a5353c5750934991de17f8185fb767d16be6abec62f7ffa57118 - Sigstore transparency entry: 2742390477
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 519.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
885ea35710a193c8e85457f48f6042afccd71ad81a6e4ea13146edcf731eac3a
|
|
| MD5 |
ff98bff1452062cdb3d0c11d2994473d
|
|
| BLAKE2b-256 |
c46c0262dce07c016e68e649de721e11d190e89499dda9108038cadcf2bc8ba1
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
885ea35710a193c8e85457f48f6042afccd71ad81a6e4ea13146edcf731eac3a - Sigstore transparency entry: 2742390832
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 502.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed0db5b34b5a94e3749facf691348c111e4cef150d1d8110e5f44e589f564e55
|
|
| MD5 |
e33e655b4e8aa5680e6038e493989330
|
|
| BLAKE2b-256 |
3f7aa724d7f0505aaeaa4084379fb64fe09ca02c10fbff2e3239f5b4f471c117
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ed0db5b34b5a94e3749facf691348c111e4cef150d1d8110e5f44e589f564e55 - Sigstore transparency entry: 2742390892
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 473.9 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed999a9d9723f59429ea65cc2dc2020221c66b8530be128bdc7cf04317dacb88
|
|
| MD5 |
b4a3e0fb62b0ea676f60d55b9ab07037
|
|
| BLAKE2b-256 |
4c8ab69c4f5692572ca4c58c05e028cee2cdc6783a8026e2518d154626a4d343
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
ed999a9d9723f59429ea65cc2dc2020221c66b8530be128bdc7cf04317dacb88 - Sigstore transparency entry: 2742390711
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 489.6 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45c65f239d8a5a1ad9efd03daf560803a1dc3fff9adb1f02d2a208a19034b119
|
|
| MD5 |
e141b821d7a54dd77147c6bc1066b1bc
|
|
| BLAKE2b-256 |
c86a18490252328d873b76f0739c22114fb0fc782cb9d0a9bf7d573466aa73c9
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
45c65f239d8a5a1ad9efd03daf560803a1dc3fff9adb1f02d2a208a19034b119 - Sigstore transparency entry: 2742390260
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 401.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a390319e38cc80e178ef4db3c5129c8aa51948d28aca9115666b74a739ce043f
|
|
| MD5 |
61a22f46126af5e2737cf568bea150ee
|
|
| BLAKE2b-256 |
23f7287f4a4ecd70e8736bdd30774f4fc8b8e0d612884c1fd458c332f025ad82
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp312-cp312-win_amd64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp312-cp312-win_amd64.whl -
Subject digest:
a390319e38cc80e178ef4db3c5129c8aa51948d28aca9115666b74a739ce043f - Sigstore transparency entry: 2742390735
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 729.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22b41997009cad252b001d1685dc75a4cc18cc5221c9affa809bf84faaed2ea2
|
|
| MD5 |
6c98e55d6e9d0122feba58f4d248b52e
|
|
| BLAKE2b-256 |
10b08d8992a4bebaa664c4603c1182c50cfae4536fc0e3b821179a016c873402
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
22b41997009cad252b001d1685dc75a4cc18cc5221c9affa809bf84faaed2ea2 - Sigstore transparency entry: 2742390908
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 681.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc95e4b475d96666674b2b78bbcb94e492e94531cbaa8a2cc4d41e47b8fb0d0e
|
|
| MD5 |
8e4a9d55b9368d1bea38bce22f30a904
|
|
| BLAKE2b-256 |
2daee67ba14feb5abd4ea80dd3006fa1bf50fe032e97fadc8b2ea72a05c7f25a
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
cc95e4b475d96666674b2b78bbcb94e492e94531cbaa8a2cc4d41e47b8fb0d0e - Sigstore transparency entry: 2742390310
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 519.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db631062d52f209455630690f8a76eb3f43b13eda253b65cbcc3141754b45697
|
|
| MD5 |
6f1a678e6d467778a3965a78b8ebcfb1
|
|
| BLAKE2b-256 |
028e0f8dba76956d3d62404ffdd71ab797b9662a6b1609777cf16a29d7a8eaf9
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
db631062d52f209455630690f8a76eb3f43b13eda253b65cbcc3141754b45697 - Sigstore transparency entry: 2742390706
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 502.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ceec1e208b23b772e1ccf53d7e1462e1eb61c10244b6fdbe81a3d905f73f5de3
|
|
| MD5 |
4c82b55ee10b567c6cbe7cc5462bb9b3
|
|
| BLAKE2b-256 |
f29b2e4450eb2bde9c5da28d9e30b61f6ebd00f405774830b50ce1ec6c0276b7
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ceec1e208b23b772e1ccf53d7e1462e1eb61c10244b6fdbe81a3d905f73f5de3 - Sigstore transparency entry: 2742390679
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 473.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a7e2bd6dd3e55d5d1bc3f1a8fe94b0a21d4ec0592624748d016c86432c4252b
|
|
| MD5 |
64b63c46cafeba0ce7d4a0e660a281c0
|
|
| BLAKE2b-256 |
a8bd00421a8eca87eddfa9b20201759deb76959b9915c8321329cc6f4bba8ef6
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
6a7e2bd6dd3e55d5d1bc3f1a8fe94b0a21d4ec0592624748d016c86432c4252b - Sigstore transparency entry: 2742390529
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 489.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
714e1eb4f4aeabd9d96105dc063da4ff46a061b8b7ce91b695e5773217b1f35e
|
|
| MD5 |
a8af68e1f7141c37fb8cb7ffbd435539
|
|
| BLAKE2b-256 |
9719434d98515adb7fa9f473c5da5e80ef7fb0d545d78e2cceff198bdb2a1ce5
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
714e1eb4f4aeabd9d96105dc063da4ff46a061b8b7ce91b695e5773217b1f35e - Sigstore transparency entry: 2742390694
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 403.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0a18f0f3525afed0cbd31ff359131edd3b1cd3008a63996abef410cbe6b5fbe
|
|
| MD5 |
10bba28b403746dcde80662464fbddfc
|
|
| BLAKE2b-256 |
d5f493b609dd713439278bda1c27197486f249d3adbeb1eef2398e2d87b1d754
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp311-cp311-win_amd64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp311-cp311-win_amd64.whl -
Subject digest:
f0a18f0f3525afed0cbd31ff359131edd3b1cd3008a63996abef410cbe6b5fbe - Sigstore transparency entry: 2742390852
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 731.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14c742d8c1c33a130232dfe9294b0575499c0ba098c14e40a6112d251ae416ba
|
|
| MD5 |
f8b287149903b313620f7aa72c85a816
|
|
| BLAKE2b-256 |
a7ccb9c2f3c410593a51fced08f3048938a324b33f175164f1db0790d661df31
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
14c742d8c1c33a130232dfe9294b0575499c0ba098c14e40a6112d251ae416ba - Sigstore transparency entry: 2742390716
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 682.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4755cdde7055ac30404d4219d6fe7e324d9112c187e46db83ca14ccea8c3870
|
|
| MD5 |
5834b4844d972de713dd12141d065b6f
|
|
| BLAKE2b-256 |
6973a677adb10934d0411ff00f988ebb4c96b2694d4c509df4df3f8351b79329
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
c4755cdde7055ac30404d4219d6fe7e324d9112c187e46db83ca14ccea8c3870 - Sigstore transparency entry: 2742390804
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 520.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b21d57c752684384ed984dbc5d3e888c154aa70e7ce2c13976d1cbd0ea2ca228
|
|
| MD5 |
8c48215de83a4b973c32d8dc21241658
|
|
| BLAKE2b-256 |
8132a105279b2b790f73dafc400c39270180df9eae65410eb8c017618ced9ab3
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b21d57c752684384ed984dbc5d3e888c154aa70e7ce2c13976d1cbd0ea2ca228 - Sigstore transparency entry: 2742390555
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 504.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ddb7ac386b182c14856511eecbaad14e377d406d93deaefb8f04c3df524fb37
|
|
| MD5 |
98089c7127ba7f2641ff7be61a3703bc
|
|
| BLAKE2b-256 |
dd8b4af837151947c609a60c0003e66c8fcd205cb855b474512bd12a6bdec7a0
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9ddb7ac386b182c14856511eecbaad14e377d406d93deaefb8f04c3df524fb37 - Sigstore transparency entry: 2742390766
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 476.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbad51c6233825cdfa2fe5c515917f7ca44c15f14d7260d436ba3bf8fc0683a4
|
|
| MD5 |
fc9701a121e75b90a56315125c010bc6
|
|
| BLAKE2b-256 |
9c31efc47215cd8a13129c2cd7929014b507b72dce26b17c6473413264f01499
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
dbad51c6233825cdfa2fe5c515917f7ca44c15f14d7260d436ba3bf8fc0683a4 - Sigstore transparency entry: 2742390843
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 487.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc71b8b6db04431be7adb12ce3f7b0663522ff2cb7218452bb5b3d4c4821db80
|
|
| MD5 |
2b82064bbff7fc6359455379c44e5611
|
|
| BLAKE2b-256 |
7f90fe6647787de1da0c91d2c8bb1c3456fd88ad82fa9f78e39cd538855fdf24
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
cc71b8b6db04431be7adb12ce3f7b0663522ff2cb7218452bb5b3d4c4821db80 - Sigstore transparency entry: 2742390173
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 404.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48486b1e6f89bffe5d3153c522fc1ce164e0c9afb24a35d29cf83734f174b08c
|
|
| MD5 |
e03c0550507a567e0c3da81169c24b65
|
|
| BLAKE2b-256 |
c30b7f45eecaecc4958a81ce38cc57c7f27d3ce2eb8f96985df6c1edba0bc0fc
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp310-cp310-win_amd64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp310-cp310-win_amd64.whl -
Subject digest:
48486b1e6f89bffe5d3153c522fc1ce164e0c9afb24a35d29cf83734f174b08c - Sigstore transparency entry: 2742390939
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 732.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c79ce4ab7af4c66e2af3a18e75d0245b6b7d5afef6cd77aa0c58d468af44f3e9
|
|
| MD5 |
d15f8e079a3cdeadf2268df015ecacad
|
|
| BLAKE2b-256 |
f17e0e5781a01750fa5465a36e0eb71b2223bbf7a5af2334bfc6bc2526074ba6
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
c79ce4ab7af4c66e2af3a18e75d0245b6b7d5afef6cd77aa0c58d468af44f3e9 - Sigstore transparency entry: 2742390227
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 684.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b72a831e58c1c18fc5a4df88ddcb647eda60497c951912990638bfd43ad4e159
|
|
| MD5 |
c378816f7df4cb83ad27aa75464c8845
|
|
| BLAKE2b-256 |
1c5564621c3cbb2ff0c5c22663424bf4a8f5c2ae64bcea84cbf08ceca418d13f
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
b72a831e58c1c18fc5a4df88ddcb647eda60497c951912990638bfd43ad4e159 - Sigstore transparency entry: 2742390742
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 521.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e637ee195cb77d63fd63688554e38fccc56e4ec0902eb6653dfafbedbf795b31
|
|
| MD5 |
ce6a77584bf2de9bbb130dcb443e6e30
|
|
| BLAKE2b-256 |
466e9cd27fea2d1b788b7dd7cec3a0281e89312ffd654e3e16459c37fbb59239
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e637ee195cb77d63fd63688554e38fccc56e4ec0902eb6653dfafbedbf795b31 - Sigstore transparency entry: 2742390617
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 504.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d570adeb9063f4a401c96e5a1a705d851b25adeb277f9f5def483d01f501bc9
|
|
| MD5 |
6378a474f932c174486270d533ddd155
|
|
| BLAKE2b-256 |
e75191fae85c59f47c06a90f0e05e73634320418795e34e8ae5055a37d814da2
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
4d570adeb9063f4a401c96e5a1a705d851b25adeb277f9f5def483d01f501bc9 - Sigstore transparency entry: 2742390156
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 476.5 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f82cae35f5dc7b6c70df1579916e71128056f084fd221b7593e0677465079c5
|
|
| MD5 |
8affc47076bc1cb5e39b3904765b7fa7
|
|
| BLAKE2b-256 |
d40033f99780cec0e51ee090ca8c1e5faf14c3a6a3c1f6fcd812dc7875a83742
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
7f82cae35f5dc7b6c70df1579916e71128056f084fd221b7593e0677465079c5 - Sigstore transparency entry: 2742390665
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 487.9 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c51677fd270f17f4eec035680da18489c3e7ad480ffce808dcd95dfe3db2eeaa
|
|
| MD5 |
404486be4f1d20ec006740bca9e60115
|
|
| BLAKE2b-256 |
efa6760ef37d6b4929b8ad05897e85daf1b181365ecefdd6753fc93214e02c2e
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
c51677fd270f17f4eec035680da18489c3e7ad480ffce808dcd95dfe3db2eeaa - Sigstore transparency entry: 2742390337
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 407.0 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4094d7d6f418ad406d01a7f334e747c3720357e12cc959ebc35cf087cd6b2c5f
|
|
| MD5 |
9ce4ba93f9cd7a20f25722241cc8f0fd
|
|
| BLAKE2b-256 |
8b69b3fcce22430136d89eb046c96ee779b2e4af634bfc593c1bcc1e0d48cecd
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp39-cp39-win_amd64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp39-cp39-win_amd64.whl -
Subject digest:
4094d7d6f418ad406d01a7f334e747c3720357e12cc959ebc35cf087cd6b2c5f - Sigstore transparency entry: 2742390315
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 734.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8644327c7c86a967f885d93f461a96efb9837f1bc18741c9c8f129f481a63007
|
|
| MD5 |
9956bb386ebfa2968d07bc7d38e2c12d
|
|
| BLAKE2b-256 |
f41abe12eeec8be6c3bc62678e97b2a7e98431f1e2678286d25fc2969bb0f455
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
8644327c7c86a967f885d93f461a96efb9837f1bc18741c9c8f129f481a63007 - Sigstore transparency entry: 2742390881
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 686.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0520c929fcbccb47dc5b0db9ea0660951ce07527238cbc1d7b4bedc7b223a79
|
|
| MD5 |
15f24a280279dd21fb8cfd518fe0edcd
|
|
| BLAKE2b-256 |
d1396b602be52f6c9f4b63a33158b6886157e4061df53491f1c1480e4228734d
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
d0520c929fcbccb47dc5b0db9ea0660951ce07527238cbc1d7b4bedc7b223a79 - Sigstore transparency entry: 2742390219
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 523.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99305c940b1e73885e16ad398a4a762a9be6bc9a280d2e1cc8a9f7332fc5bf90
|
|
| MD5 |
18bdfb47adcf6e65ec621d6179c2bcd8
|
|
| BLAKE2b-256 |
9e7b415e3242a1557b30fa51a3981d9727c2c247f6db0f72be1f6ef70f62cc88
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
99305c940b1e73885e16ad398a4a762a9be6bc9a280d2e1cc8a9f7332fc5bf90 - Sigstore transparency entry: 2742390144
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 507.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c6bf55eda965cfd597bb8268239a30a973cf6c304c2d9640967b1c9bcff2c65
|
|
| MD5 |
edf690eb40b443935dade7c46900a9fa
|
|
| BLAKE2b-256 |
4ef77e50839b39cbce04ab0fa6045af9c46cb62f14f0433411f65c151941a142
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9c6bf55eda965cfd597bb8268239a30a973cf6c304c2d9640967b1c9bcff2c65 - Sigstore transparency entry: 2742390864
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 478.8 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af8b300a565c4728096ae57c3994bacd2c9f92f571dc28984f97216849139179
|
|
| MD5 |
72e5f3602120b350f258e6c66d809bff
|
|
| BLAKE2b-256 |
2d3684d32b54375c0cc0ccf59cf8c176c5ab2d50af471e37c10b85205b2c481f
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
af8b300a565c4728096ae57c3994bacd2c9f92f571dc28984f97216849139179 - Sigstore transparency entry: 2742390354
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file djvu_rs-0.31.0-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: djvu_rs-0.31.0-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 489.7 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0712a52024ae1b0571e505b33712328800ffbb0904c123f4238ef1689a029b39
|
|
| MD5 |
e130d3c75847025e18ad31a8c7cbf0a8
|
|
| BLAKE2b-256 |
628ece22da2b85b366e8efdcc796210dd1b5688e134520f929dd857d44cae8eb
|
Provenance
The following attestation bundles were made for djvu_rs-0.31.0-cp39-cp39-macosx_10_12_x86_64.whl:
Publisher:
publish-packages.yml on matyushkin/djvu-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
djvu_rs-0.31.0-cp39-cp39-macosx_10_12_x86_64.whl -
Subject digest:
0712a52024ae1b0571e505b33712328800ffbb0904c123f4238ef1689a029b39 - Sigstore transparency entry: 2742390822
- Sigstore integration time:
-
Permalink:
matyushkin/djvu-rs@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/matyushkin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-packages.yml@ae9b8434c077f6ecd65cec93f5ce8e167ddefa96 -
Trigger Event:
workflow_dispatch
-
Statement type: