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.11.0.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.11.0-cp314-cp314t-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

pikepdf-10.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pikepdf-10.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pikepdf-10.11.0-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.11.0-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.11.0-cp314-cp314t-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

pikepdf-10.11.0-cp314-cp314t-macosx_14_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

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

Uploaded CPython 3.14+Windows x86-64

pikepdf-10.11.0-cp314-abi3-musllinux_1_2_x86_64.whl (3.9 MB view details)

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

pikepdf-10.11.0-cp314-abi3-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14+musllinux: musl 1.2+ ARM64

pikepdf-10.11.0-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.11.0-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.11.0-cp314-abi3-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14+macOS 15.0+ x86-64

pikepdf-10.11.0-cp314-abi3-macosx_14_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14+macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pikepdf-10.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pikepdf-10.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pikepdf-10.11.0-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.11.0-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.11.0-cp313-cp313-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

pikepdf-10.11.0-cp313-cp313-macosx_14_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pikepdf-10.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pikepdf-10.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pikepdf-10.11.0-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.11.0-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.11.0-cp312-cp312-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

pikepdf-10.11.0-cp312-cp312-macosx_14_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pikepdf-10.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pikepdf-10.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pikepdf-10.11.0-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.11.0-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.11.0-cp311-cp311-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

pikepdf-10.11.0-cp311-cp311-macosx_14_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pikepdf-10.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pikepdf-10.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pikepdf-10.11.0-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.11.0-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.11.0-cp310-cp310-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pikepdf-10.11.0-cp310-cp310-macosx_14_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pikepdf-10.11.0.tar.gz
Algorithm Hash digest
SHA256 4bebc59ac74411064e7c97a4036174023e22ccbecd22b78750ab76551eb38988
MD5 0e7e7492016d102a70c4b2c258d3d15c
BLAKE2b-256 81f4786a14218d80727e357d935ed94830090a8bc28eb4a7732ed1b4352f0b43

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0.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.11.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for pikepdf-10.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c0e56ac4fd10844c85effe5362b7740002d03c2f9f0647029304588ba4115def
MD5 d3fc412c4f585fd1a4d8ecfdec4e696a
BLAKE2b-256 b6792426c7174d93da05da93f7054f1d0e5827431f2c56e6eb3380c1effb013f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bea62aae8ca4abac78058f836de4e5aa8b55cd1b7e6b8e1f1e765a5b14f190d
MD5 bc47d4d72085ff5839e224db625c329c
BLAKE2b-256 582e755d8c681b7eb843a6c91bb3bb29e3c5466014f8321f4f8dbe1cf6b51aad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94c7e095310dcd427579b7fbd95bca6e305ee56ea05b9941385347884d51a861
MD5 a20910e7908e9c293b4fa7bf82101af7
BLAKE2b-256 6c850389e514fcd121111d1f93659162285a3dc468b79e54d6210e4d13a4009c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 832302313a461cc4448b2e5e11fdbd2f3b775798f02f58614a53d2788fda1e37
MD5 3ad89017d22cf4e070d42ea64d693920
BLAKE2b-256 ab17015a3c9a3384eaa9c6bf231d31e4559188e55c45780f1805941823e0dc3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31a52619eb627a0281a8425c7c2b9164b277a175b1929ba7496a63d3ca518b8c
MD5 285b0777fb44ccf5ca85f7c6e1ae9e00
BLAKE2b-256 724b24c94369953d9adcb3e72265b9a06fae1b26f9231bd38653d4232a666f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 888f6fe890c71f7d5650e002f992e7dcb92db224e89d5ed62efe71df7bfcee94
MD5 4f4a9fc1e35c5b84ffea27273c762e59
BLAKE2b-256 a489ecc4a12d6f8e9ccaefee6510e9e847f45ea5d1a495d8697e663516613075

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 82b188d829ac00e036182c70e2c10d82accd49d64f4ae60e3d13207e0ed78fe4
MD5 3099e49bdba99f64d39f1caecb552a73
BLAKE2b-256 0ba8542d8fbd32d746f99561ebabeb1769a386827b3d8dacf25b56dfa94c9f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-abi3-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.11.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.11.0-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e8805ef426e7b79707abe5536cc89d4ecc5c3d0778f66ac191f6696568042835
MD5 439bc590e2b9feb210adc6919930b685
BLAKE2b-256 0525e4497a41fa87cf3a6bbf2ebfba9d685fddcf3e5144071a7712025af54bc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f791b621cfffba5e9feb2d7323a6c9344505e55150924670e17b15c03067350
MD5 ebc2ff5aaa74a18ebfba3d064de2efa9
BLAKE2b-256 c5bfa22508b1a9973128d023c9c4d65d0fa2db635e9a850df89168914c854fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe7eba2eb80eeb93c62e52039e51b329d58f984225fafde83fa5be2a925cdc96
MD5 fc75a1dab6849d38f5c18941279319f5
BLAKE2b-256 e922cabe87ad99cce6ff6581343fd378cf1377c2cecda65520ff63d960c4fe4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ef5b8da7decf393e1134893e0266672d58abf3828241f3f0fc558c3f54e2c2f
MD5 590255299799f1ad3f8bf5c97cd23074
BLAKE2b-256 caf9ca351aa3fa93dc77ddd726eef14209cd5d972feb5dacb168a0f387703772

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 856d82bcca70b850cde34a0cdd8356f71e36837e98d24c43e5c2d9abe7b8a598
MD5 5f0be856c9ab205dd570340f4b8b5e62
BLAKE2b-256 cdf4b2c1bf7256a0ade79ce0af4a19835d80ab4f6b7daced455c0efcd8f467c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-abi3-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-abi3-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5bbc18c0186c25a150137998b56079ac6aed4b6a5f4621acd1b88760426f6cdf
MD5 e1232835bedc85d2c03c04e45e45384a
BLAKE2b-256 c60b05f1fa2357723dceaa18fbed6de6181c9c7fbcf4a68265c8812e97b3d72e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp314-abi3-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp314-abi3-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5bfbeda5dd259d0b465ee047d361fcea53eb2019a64cf410519ae969e77796df
MD5 00ecea451e246d9401a85c07e97c8976
BLAKE2b-256 45a402e930d1ab584c33e8a07b5bd87441b67a8feaf129716bbb82d25a1c739b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.11.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d1e7ca51dae20a1bea0c724a52c380a91e8fc7742b5e98e4aceb8b096aa6c391
MD5 acb13dbd9cca8f8c3ff87f54e8d7d22d
BLAKE2b-256 13a28cd5136654bdbf26f44aec5c01db30fce3a481a5998883fdf113dda4549e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5335bc453b6f567f582b43d3840ccfdc69689d8194c47f43f59acc264bb6da5a
MD5 798fefdc0c9ab38e82eae03d7263f043
BLAKE2b-256 572a275ad3d343f3f58176913233bdbbd67881b490b733b552db30d2f96bb21c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49f7f4ef9820205f05254c446e7d069cf9175f78830445f3719edda6c59a6766
MD5 9db706e7e635ba898c1b11aaa53c73a8
BLAKE2b-256 5164f413d834a611af4e2f58202898f0f015935dd77347282e163d80d9b65bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a035f17a959a551e62a42f015ea5f1699a3c2875b4c186cf5fd8bb0db45605b9
MD5 868ad8b63cc20371f4d7abc42ae12fd8
BLAKE2b-256 18ad4c631586c2d784c7de954f44d1be94eaccf3aac40a58525622654130ee3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c39b07540d3d3024f2a056a636e93cad0b9d3f7f511109b0fe6538fe2d3e9c1
MD5 e6a243e48ba1aee4fad02757a04b529c
BLAKE2b-256 b0f849fd21c7c60183175608bc88c6d935cb57fd91a008db6b976a80f4a60e5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 14db784bf380a53bfe0de315aa5e7e9373122988fba1a35966b1a06e53b4835e
MD5 f0f73cc40c38b31d480c85f057a45b23
BLAKE2b-256 abbe526e308f231b72d56cb688575c76d6d43390227f27edc7a4d242f742c472

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cd801c8734cd2be03849c199fad5bd74312970ff6e08f2c35138f3906b6b69a9
MD5 455a5b4b0a5124991c06058169cd6f49
BLAKE2b-256 9c55ec20b468bece1d9d87d97720241bba3aec32ab063495bbb4020e4eef7e16

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.11.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4c79661ef7e4f0e0a8555dc1be19cc4ae6ffcc3627a07223e01421d26970a6a0
MD5 40fae713c661f110eb19b6b326732f85
BLAKE2b-256 08b352ce523f8610e693d51f6eee9888052b9c8b5f60904ddbcf43c7013f41c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22e2d6b61dff4ea8c05a579a70403b88f1d9544f9ba036d8083eeaff064c3534
MD5 345f9524dda253bf0384126148be1c4b
BLAKE2b-256 ba03dccd2bd8bffb6d06339fe0d2e4bcc1d84915d2038c45727f52b10ffd11c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4730e06083e391f6301c7e4faa7d150982d7697fcc35c9ea15d50ed1bb416a91
MD5 bc4ad5b145167dc9052bd859ade5cd46
BLAKE2b-256 4088891e54e6e6ed8eca0fe2da6e4a22ced87aae8017d2600297f68c5343f419

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 950ed9258afdc618dbcd15b3d12ed37b33a8e7441211e9a04988cbd6a1e0f187
MD5 dff89fd77c4eba9060b7ab1741b9d66a
BLAKE2b-256 1b64dcf45d018a56bf1f91499290c2b9c27f6a3b4abefb60c00bf8b1d4917112

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1952d7cd75236a18fc85b5a115298635f8cbb6d7d96784af4c490536076b47e4
MD5 68b7dc998f50cf15568706786f634782
BLAKE2b-256 b95698d288f064b9f1dee4a103206f8a48a9d5b134fc69a269fb0eaa5501b016

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 305e701bcb5c05009e431ec71399e9cc08313baf0f4974f2267db94de087c129
MD5 d59375be8d6200006265a21cd63a49fa
BLAKE2b-256 d78547610c84a0925ca149245ba19c0cbbc8bf95430c250eae71e818f7ae3615

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ff3bb790373f8799a33f4c36ec955074d34e9b163652dc837263970a93a46152
MD5 6f87619e1713f15259529c884fa4978b
BLAKE2b-256 5fffddfa7fbe048064805228de88d71c73e643020ff1134003ea78b3781a7b5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.11.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46cd23d067488b39af304b7451094561af71ddac8b9f092d2a97c619cbacddf9
MD5 dbd6d51db0ffcb2e1e7b506077a612ed
BLAKE2b-256 b652ad9673c08d0d2dec41805a2746485bc01bc742523a2797f4f10dc6f84212

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0282f66406a37c8e2db5b19fc05d530c593facbf505c308bcd7af5253a7bd19c
MD5 f723ea3627dea109865555501aba07a0
BLAKE2b-256 1a3f63fd2f15431243130e69f1c277b0d22bd394802377c375645bb9603b1a89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b091914b114f4dce37cba6f9ba8faab7ca46f86ed4648c1407cdd72da5592e66
MD5 bd4274887234175fa39267ae2ca205ff
BLAKE2b-256 466ae20c0c1097539dd4009ba7a19122b031ad22a11f6851f15613077b5caf72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eaac1ebeaabbbf6df96d315df311b4dfbd3339ae3dd03dc9d7646a70e484f960
MD5 7d492a7e7e686aaa6e2e0871ba5f57b9
BLAKE2b-256 c1b17d403f15bcdd19cdccae53eb20cc3a3a1ec989b652b48c66186369cf93a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7d62e0d81d557d1d7dc123dd7ac7d33438e55f58ee5df44a36331568d77553b
MD5 2475ad953d7b33a05d8af151368473aa
BLAKE2b-256 e61ccb45d4e413ea15b71c63757ddf7e2cb9f7ddc7be7013275b374ce71f59e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 eb38172867ea62b2e4fe2cf148d69ee06baccbf4f4a21f7fc6d831168a276b2a
MD5 fea13797a599a801236cae51b8677d81
BLAKE2b-256 fb4ecf675cedab08c3a72ec9910707ac60867ae7d04fda4834ca720cf343461b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f5a557acc69c0ca556282bfe525e134b3ecc5e26b86377b96f580fd5e54eb5f5
MD5 2d37a43dd350144f7a924637485e6e11
BLAKE2b-256 36091d90183814d424c1e705c51506278c79c4f687c3c4e1f83a2f9c308eab0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pikepdf-10.11.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87a7fc0f630b44cab1320ee161e6b03151cd9306f4399700df3b2fdf225449cf
MD5 a43d9452be911ed348575155c17d3d28
BLAKE2b-256 97153f0fda812506d1af081925f4c8dce67b1bc75fa8acf7a676fd954a165535

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f2808496ab1f689d3d3818553f2ebaf9fa6961086632a6ee39acb23f6267d88
MD5 99fe15033278b0b84dddb3ee7f7ca317
BLAKE2b-256 4e108705a32be50efcd238a291c24317d56acedd48fcecdf68e9e635c5d993cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc218e6e11fc896999ccc1dc72578117b0503a6d069abf7117cb253df328fbd9
MD5 96cf02dba766d9f53dcb167ff246bd7c
BLAKE2b-256 3e1ef154a4537d345e2403321b192aa3c613ee7192bcddb5ffef44dc1eb22f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 590e74ea73ac3db262905cf8a9620c2b726e7feb53250033123dc12fe19d15e5
MD5 ce5720293805f41e12734398f16e66c3
BLAKE2b-256 72ce705ca64e0637439b64f9ce8feffd0f72d4df3c680c43c8a02c3472c53ac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abc69f0b9bdd2959c82e6bed3543477339942cbcf6060838ab39ab9a6bb827dd
MD5 50648bf67dc03897022e87d36c90d93a
BLAKE2b-256 5e410269b1933dfd7878e559f4659575c9b3ef87f5a28c52c70f383265caedb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4c96812a359a97ba5278b8adc40f5cedd8ad586136e3b3e750fc940859ccb611
MD5 5f6c6fa00c2910cfe5bfd7c79a385f32
BLAKE2b-256 ea908a16fb2244a771f26a7be2d7581068fc92ba037cae8c049511a3fc002e2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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.11.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pikepdf-10.11.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f2e4a7710d68db8c766d82325a0c7bbfcba39348f08f5ff76f12f4b01973b24a
MD5 0a9cb8d413c9000cba2416d324e3a812
BLAKE2b-256 e5bf44256ef2b41b6c45cb64c5886a371525d63c0be4a87231d30e21ab1b77f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pikepdf-10.11.0-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