Skip to main content

Read, write, repair, and transform PDFs in Python, powered by qpdf

Project description

pikepdf

Read, write, repair, and transform PDFs in Python -- powered by qpdf.

Build Status PyPI PyPI - Python Version PyPI - License PyPI - Downloads codecov

pikepdf is based on qpdf, a mature, actively maintained C++ library for PDF manipulation and repair.

Python + qpdf = "py" + "qpdf" = "pyqpdf", which looks like a dyslexia test. Say it out loud, and it sounds like "pikepdf".

import pikepdf

# Open a PDF -- pikepdf (via qpdf) automatically repairs structural damage
with pikepdf.Pdf.open('input.pdf') as pdf:
    num_pages = len(pdf.pages)
    del pdf.pages[-1]
    pdf.save('output.pdf')

Installation

pip install pikepdf

Binary wheels are available for all common platforms -- Linux, macOS, and Windows on both x86-64 and ARM64/Apple Silicon -- including free-threaded (no-GIL) CPython 3.14. No compiler required.

For building from source, see installation. Commercial support is available.

What Can pikepdf Do?

Manipulate pages

Merge, split, rotate, and rearrange pages across PDFs.

from pikepdf import Pdf

# Merge multiple PDFs
with Pdf.new() as merged:
    for filename in ['first.pdf', 'second.pdf', 'third.pdf']:
        src = Pdf.open(filename)
        merged.pages.extend(src.pages)
    merged.save('merged.pdf')
# Rotate all pages in a document
with Pdf.open('input.pdf') as pdf:
    for page in pdf.pages:
        page.rotate(180, relative=True)
    pdf.save('rotated.pdf')

Edit metadata

Read and write XMP metadata and DocumentInfo, with automatic synchronization between the two.

import pikepdf

with pikepdf.open('report.pdf') as pdf:
    with pdf.open_metadata() as meta:
        meta['dc:title'] = 'Quarterly Report'
        meta['dc:creator'] = ['Author Name']
    pdf.save('updated.pdf')

Extract images

Extract images losslessly from PDFs -- without re-encoding JPEGs or other compressed formats.

from pikepdf import Pdf, PdfImage

with Pdf.open('document.pdf') as pdf:
    for page in pdf.pages:
        for name, raw_image in page.images.items():
            image = PdfImage(raw_image)
            image.extract_to(fileprefix='output')

Encrypt and decrypt

Open password-protected PDFs and save with encryption (AES-256, AES-128, or RC4).

import pikepdf

# Open an encrypted PDF
with pikepdf.open('protected.pdf', password='secret') as pdf:
    pdf.save('decrypted.pdf')

# Save with encryption
with pikepdf.open('input.pdf') as pdf:
    pdf.save('encrypted.pdf', encryption=pikepdf.Encryption(
        user='readpassword', owner='adminpassword'
    ))

# Remove encryption if user password is not set
with pikepdf.open('protected.pdf') as pdf:
    pdf.save('decrypted.pdf', encryption=False)

(Digital signature-based encryption is not currently supported.)

Linearize to improve browser performance

Create "fast web view" PDFs optimized for streaming delivery.

with pikepdf.open('input.pdf') as pdf:
    pdf.save('web_optimized.pdf', linearize=True)

Access PDF objects directly

Use a Pythonic API that mirrors the PDF specification -- dictionaries, arrays, streams, and names map directly to Python types.

from pikepdf import Pdf, Name

with Pdf.open('input.pdf') as pdf:
    page = pdf.pages[0]
    page.MediaBox               # e.g. [0, 0, 612, 792]
    page.Resources.XObject      # image and form XObjects on this page
    page.Rotate = 90            # set page rotation directly

Use qpdf's Job API

Access qpdf's full command-line capabilities programmatically from Python.

from pikepdf import Job

# Check a PDF for errors
Job(['pikepdf', '--check', 'document.pdf']).run()

# Or use qpdf's JSON job interface
Job({'inputFile': 'input.pdf', 'outputFile': 'output.pdf', 'linearize': ''}).run()

Key Features

  • Built on qpdf -- backed by a mature, battle-tested C++ PDF library
  • Automatic PDF repair -- silently fixes many types of PDF damage on open
  • PDF/A compliance -- modify PDFs without breaking PDF/A conformance
  • XMP metadata editing -- full read/write support for XMP and DocumentInfo
  • Encryption support -- open and save password-protected PDFs (AES-256, AES-128, RC4)
  • Linearization -- create "fast web view" PDFs for efficient streaming
  • Pythonic API -- dictionary-style access to PDF objects, list-style page access
  • Lossless image extraction -- extract and replace images without re-encoding
  • Content stream inspection -- parse and manipulate page content at the operator level
  • Object-level manipulation -- work directly with PDF objects per the specification
  • Jupyter integration -- render PDF and page previews inline in notebooks
  • Binary wheels everywhere -- pre-built for Linux, macOS, Windows (x86-64 and ARM64), including free-threaded CPython 3.14
  • Liberal license -- MPL-2.0, compatible with most open and closed source projects

