Skip to main content

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.

pikepdf source distributions contain only pikepdf's own MPL-2.0 code. Binary wheels additionally bundle compiled third-party libraries — qpdf and libjpeg-turbo everywhere, plus OpenSSL and zlib on Windows and the GnuTLS stack on macOS. third-party-licenses/ maps each of those components to its license, and every wheel redistributes that mapping and the license texts under pikepdf-<version>.dist-info/licenses/.

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.13.0.post1.tar.gz (5.0 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.13.0.post1-cp314-cp314t-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

pikepdf-10.13.0.post1-cp314-cp314t-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pikepdf-10.13.0.post1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

pikepdf-10.13.0.post1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

pikepdf-10.13.0.post1-cp314-cp314t-macosx_15_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

pikepdf-10.13.0.post1-cp314-cp314t-macosx_14_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

pikepdf-10.13.0.post1-cp314-abi3-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.14+Windows x86-64

pikepdf-10.13.0.post1-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.13.0.post1-cp314-abi3-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14+musllinux: musl 1.2+ ARM64

pikepdf-10.13.0.post1-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

pikepdf-10.13.0.post1-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

pikepdf-10.13.0.post1-cp314-abi3-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14+macOS 15.0+ x86-64

pikepdf-10.13.0.post1-cp314-abi3-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14+macOS 14.0+ ARM64

pikepdf-10.13.0.post1-cp313-cp313-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pikepdf-10.13.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pikepdf-10.13.0.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

pikepdf-10.13.0.post1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

pikepdf-10.13.0.post1-cp313-cp313-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

pikepdf-10.13.0.post1-cp313-cp313-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pikepdf-10.13.0.post1-cp312-cp312-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pikepdf-10.13.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pikepdf-10.13.0.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

pikepdf-10.13.0.post1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

pikepdf-10.13.0.post1-cp312-cp312-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

pikepdf-10.13.0.post1-cp312-cp312-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pikepdf-10.13.0.post1-cp311-cp311-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pikepdf-10.13.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pikepdf-10.13.0.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

pikepdf-10.13.0.post1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

pikepdf-10.13.0.post1-cp311-cp311-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

pikepdf-10.13.0.post1-cp311-cp311-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pikepdf-10.13.0.post1-cp310-cp310-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pikepdf-10.13.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pikepdf-10.13.0.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

pikepdf-10.13.0.post1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

pikepdf-10.13.0.post1-cp310-cp310-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pikepdf-10.13.0.post1-cp310-cp310-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file pikepdf-10.13.0.post1.tar.gz.

File metadata

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

File hashes

Hashes for pikepdf-10.13.0.post1.tar.gz
Algorithm Hash digest
SHA256 4b73f926ebae81f04bf14527af330bd00bb268be767e0f189f7c4c3e4ad7ae0a
MD5 691a7c3f5415548204327f010f8b6328
BLAKE2b-256 1c0e6e74dd213537b71c945743a4b3112dbb430896ad68b8a6ad22e4468455d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fb05fb7b42d85754219b55111aa61beff4e48da56069e971de1e5aca380c0ac1
MD5 3af7050b8d55695d6d82d0405e318259
BLAKE2b-256 48337fc9d6fcdbbcc419792eab6a4b1420bbe484b7c41d256a94582bb80ddade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99f6afccd6119233e7133bd4c2ade48461de3ddd4269cc28a4f90cdf7c1372f5
MD5 f357a4602ec1817fe6469055ac22054b
BLAKE2b-256 89a84857df72cf4773553c2e6a82f93ee5e98c02f1c4e4877379e84d27384982

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b948e11f7dd3710f939194f00b4d75b0df87a30d53b31414128768ac25da77d8
MD5 da9405378d55e94fb94d09dc3eb51e80
BLAKE2b-256 a94677574e9c4bded01afd7a3fe538f5432e396c3772c9bc1eab5d287aed00df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7962a75cf22d0d683b49ab19b8966e94dc7014d9aa6806f3c0d2b37fb9ae607
MD5 c421519be17b2b811acd957a38ff202d
BLAKE2b-256 c0aa43b355681f05ea0b5808a26cba9e8e764686fa8dcebe0875db612664de40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2db9a18074ba112e7c517e8c21dfd8894cc13b8a37ccf49a5841192170fb68eb
MD5 d782671862a770272123622e4ccf57ca
BLAKE2b-256 06def6bbd9653695f6e2ed3494a439f11f3a89450c004fe9bf8ee583201ea759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 571efcd1d54e0dd817973c76c253feb6fb758c93bb0c16a893cc68f2a178d404
MD5 2cebbdcd4b5d121135b153c2759fe358
BLAKE2b-256 aaf35d49a511fd13b59b94c5ad673695d331fce5d2846ab1501646c2a3b35b5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ef4ed47d40aa44deb063feb4a88e8bcf1c8fa0183ce526dc4295f7cbdb1292f8
MD5 43697538d80c654b4f6111d115e8383c
BLAKE2b-256 e96515a796a3cf9fb17d41acc1ab6719e7d3dcdf1260e76909d0dd32ecc97ba7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b69b89577b50617248185b6ad73cda0e4f15c57da11f7da8cc4032bf0d7d9ebe
MD5 be13ae674c9c18eefc14eee5b337e280
BLAKE2b-256 27edc64024ce23f0f3149217679f31dcf51f42c687d35d597894342e93321f6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 544f1be1b1e5630a79cd182a8663c439504099eb9eae0d342a50173d9825bdf3
MD5 54893c3d9860e99627a8bbecf787fd45
BLAKE2b-256 6e85a17440c2de64da71dc012b42e644b30ee4d98eb540c14d4e9f3538b73a9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0eb89f06cad9231b9db54d81a22592b03b63924824a6b850febd2b75daa6546
MD5 e96b194ee31dc29bae5b1dd30cab2e64
BLAKE2b-256 221579a2ccc354514a1321a161867a011fc917be158fc01a88da8c78ad18399d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 414f42c83e5e6029870de1a988625dafc95781ebff10e15d82caeb5e69a83c9c
MD5 209a9f8e174a8b0e1d4634611e769ed9
BLAKE2b-256 3bc9707f9ba96727fa366a650237e46f0e20a73b244592eb6b97a49e401e2b43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e18d5a009bbe5f3ab18f916fb9e28f0c5b0d920736e3a85cc10c627ec633596
MD5 a97523bc9c3246ab2486a6c133f71cca
BLAKE2b-256 58bbfcb09ad4bd227bbb37a7e5b24de86f9ce9d462aa0c7ee18781899bfa378a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-abi3-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8cb976331cb8b03ec3465e06d9e7a3eadbadb7e622be888e70f918ac732a105e
MD5 83a454c28bfbe9c37274e51a92de2cf5
BLAKE2b-256 f0ed923846b7511627f8564d09345e083f14674dfb193de92d27f1cc4650602e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp314-abi3-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 51fae4a4a3c6549aa4c405896ff7010f3e43e0c4f407c0bcee071ef13d271202
MD5 5acaf1e2dffa38af7061c17ec65e05af
BLAKE2b-256 140e86897bf5325824c1f2d9d8be89839baf11011b5392d92620cb0273fb9af5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 20c76343128ec41d5be58337b23c6f9f620fa7b8256a2d942460a48c07bbfe7b
MD5 7cdfa81492f859123ad68cfef7d47e5d
BLAKE2b-256 8b4c534f23c8c196b1a7dc8672e503743e2a4766215125db474b261e33f37a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7b0cbb135de32ec3f41651a08ab294e3c18ae9fec32516a48d27e64a53a47f0
MD5 8ec4903459d2fb914c9b2b651bd810fc
BLAKE2b-256 494087fb6dddc9dce110429c72449e942174fd500f6fc4c9ff518a6b73057aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b038cd5bcbb6c1952bcc271695eaf24c4199d72e45606ee5e467f837760820e
MD5 0d39fb709ed81b346ee3a005f4a232ad
BLAKE2b-256 9a5947bd86d9e338d301c28416d52d0e154a0d6322cf6b957c9df5f3d7828aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3b58ccb30b93ba400e6a6a83315b4830eea49f6f19e18d78241fe6b1c49fec2
MD5 66ec092dee64f4a4104dac963af1a871
BLAKE2b-256 2dbda68b5d9b4aef4d4b9c374cfdfd941623f52303d31adea13554568df42abe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fb8f82dc43056a4b4f891e78ee1db4e3ced75ba3e87b836f8e28c8771228928
MD5 fe47103e63f4dc0320865a6cec240ab1
BLAKE2b-256 b3a310367bfb93501a151cbb96b6973f7c049fef04040aea35cf6cedf579c3e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 55e53b4d8a4b1700f686f76e3a68411e421e962a4c8b1b90d00aab3f3e494a55
MD5 ee6d0aa076a2fb409265566f749d4275
BLAKE2b-256 cedc7bbfba253a0394a237b81be371a64f904f99636d579ec78ef5d92025fd2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 87141ada970386ff6640db54f0bda734d3bde7960d3ba04a76768b48e25028ca
MD5 960917e6ce8a80cd5605eb17d7031051
BLAKE2b-256 10f43636368760840cbc3ee512330024dd6f518d583c1bbbb1b551ca8e18f5e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 996a714a47cc725e3c48fe3901691d3353f3c2eeb9e0571aa2b16164abc40ff9
MD5 7ac4c8232cb3d9e6880effc15e77e89f
BLAKE2b-256 878311b16b2a235ddc3b1104a66b66f0324896f189c35d8e85ad9897784abc80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 092a9bf15739e931ecab15ec3baee5d9629dad90ea4e42b779f6b439d2d1e462
MD5 8cbdc8d73d0ba9dec47afbb4852b83de
BLAKE2b-256 be487a84adc2fd14ec35e4b3d007575914de1ce0518e8c69b35ebee62fa2b142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f76fcbe5d86f2ae6f231ba542cd04793d4c89e75bd5f62526b7412926ff2100
MD5 3b31e02cbab92b6784fa59bc7c00bea1
BLAKE2b-256 23b0ca630f56015dfc6c4c8c81fdeb5f5099e7fca354f54a41dfe7f1382a5316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01f80ca046d984752cf6f08093debc193884bee91c01c104aa0236767711a20f
MD5 15b256b29c55d8a8723ea6a7a1e2bbef
BLAKE2b-256 3ea3bd7e7b321e8bfe4b8530da57d12c557a259bbd4b40e739960a1f2ea507cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9613505f5b22203465d4224a3fd8cf69876ce8278442c6478ac6849f54724a30
MD5 05be92ce028c7245aa5f7a31675551b4
BLAKE2b-256 044e201f553b9405424d7aefa3be997f0a1c787ac3a089a844f1fc42f412fe0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f2463f650efab46905b9e279f5c776faf96c65bb45c1acf9f2de0e8a6eec5fb7
MD5 481a83da040e298c5479e02459042081
BLAKE2b-256 f9b329691a5e9ee915357c081730d8cc02f35f19b4155857556fbe562a4d83ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2c6e83f8a1828ec79cdec4df8cc07209eaf10ed7e4f5a90a7356b254bacc07d5
MD5 b29b34ef35e2b083b9ec60fc913cbe76
BLAKE2b-256 6ca5598e72c72ed46046e297f15763dffda88424870724a4a22f599b815cb774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bb5fe2090d246ad4b325d17f33a186f60f6763bba3d4ac3c4b863c8890e913a
MD5 d8befe8745911788f57fd98e12ba5958
BLAKE2b-256 f18155bc65ae623941323c569e22b9c8d603e9c9f2f913eee49f729e8ad0e386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b63577c44fedf7ed6b971076f7c7ed0ff95a8bac627ac93b79e8b542214861a7
MD5 11a67dfa3ac8c5b8c5c5d34286880f76
BLAKE2b-256 b6f5519e8728c04d05dcbd44d03b266a3f6acf8de3a0a6ed5ec0fa39ececddd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f515a31c76cce043bbb7b781e77a343a4e26fa8f520ba337d30ddea0f7a0ce50
MD5 67af6dc71155f117edb3b73302ec5011
BLAKE2b-256 555b0e7193ee8c7ca5b15f478918033a0fa78917b01249e1d4a4a65754644cd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 365b94f2be7e2857c6cb5445b56dc52dc7417ba9f06c8a4282d9f521cb2d0fb8
MD5 4ca4e4a0c98e87a1113366bb9f65d41d
BLAKE2b-256 a88a1f003558c5c05cecf182af775839ad674fe23e06b314d0219b9d8422680a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ba09ef5a5f26e38ee558d2a08223fee08a5ef1868962ae2d8590d4de3c8c92f
MD5 489d9661df60920b6dc6beacf4afb5ba
BLAKE2b-256 6638797df7d60352fc5ec3943c425acaa15d032cd2e673b516861f449536db57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f3dedd02795626f17ee42d5c02ec4ec94e28aa47046ef430d4478454a8fbd07f
MD5 29516cde4cfda3ae23150a1396748828
BLAKE2b-256 e920484a3a61664132dc8c4bd97e0b8291fa79f9f4a3b1e1ffd5b67ac41ed98a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 98a7305e330f797da02b543d3ad57a134c4a14c6ec6f8d86d91aa9dd130c425b
MD5 f717b229c3072cd4e13373998b29d7c4
BLAKE2b-256 4dc148c9c0ed2ed88ca5d9cdd7f16075385a05a812d781b61bfa7f2d5182b247

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3e9104db5ea5b5a7c5fde417147900966a687de39ef91a5ea103fd4b773aee1
MD5 3bf87764a3a49a509b36f7bc1df08d37
BLAKE2b-256 a3a54b5f9160920266788b3a3984b05bfab79be780805d6e323e5266a7685587

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90f17cb174db88e08075c5bfa3c619df00dd84abbad34bfa1edf84863f0b01a7
MD5 242d45ef636560c996bd2cde1469b9e3
BLAKE2b-256 dad232eb6099f5376ce1d1da8c5e4ecb6edb8448ddf58e8690a34fc45946a7e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e19bab4320e4e8771b7816f7319ba37530fd28a40372840b75cab394ebf868e4
MD5 fa7befa79bd837ed936806971864677d
BLAKE2b-256 2e5e9061d9d440900c1721dca35e8c5c88f2e046eec7529eace3e399f6a6a01c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0efb4faed9cbb59c1486f668af326096dac1ff0ca058eb48ec485742a9a655af
MD5 a5ea3575545e7bc2b095890f45bc4566
BLAKE2b-256 cb379e5b6eb29c4484a0e69d627a680512a03e2ef198c1023319ce5d202f7746

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43d70f244a4a1120a11cfe2227f8c03249fac6a7e3789a3116173102a3b9fe37
MD5 ab260e350a73797816ae82761c8a042a
BLAKE2b-256 85b157506fd18c0266dda42440b5b6ba44967078c4365e5426c5d67ff14f0ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c0b5127df90b0164dd846bddd0ed542326b2f69bd11f627afe48762cf16c2904
MD5 f6a7ed51fc090fa2f35b8fc68c56f230
BLAKE2b-256 f297a4ceda983aed695ced6b6015eee950277e9fbf603509e94d6726bc1c53e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.13.0.post1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 94e04ed92fe42b8bcebf8c40462868dca4eb92581dcc2be1f0c4b8ee23347386
MD5 26ee4b1d23aa5f5f731de7db89790ab7
BLAKE2b-256 fa432810fb8416c876a555affdd34d7daedb5dcd2c2a31e49765c0fa12fadf8a

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

10.13.0.post1 This release

43 files

10.13.0

30 files

10.12.0

43 files

10.11.0

43 files

10.10.0

43 files

10.9.1

43 files

10.9.0

43 files

10.8.0

43 files

10.7.3

36 files

10.7.2

36 files

10.7.1

36 files

10.7.0

22 files

10.6.0

36 files

10.5.1

36 files

10.5.0

36 files

10.3.0

36 files

10.2.0

36 files

10.1.0

36 files

10.0.3

36 files

10.0.2

36 files

10.0.1

36 files

10.0.0

36 files

9.11.0

43 files

9.10.2

36 files

9.10.1

36 files

9.10.0

36 files

9.9.0

36 files

9.8.1

37 files

9.8.0

37 files

9.7.0

38 files

9.6.0

38 files

9.5.2

40 files

9.5.1

40 files

9.5.0

44 files

9.4.2

44 files

9.4.1

44 files

9.4.0

44 files

9.3.0

40 files

9.2.1

45 files

9.2.0

45 files

9.1.2

45 files

9.1.1

45 files

9.1.0

42 files

9.0.0

42 files

8.15.1

38 files

8.15.0

35 files

8.14.0

35 files

8.13.0

35 files

8.12.0

32 files

8.11.2

32 files

8.11.1

32 files

8.11.0

32 files

8.10.1

32 files

8.10.0

32 files

8.9.0

32 files

8.8.0

32 files

8.7.1

32 files

8.7.0

32 files

8.6.0

32 files

8.5.3

32 files

8.5.2

32 files

8.5.1

32 files

8.5.0

30 files

8.4.1

35 files

8.4.0

35 files

8.3.2

31 files

8.3.1

31 files

8.3.0

31 files

8.2.3

28 files

8.2.2

28 files

8.2.1

28 files

8.2.0

28 files

8.1.1

26 files

8.0.0

26 files

7.2.0

33 files

7.1.2

33 files

7.1.1

33 files

7.1.0

29 files

7.0.0

35 files

6.2.9

39 files

6.2.8.post1

39 files

6.2.8

18 files

6.2.7

33 files

6.2.6

33 files

6.2.5

36 files

6.2.4

36 files

6.2.3

34 files

6.2.2

34 files

6.2.1

34 files

6.2.0

36 files

6.1.0

34 files

6.0.2

36 files

6.0.1

33 files

6.0.0.post1

17 files

5.6.1

33 files

5.6.0

33 files

5.5.0

33 files

5.4.2

32 files

5.4.1

32 files

5.4.0

32 files

5.3.2

32 files

5.3.1

32 files

5.3.0

32 files

5.2.0

28 files

5.1.5.post1

28 files

5.1.5

28 files

5.1.4.post1

28 files

5.1.4

28 files

5.1.3

28 files

5.1.2

27 files

5.1.1

27 files

5.1.0

27 files

5.0.1

27 files

5.0.0

27 files

4.5.0

25 files

4.4.1

27 files

4.4.0

27 files

4.3.1

27 files

4.3.0

27 files

4.2.0

26 files

4.1.0

26 files

4.0.2

26 files

4.0.1.post1

25 files

4.0.1

22 files

4.0.0

22 files

3.2.0

25 files

3.1.1

24 files

3.1.0

24 files

3.0.0

25 files

2.16.1

26 files

2.16.0

26 files

2.15.1

26 files

2.15.0

26 files

2.14.2

26 files

2.14.1

25 files

2.14.0

26 files

2.13.0

26 files

2.12.2

26 files

2.12.1

23 files

2.12.0

23 files

2.11.4

23 files

2.11.3

23 files

2.11.2

23 files

2.11.1

23 files

2.11.0

23 files

2.10.0

23 files

2.9.2

23 files

2.9.1

23 files

2.9.0

23 files

2.8.0.post2

23 files

2.8.0

23 files

2.7.0

23 files

2.6.0

23 files

2.5.2

23 files

2.5.1

22 files

2.5.0

22 files

2.4.0

21 files

2.3.0

21 files

2.2.5

21 files

2.2.4

21 files

2.2.3

21 files

2.2.2

21 files

2.2.1

21 files

2.2.0

21 files

2.1.2

21 files

2.1.1

21 files

2.1.0

21 files

2.0.0

21 files

1.19.4

21 files

1.19.3

21 files

1.19.2

21 files

1.19.1

21 files

1.19.0

21 files

1.18.0

21 files

1.17.3

21 files

1.17.2

21 files

1.17.1

21 files

1.17.0

21 files

1.16.1

21 files

1.16.0

21 files

1.15.1

21 files

1.15.0

21 files

1.14.0

21 files

1.13.0

21 files

1.12.0

21 files

1.11.2

21 files

1.11.1

21 files

1.11.0

21 files

1.10.4

21 files

1.10.3

21 files

1.10.2

21 files

1.10.1

21 files

1.10.0

21 files

1.9.0

21 files

1.8.3

21 files

1.8.2

21 files

1.8.1

21 files

1.8.0

21 files

1.7.1

21 files

1.7.0

21 files

1.6.5

13 files

1.6.4

13 files

1.6.3

13 files

1.6.2

13 files

1.6.1

13 files

1.6.0

13 files

1.5.0.post0

13 files

1.4.0

13 files

1.3.1

13 files

1.3.0

13 files

1.2.0

13 files

1.1.0

13 files

1.0.5

13 files

1.0.4

13 files

1.0.3

13 files

1.0.2

13 files

1.0.1

13 files

1.0.0

13 files

0.10.2

13 files

0.10.1

13 files

0.10.0

13 files

0.9.2

13 files

0.9.1

7 files

0.9.0

13 files

0.3.7.post2

13 files

0.3.7.post1

10 files

0.3.7

10 files

0.3.6

10 files

0.3.5

10 files

0.3.4

10 files

0.3.3

10 files

0.3.2

10 files

0.3.1

10 files

0.3.0

10 files

0.2.2

9 files

0.2.1

7 files

0.2.0

7 files

0.1.10

7 files

0.1.9

5 files

0.1.8

5 files

0.1.7

5 files

0.1.6

5 files

0.1.5

5 files

0.1.4

5 files

0.1.3

5 files

0.1.2

5 files

0.1.1

5 files

0.1.0.post1

5 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page