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.8.0.tar.gz (23.7 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.8.0-cp314-cp314t-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pikepdf-10.8.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.8.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.8.0-cp314-cp314t-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 14.0+ ARM64

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

Uploaded CPython 3.14+Windows x86-64

pikepdf-10.8.0-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.8.0-cp314-abi3-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14+musllinux: musl 1.2+ ARM64

pikepdf-10.8.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.8.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.8.0-cp314-abi3-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14+macOS 15.0+ x86-64

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

Uploaded CPython 3.14+macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pikepdf-10.8.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.8.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.8.0-cp313-cp313-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pikepdf-10.8.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.8.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.8.0-cp312-cp312-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pikepdf-10.8.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.8.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.8.0-cp311-cp311-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pikepdf-10.8.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.8.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.8.0-cp310-cp310-macosx_15_0_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pikepdf-10.8.0-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.8.0.tar.gz.

File metadata

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

File hashes

Hashes for pikepdf-10.8.0.tar.gz
Algorithm Hash digest
SHA256 295259723a2b464942bc092acee854bb389dd6b520cd853590e4ca89f47bbf41
MD5 8a962e741d868c1a29289e9c36a5646f
BLAKE2b-256 778414c5c5cc211ac62356ae02db664153cec7d64440c1fe13d1d40247aa69f7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.8.0-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.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e80185dae7caf4974ede137479000d8b8bd5497ac2ddfecbd9e706931ab54c3e
MD5 a9ea2ab650fff682a0783182dba4a35f
BLAKE2b-256 6a1c2e73e9edcadb99287baf8ff21678bda8a34794d0a2777b69496b4772949c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79a4f15ee6374234b8eb5825edf76205c8aa4c698ef402acf7b66e91cb63d1d1
MD5 2bf3d58e516794129f23c14cf334a293
BLAKE2b-256 998430c1ab28cb2d232b1104146a970ef3c9c99aff555f84b1161019e4399e29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fc299ed886c2e571ab0f683937abf6f9307e22a620b0aa91b772ee133f6e79f
MD5 cabe3bdbfda5190aab6289a2d401d83c
BLAKE2b-256 1e4fff2fb6d1cf1f83cd97bc698c7be713dc9e72165848d8a574768b2329c8e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b483f5e8f3cf0262d47c5f4ef3c1ed3efae4e54f3fd3ede9ce5e3fc11e22bbae
MD5 0a0116db79f0840d8e470b1bbc2c7e39
BLAKE2b-256 e1b43832ae5ebf102af7801acab1a871519112da9c50d7d6d655e42fcc8b28cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd93ac79b8f8755bad7c11dd1c7ab2b6775aaa14a8f448cb3c9b5218608e3c98
MD5 d0879da1738fd14e72e0d931e8c21c71
BLAKE2b-256 09e5073c7951afcc7d9f50c21d79524b49c14a158e564a8eae56377c06ea849d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d33be2521bcc31a64abb1a940b0a8b61924f6f99f948dd03c5e635669e36f7d9
MD5 53887b66d3a413b5f0fb9d07a7db95b2
BLAKE2b-256 ba9e2d63eb001b539e1ec8c2aca995cdcc8820507b9859436add87c089b63595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 190b9e3b0dfc0fbc7074f2d629bbf77235812a91f3ba6a6d31def7b97fb3b6e8
MD5 7ad868e25186ebf76b659634147ff216
BLAKE2b-256 92815f3831e576acda75e7a27d0c85fecfe399b623890788204413e0b6f8b832

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.8.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/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.8.0-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 a8908f3009e2e010284ab36c9d8559e0d2d4ad144bbce9d4fbd1ecec6f19b8c5
MD5 fdbca13091a48bad25bf82b01cfb6e5b
BLAKE2b-256 824a77679192a6f6d964d5436474c2b3319d88b4ecc2cd5b2c51c0e0b07fff87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c960b2d16a523c02efb7accebb42b514da0386ecc623554aa92361b85543fa3a
MD5 b118dd0c2152cc1b69c4daff95a138bf
BLAKE2b-256 7bf4c9463ac48ec94217e66f2ca46e3a2fec4d24ae0b78d2bb448038e8a73939

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f12ce15508e67bc6ca88f434524cd4c1535cf54dbff637d1ddf3a4b24055ace
MD5 4194f667c5f627b46dc1dbd11ef7d938
BLAKE2b-256 aeed7550b190943dea40bd1b25a702140e5f683f4eaf77699094c59c7d527a1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b7a3c0ddbf490cb3505cc21fb6f7f30156808a52ecdaaa32ef287b30ccd0a01
MD5 14993356d6c354d88ae48092f7764816
BLAKE2b-256 8d3c856a819de9af7f1fa564d89671f76d794dacc25c923d607e580aa237e475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29b00bae100c3902ea15e0f85822d21ec7458dcc5bb1cab4afd336e09656c46a
MD5 687ff43a04d793c8d7c8ec01b6c54a76
BLAKE2b-256 90671955ebb3a99c834f2d7f0de9b15909441807bdacb08d1b78a7c8de769e18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-abi3-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 54e7b0c45327c2c83c00b6919ad0baa59d0dc13e370fcd6ab7bf0e9b47992663
MD5 48e75e67efae595d0a723f9b6ec5a8d6
BLAKE2b-256 aa1005e52ea184185865264a5bf48ba4179e5e6bdcbcc85d2bac69e342451766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp314-abi3-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fb9325d038c0078b88733409f21a9a9f569049bdaba3f65c5ecacb84d854857c
MD5 bf5acf5a789114733c61df9f7608bd83
BLAKE2b-256 2c0903e2de8e5f50e8250aef8a94e30d610b062d0f80de66fbd4f0cc93c1fc06

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.8.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/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 62a7b55f6fc6e6844e049f3d83d0759eb4cd9204f44463a54b6b7171e6fa76f0
MD5 4fa66c14895dce590cf5cabedfe2a17c
BLAKE2b-256 4293d08afb6fffc53ba1bedd456431196f7b5c526313a37067271873420c9bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cac1a2af533979c09ca914d61c041315d006b14526486ab2176ec25d075cd07
MD5 0db777e167e95a52fc2a8ba3b41a7d53
BLAKE2b-256 041265577793aa67d397f255f7b7e0c1c69cf6fa95166a5bc63f64a47c2f2b96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c29fbf89db8d6acc47985d06831dd98c2385f61efd3144067821999543ec97c1
MD5 451805e3c266736cb1652ebcfcf92673
BLAKE2b-256 f12b27f7c7abb86abbe79f8da3decd63716d7e269f75b03dd03c459e4780cf03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17a77b8a9623548d761bbcc2d77b0cf69858b4d05ca10bbce8f82b2f5959520e
MD5 7d27cafa1d004f6c4849f431d05236fa
BLAKE2b-256 dbed45d42edb37d401927eac2bdb1caf4a0ddf995e85bfbf71a220992e6dbc6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 adf38903ac404dc85e3ed08d8a125dc5b357abe9f3e1082046f0c4f17b1ddb33
MD5 7a7a711122a366f2f3810d16ab40053b
BLAKE2b-256 2a4f1ad17dc7dd0fdd98a2d4cccc15fa908e944e42ba7448b6ac0b799d956b0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 296f45d42e4837866573003f5323e4a26ba9e22c34d97c6fe82730e9a1f3c33b
MD5 931b2f62ead3a0d8329c848d69c86b4d
BLAKE2b-256 a036d2c2ddd2e5ea61c64c7ca05c48311b6fa65b8404b492d02462e8f8173834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e28c882b79b502ad4f13644b1afc667ca44df4aa72ba1d526f3b6991546c5271
MD5 e3661d8eec53398e391106bd0444eee2
BLAKE2b-256 a7705d2187e44ff0ab196365d0596d2b68616a03b34a96a8920f865252bde3cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.8.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/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 00fcc505b08ac982c9aa1eb06f828ef5f13122a82bf7cf8c381ce7035bf863ba
MD5 6f229df363abfc39d08b590e0f11c36b
BLAKE2b-256 96a5ff99356c71a03e753222137ba3060a8c66b4eb1011c00b5c566e226c104c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74887ae915c995eff8c584b0a9e49999407d128f1a5c92f7c6a2e1fc3a46b67f
MD5 bd05402b8c65078ee13ffb60df4d0f2e
BLAKE2b-256 1b933bc543a0123fddaa84e4b189871cae79d02dd5fc5fb084107c4af6d7a4d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e049d4b36932788a3890a5a98eb9bc92a08b261a36699bd6a2af91d6ce60d6c
MD5 40d43a9a4b8a667ec3d3fe22278477ac
BLAKE2b-256 1d4719c4c1de9733a3732020354f0d482e1a33572b1aae098b4fb5bd3ae489aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d84bed4ef6957efeb20269569f9a7a3c83e5f3f384e0aed28bdc64b336aa810
MD5 e3fe7ed8a8431f94f262c74f96b84130
BLAKE2b-256 2424447440f65031d2d29b4998b1e084febdebc0b61176122b96d84ae00fe89a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c99a13b8c06ed7e9c6faae6f6110fa42296bbe006297db65070e39a36059a79
MD5 cfdf36e2cbe9a4ac4c74de074743303c
BLAKE2b-256 8620bd54164968e97aac475d57d1387a4c4ea3c56fa2e6a05f54d7a0122d84e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f0faa5d68a76770a00cf53f7920dccbf0647185907481af2bffa611211b916f7
MD5 cdea9cbbdcd1f818449e2fc6bc71d427
BLAKE2b-256 7347b154c0c58c7c3e0561a0c86930126e2caba05efab64423642cb1c7c749bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1d57040369aaab59482f9c9b17198ca140d0d60c3ff621259259fa57424483cb
MD5 f8b2898229ed36857dca4e287b9ed1ca
BLAKE2b-256 23d18ad5bd621e2d45e6d959ada1d02053018ae36aaa90548e188db236b64e76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.8.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/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 522f4bfd0cbcefec2a3e56d685765ebe17e17b0f2bdc2328754142dd5e613689
MD5 f19bbe8d110043b8c74d09c3f5df056b
BLAKE2b-256 255320dcaacd9966779e93636653a213d58aa11b0293da07b0945b3aaed0d0e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad4c1dfae91f9292256b059d23ba1757060d1253b86300312c8cca3517573c1c
MD5 05cd71097e0300a1f4f3ebdd2482e990
BLAKE2b-256 fd1a5bbef47af6413900e7bafd338bfcb58e01d653371f86ce0893330c18033b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2768208bc876b2180ec622bc6ed5d24eb1710e89f114d41254fd1a5c2a2e95a8
MD5 fa85ccc97dd48b6611fe3291916e07d3
BLAKE2b-256 029c060dc853ce7b0f3b4f1324cb0d3e1199afaead0d1acfebed8e47c4b4374e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50103eab3fbc5ee4fb28fa2146131cdf115a5cec21883086ed541d35b1cc241d
MD5 44118fd0fb53a05060e815aa571b8ea7
BLAKE2b-256 8c0b5ebd16bdc27aba9668b0974c8a7e4686faf0bfd7d9a9fe82a6d0d319473d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 819bcaf3dd07028aab02aa3f3c5beadfac8bb83410753506a86410e16ccb6657
MD5 ee05f500cce88a353703e442405eda4f
BLAKE2b-256 e9364d04cbb59c1efc4afa32eaebfee606c2ec9d87803882415c57986e565d4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ff305fd0262d56a0c67401c8a0e18cc2e92b0c319905041b14d4d901bfb0657a
MD5 0b488ec9d3c3082a78f066aa66a72fb1
BLAKE2b-256 5f37aea7cded4752f727b8f0436eb017e81c16d35290db2a0f6e64be4fb6d5ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d6021671a96702580daa656089c5530024c249ccab7c864a0caea5be4b7616ed
MD5 63200f641e08afe8f62de7946168b91b
BLAKE2b-256 0a63eb2d521cdc926694a0e5867a1e861f35f5c580b35cded0cb365c95668f67

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.8.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/6.1.0 CPython/3.13.12

File hashes

Hashes for pikepdf-10.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 718f13f8f8b1c4e9050d6ea4e73e079591d27d907d0a945cdbe01410e10cf724
MD5 f4162801b04dd874970996243bcc805d
BLAKE2b-256 d46074b5b8ab5a50c792d0d466c07dccd8f037043f6646f786c2e5f67d4f331d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0db74a01a75523e989d0eedfb7968034cc442b12869936c89bcb01ef2add5906
MD5 2719f9ac6394619dca6220e30143935a
BLAKE2b-256 bf3efa482e812e20bd9b57ececd5fc78b75ec30584afb2208c3140787d6e3426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b12f440f13567e91fce79b7cf536c3898a6c260d7a94b301f445e8578c08ed31
MD5 aeb940ba80ee6ddca90bbed53bdf44b1
BLAKE2b-256 238c09739193be4a6d3b98656656c245cd32e7e3d089007ac35e1f4ce0c82d91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93e1f465253fe270845e9d8937ba3c910412937dd9bcf179bf996dba68f9e170
MD5 03d3736765c6a0025b3cf18f9bbee3ff
BLAKE2b-256 03947f84d7c848312f795e1e74ed13639cc64860e5bf61c8d2a26031c7d5a2f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01cd3ae927c16e713daaf96a0f699c1f1316b126ca50003bd9d147f3ecc322ff
MD5 ecefea9e737f98e169116dd69339a6a2
BLAKE2b-256 66e5ee16941aacbc811656af5749ce91659bb697ac07e47aeef8f2be9423d651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a6070fa73d8bdd81151313afb55ea88d7e19aaa51a40592df0eda2f8be123479
MD5 fa85070950fb2d7c0e0c4aaecda10019
BLAKE2b-256 7b3b04cf35488633d407fa840d0b1a28442aeaa48f626cf12190b0501b3bbf34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.8.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 430d936f6080b0c8b2829f2e076491a96d4446a142328b0b943eec02afe73e72
MD5 0fccec46b4b4b91c63d64ff7b3941523
BLAKE2b-256 289ac8566b36d3df0d123aeb7c0b04970bcf8adccaf8afcd5cb2558aa755abd4

See more details on using hashes here.

Provenance

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