When to Use pikepdf

pikepdf is a great fit when you need to:

  • Repair, sanitize, or normalize damaged or malformed PDFs
  • Merge, split, rotate, crop, or rearrange pages
  • Edit PDF metadata (XMP, DocumentInfo) programmatically
  • Build tools or libraries that operate on existing PDFs
  • Preserve PDF/A or other standard compliance while modifying documents
  • Work with encrypted PDFs
  • Perform low-level PDF surgery (object and stream manipulation)
  • Optimize PDFs for web delivery (linearization)

pikepdf is probably not what you want if you need to:

PDF Libraries in Python

Python has several PDF libraries, each with different strengths. pypdf is pure Python and well-suited for straightforward PDF tasks without compiled dependencies. pypdfium for permissively licensed PDF rendering. PyMuPDF offers comprehensive rendering and text extraction. pikepdf focuses on correctness, repair, and low-level manipulation through qpdf, under the permissive MPL-2.0 license.

Testimonials

I decided to try writing a quick Python program with pikepdf to automate [something] and it "just worked". --Jay Berkenbilt, creator of qpdf

"Thanks for creating a great pdf library, I tested out several and this is the one that was best able to work with whatever I threw at it." --@cfcurtis

Used By

  • OCRmyPDF uses pikepdf to graft OCR text layers onto existing PDFs, to examine the contents of input PDFs, and to optimize PDFs.

  • PDF Arranger is a small Python application that provides a graphical user interface to rotate, crop and rearrange PDFs.

  • PDFStitcher is a utility for stitching PDF pages into a single document (i.e. N-up or page imposition).

Documentation

Full documentation is available at pikepdf.readthedocs.io. For the latest changes, see the release notes.

Contributing

Contributions are welcome! If you'd like to make a contribution, see the Contributing Guidelines

License

pikepdf is licensed under the Mozilla Public License 2.0 license (MPL-2.0) that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license. MPL 2.0 permits you to combine the software with other work, including commercial and closed source software, but asks you to publish source-level modifications you make to pikepdf itself.

Some components of the project may be under other license agreements, as indicated in their SPDX license header or the REUSE.toml file.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pikepdf-10.9.1.tar.gz (23.9 MB view details)

Uploaded Source

Built Distributions

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

pikepdf-10.9.1-cp314-cp314t-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

pikepdf-10.9.1-cp314-cp314t-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pikepdf-10.9.1-cp314-cp314t-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pikepdf-10.9.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pikepdf-10.9.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pikepdf-10.9.1-cp314-cp314t-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

pikepdf-10.9.1-cp314-cp314t-macosx_14_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

pikepdf-10.9.1-cp314-abi3-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14+Windows x86-64

pikepdf-10.9.1-cp314-abi3-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14+musllinux: musl 1.2+ x86-64

pikepdf-10.9.1-cp314-abi3-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14+musllinux: musl 1.2+ ARM64

pikepdf-10.9.1-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14+manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pikepdf-10.9.1-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14+manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pikepdf-10.9.1-cp314-abi3-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14+macOS 15.0+ x86-64

pikepdf-10.9.1-cp314-abi3-macosx_14_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14+macOS 14.0+ ARM64

pikepdf-10.9.1-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

pikepdf-10.9.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pikepdf-10.9.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pikepdf-10.9.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pikepdf-10.9.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pikepdf-10.9.1-cp313-cp313-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

pikepdf-10.9.1-cp313-cp313-macosx_14_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pikepdf-10.9.1-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

pikepdf-10.9.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pikepdf-10.9.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pikepdf-10.9.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pikepdf-10.9.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pikepdf-10.9.1-cp312-cp312-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

pikepdf-10.9.1-cp312-cp312-macosx_14_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pikepdf-10.9.1-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86-64

pikepdf-10.9.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pikepdf-10.9.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pikepdf-10.9.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pikepdf-10.9.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pikepdf-10.9.1-cp311-cp311-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

pikepdf-10.9.1-cp311-cp311-macosx_14_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pikepdf-10.9.1-cp310-cp310-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.10Windows x86-64

pikepdf-10.9.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pikepdf-10.9.1-cp310-cp310-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pikepdf-10.9.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pikepdf-10.9.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pikepdf-10.9.1-cp310-cp310-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pikepdf-10.9.1-cp310-cp310-macosx_14_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file pikepdf-10.9.1.tar.gz.

File metadata

  • Download URL: pikepdf-10.9.1.tar.gz
  • Upload date:
  • Size: 23.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.9.1.tar.gz
Algorithm Hash digest
SHA256 410fcf32bc9c8a0a96d94bbd6268ba7585333b1423b93a5fa2ef3c05f4eba3da
MD5 d07a7a124c41a878e458aef73dd3c192
BLAKE2b-256 410fa796e796e1a83e7e75b0ee061fbbe3b52889305d79ddf495a557e365ad22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1.tar.gz:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.9.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.9.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8e470a1470a809da83643c30e2e05ba629131b0193d32bc91f28c7b18cb8b23f
MD5 70ae656b4bc8ef2cea8e74b24d0c1bca
BLAKE2b-256 5a036a736a6d4be7e45c0b662f9489a519b6298f91621afa78827a5459ee5983

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8534f300fe4d1fcf311aa6ea073284d414e4a9c0564c38c0ef020f14825fb857
MD5 c77bb211715ad5ab048937c7578fffdc
BLAKE2b-256 a21e5a1493dc73b82f3721ec75dc0abeb8d357b8dee6a1abd6edc8ca75d874c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06584062796a2bdc201cb76c1452a2651240c7140102ffb00cde4e4808b84a21
MD5 65a3d637e72d3a52eb5074d278a7eac6
BLAKE2b-256 3cf1a8f44aa54d766a547160e29b0f3358ad1d6bc7c4b1bdfac097a470ad544a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91756746333a30ef286b8d3ead7a1382f6abb067519f3841c4a6392773059309
MD5 6f18c1765b54322ef75355203e17ebd3
BLAKE2b-256 0c2c13f41886d7e73fbe9056fae291a4d883fff9f37879c98b8ca36f89b1bfe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee509c16b86e007d205df2083b1012ec75c825fd62fdd90aca292fd4c7a4b213
MD5 149d1157ad6f334bed519aecf040ce92
BLAKE2b-256 da0e53f7a73ad0344387254c938aa39b359a9b9979341c2dd14a7348e1ecab40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 99d1f8fe53fa5c9d78a8c7c2ea4a7aad228e1b7b0571287de7f9decf0b5561c1
MD5 7df97f9c5f94e7efe3bcce957a03d0ec
BLAKE2b-256 ddf2a9b6a46b6610ed20484e1a245a4039738359448b471855de352074c972d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c748df16d09742e34ea3dd7e44ad64f88331d2cddf62d4d73911bc4193268f62
MD5 cb4502362fcc6326ae4bae26893b88bd
BLAKE2b-256 ca382bec744893aa2843af18a9bb03475dc193b9ed392ec49420946cd3c441e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-abi3-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.9.1-cp314-abi3-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.9.1-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 cd6c12ed7a1d8327b1279d8d14890aedc10090be38114f5a0893026f217c06aa
MD5 30941b859f484995d09b2e523547e802
BLAKE2b-256 ec754bc9beb1de126f4db1b6ac807852e3db212ba884e94b85c7552fc5735204

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-abi3-win_amd64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1d0c635368b1cd14e88e6a5a007c5271c30d1798d88452de0e88e4d6ee92335
MD5 d7c028d77de0f82f761cf726e589ac49
BLAKE2b-256 8a1683df0c82a2ee31e7b47e1cecbe8ef9de66b55642833f308bde559dd469b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-abi3-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c85627cd6122d5cc734069793ebfdbeccd60679cbd2c241bc7a199797cf802d
MD5 170d5fcf45d8a7ed99c70b7bb2ba3a91
BLAKE2b-256 4a4c627c73edf668113f837faa603cfba4140ed2836981547025abb8fc238526

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-abi3-musllinux_1_2_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8d19462732f782d1ddd1c556fec5195453b3fc758f4d4c83d7294700cc496e0
MD5 abb6c6c4018be7361a35271960eedfef
BLAKE2b-256 cd64b214a90fcfbb653d8ec5c33501028d163a3ecf51e267a72f0c5c363d328d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5dbeae48b65b8e9ed28419ebdd52b9cec7bf60a52c984d311b6df2458c3eee62
MD5 9ea46873b7bd3d70020f677e2b68b3c6
BLAKE2b-256 8430e4d13bbdbe726be9546e8ce6d81f16a650f9786e9fe8d3ba9eb8d4055455

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-abi3-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-abi3-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 cfb8146c396d4d8a92f20c72df0ec94a2ef61770cece29d27821b0fa2f52ce1b
MD5 08082c6aff035f5a9f07dd2b5b3d5234
BLAKE2b-256 d9c56b6d0d204bd51517e4240a349e5b3c1d83aca096aa6b115878385ed7e67c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-abi3-macosx_15_0_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp314-abi3-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp314-abi3-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3f9c79dc03ee8a44b8c4265baced60b8dd2c79bfa447a22eec67f9deade5d535
MD5 51e04f70c7623001c75badf1f94ed7e7
BLAKE2b-256 36a8551a73c191c8742fd0436051ed542b245aeea517eb7ee2d91215b9a4047e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp314-abi3-macosx_14_0_arm64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.9.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6fc3096e88d8f030252a43c44c808a89c2c9905988f0d66b72b5731f8a9e3a6e
MD5 3f9edb280f9c3da13c02d06dc5171876
BLAKE2b-256 289c4a7a588c748431b91dc617cd3dbbb79387d8a10fecc8a363151176df450e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7a5ff6cab6b2aed3058e362ec64d41f0c03e842eeecf9a5af30e21988ad6de0
MD5 940cfb63c68cc51ec50bbb642d822782
BLAKE2b-256 bcd3cfdb8207c3e6906853f04d857eb9dbc6cc98624d17481360c0b7cca2d4db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3311c44a8553f2c57bce37cc764df2a9c07ecc43a39690f7fc10c7fe081083e
MD5 c2ddb41b9f603267c953eaf6e0579c20
BLAKE2b-256 9740317206653f2afbfc89ecf5e896bdce4ce26e11a78c87ca51a49bef73be29

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16b7edf32814256b2e50d31336a0301371a397c466bf7624bce7639e66c07b97
MD5 a558c53cc040edc5cb27a98a2f19d43a
BLAKE2b-256 a48e533188d63f2b14bb6103bed6e048f2d5676622e2f902a3dff558ba4b40be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84dfb8c7082d85106d291bec71990f03215215a07852a698bd5d84337ce31949
MD5 ea40b744721ea16473b7f7dfb2a72ff4
BLAKE2b-256 7dc1f0c60cfde4116e8b01687f74c1792567c40a9bf3e1b3ee5ceab7267fedde

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 15880e09605f0c2f8afeacffb7c3b904e01569922596cc10ee3afc3777406206
MD5 2d51d89e3acd5787247bf7f21c033910
BLAKE2b-256 bf2f34deea50e306095533a8420ff4d6dd90d8c9c72ad9b46977dae63cbc4ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d9ce2812bd76ef6f3549546a4ad33c81be7e64a9985997628d084e8863d157d2
MD5 b6dc7e974d8572c18a959f1a28177f3f
BLAKE2b-256 a80ef99fc15ce0150455c1203e1abe68148d13da9a6f605d94e2a499d1194bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8dee389db583673a4c37036960f2980085aafc8f5b55f5843af23cd061f45fb9
MD5 34d13f64c6a794188ad7cd4e38fbffd6
BLAKE2b-256 2068734695c9be596354e2f38e77aa1be42a919a6db669c802810e662c17df62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84d2ffeac1bd20612db7346ea7b200c78d2d767cbbd6bb52a47d6e1153fa3933
MD5 123a467fc40042c5e862c17581381fce
BLAKE2b-256 d08ddf1b6f6aa9cad37d6d5545a5078b7347a60e07066fd56d267cc4ef2ba9c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9d26aeb4a5ba4bbaf03102906ef3a2333aa764785b98cc2769238635be7b4f8
MD5 28a2963aea597e2bb8651b8095f6193e
BLAKE2b-256 71303489d4cf70023528e2d5968a61be7f01349ea311cf25cbd7e7d2ccf1bdb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3836fc0547af990a2b8a37cda63526ef095dd36b4599cf28cda070a9994241ef
MD5 be29572108598512c9a0b36f34f8c30d
BLAKE2b-256 a4e16683d947603398d4db11e6ee4fdf2323f3fd7ffa3c6ad06995f213e2b736

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ea24f7f1756a7832fc7e27c9c4e1d7c98c1b847c00c3833299c5c03cf15399c
MD5 4fde641a40d0e931c3f1d38ccf60908e
BLAKE2b-256 ee4662ecb0480f4c1002d2183609a27df290301e2161fd062152e94bb281d522

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 08d2bee9fd5d7a32530cc2b0bd167600a0a296e4445823469b98f20907881bd6
MD5 aa82774b82232c83d876b68e461b278c
BLAKE2b-256 ca7a01679a404d198170785211b6dd32fd5cab25f3f952e5dececd8e1525b4a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cdc7520523da4966c7afabed20b6c57bc87de74e5e21d0e193b010495fb8f881
MD5 ebdf7f3c9404e72a4b12ce283a09ecd6
BLAKE2b-256 3bb361b86a9e11a85ea579ca3d9465e6ddfea79f4baf6be17f7b244569b9bcdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86ca561cb9c9130dea9cb54d3144db866f439e509dbbe285eba507811a8563d2
MD5 fd7b7c3b584c0a17ae8c62fb5cb6ee5f
BLAKE2b-256 fca3ecf64e38fa95e39a36f012ea22554549d0d8abe916cbb27a394191ceef44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cdb758623b450172240e42270072981c1821f236a023a29adda3ce6baf9d664
MD5 39b53fa9abae63914898f2b33c200ea1
BLAKE2b-256 c058ef5767cc8bfaced10dcdda3327c89130d26e236574ad4a5797e77fd9ada6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba4f4550132ce3e8fa2711f4e325a1579ba3031dc977580323f0a404ec9fb695
MD5 8778c3e936fab88e11a543efaeaed522
BLAKE2b-256 a93d1328a9910dbe5f85d492527aad40d03f36b5f96c7d2317ed98dab48d88f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1e6f3475bd142a72dc971cac5ba14190878ebc0435d5222264d4a681cbda569
MD5 9e6cd118f0d6186409fb106abea643ab
BLAKE2b-256 87ebe926add2b6e269d14ad56213a1217fc4bfa3647c0262e341a13349e5f3fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a950ed52c312931b8c6523953f7358efeac62d46dbd17a776338a1e7a77d0627
MD5 0309f262996da3eea909776f31c9ba82
BLAKE2b-256 1b1b453436f41a43a890c4d0a79c96b97589def9cce832d90b512e87a5bfdb7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 edb908bb62c18e9d3a307f3cbeab5f3b7cf063806b947a00f3baea7ad0c686c0
MD5 3f667c738a5a08a498ff864d841c5280
BLAKE2b-256 b1c1d015bca207a6749e6f2a52a2829910430cfad8ee3e18673ca98d5059de8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ae9d82222c30559dfb2b17df873d2b80d5f4f9c7e7522e1d91b8d5bf47d0a8b1
MD5 2265b50131e93f4a09006216e39b30f5
BLAKE2b-256 b0a139fb00f493e761bc7e03a6ee68f71f86d93f31adcbb8cea9294890072e45

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e280d58399847771b05f9d3c8a88c4f0d5756d231aadbc9bcb4325d55c45fc41
MD5 64c91c2bdc9331f013e81a4da17fc857
BLAKE2b-256 724ada3cb5e752613dad6cb1463f8bc738b637c0536ce64de27e71467d571d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b968e54f723abef90d38a8b0c50dfb5f763de594f7d5aed6317d015a40d985de
MD5 50dfc445607331fe6c587a6630b60056
BLAKE2b-256 54055c7ae69c271eb569a030f71b72059a17439c040653b13f8973eb277e4223

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86e02c09ddc7c34f04caebd6d012b97f1b1195b52f56074411a604585d7804dd
MD5 9abf63f2fc1d5d14484cfd6508405d8c
BLAKE2b-256 4645566f2988a69c4c5d3fd18c10bfd05340b7a730f440c1bd746dc077682068

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92d58fdea788379bfe06be3bfd64a4a5cac346f8696e7564622947362194a48d
MD5 63689f3f268901a3ffd4c80c271e6cdf
BLAKE2b-256 232a9c43fde3a90367a80bcb18900d935ad3e934d906787211d534d8419be1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7468f70f760a59c261a4980698d91a7e5aa3cd77ee9550fc7b44255406d033b5
MD5 beec6a243236d17e235fc9253140e10e
BLAKE2b-256 83965a5759497eea71996005a182f7636a8570567c297ef43c39948aa4a5b867

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c1da65280a9ea5d1ee6ec102ff08f80ca7c6d78cdaae62b1bbec901acfafa816
MD5 5014baaed20cd26764482a08af459ad7
BLAKE2b-256 3d9f0c4a420883508b532e836e4c6f9f61dc3270c8215ff473d3c639b0d883da

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

File details

Details for the file pikepdf-10.9.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.9.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 86423448997d7e51007838eb5c4feb644be0ea17693e2e0b5e0a4dee38c64a04
MD5 92f0878b9ca6835ee05b8fc7c4327167
BLAKE2b-256 ccbbaba50d320954e64a8f263c9f083001c0a7493c5b6e4fb5287708327aad0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.9.1-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: release.yml on pikepdf/pikepdf

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page