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.10.0.tar.gz (23.9 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 14.0+ ARM64

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

Uploaded CPython 3.14+Windows x86-64

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

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

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

Uploaded CPython 3.14+musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14+macOS 15.0+ x86-64

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

Uploaded CPython 3.14+macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pikepdf-10.10.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.10.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.10.0-cp313-cp313-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pikepdf-10.10.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.10.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.10.0-cp312-cp312-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pikepdf-10.10.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.10.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.10.0-cp311-cp311-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pikepdf-10.10.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.10.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.10.0-cp310-cp310-macosx_15_0_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pikepdf-10.10.0.tar.gz
Algorithm Hash digest
SHA256 9f134806b2fe608ccb21379a664ddcefeac3f6944100d343b350299d3c69754e
MD5 220bab99fa2e35698801d4eda5d8c1ee
BLAKE2b-256 95e745265a52196e7b1e4d1fdee57159d25670275784f5eeb3651327cf68e137

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.10.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.10.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 616adec2b1e3e2cf0640c8dc0f479ed9a07db298e32166ee7b60fb8b33dc98af
MD5 3cf00c37b6c3e443ddb86f1dff126901
BLAKE2b-256 51eca249a101d8e254b887353e6c98dad29f6133fb550e593c28cc47811ee0b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dd93d81e77e67937d76592ae3438ad80b2b6c9619846fbc400dd9d3e71cc689
MD5 3ab9cd8791d0dffbf527e64d202a3e40
BLAKE2b-256 24f476332de5a6755ab0910d89cc64d1a621a09821b46383ae664afd0c5396cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3670a7eb6e1263750a50cbf01b947f0a5fefd1a43a1a7aa09e2752cc54c7f80d
MD5 89e4417845ad704b269203779ab2e4cc
BLAKE2b-256 de93ea3456ee4c2957ad8f27b315b0f215f39c2f6284ed41aa1748393296692b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c2ba4bafdfbfcc417a38f817e317be905e749893104c5bfa02eb29010c3c8d5
MD5 6d7a5eade02e5ab049466722a4c6f360
BLAKE2b-256 65e2c0661a580d52c2294a6480cf63dc48695ba38bb611ad60959359d7e46a73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a1d830217af7a179984f156bc6d2dee3b2f6662286f993554e53b4f73452932
MD5 cb44bef84100e97c8b9843e872cb63c6
BLAKE2b-256 6a9bb45e3b96842053ac0c8d0d0d2cefbc3e86aa9625bddd72e66f564e79220b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e19fdc44c2e71cb5a150b270f0602aecabcd2432e6f9eef6f24742ff4d498b20
MD5 c0fa2b6504c3c3b0b89043fbba2f5f6b
BLAKE2b-256 f4928eb3fa7ae994ebe6bc3628ab867b5b000f77e3480f180e68560830ce4218

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d29487188c9f4aa9dd6decd403f76b4cb23e886c701dcd4cac508c257dbeac0b
MD5 c0de73645c2c0363758f4738c6c9f1f2
BLAKE2b-256 a12e34a171f0789ebc029531ba4c7a54109eedd3f63ebd024ed1771309b0be3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.10.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.10.0-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 66567891906906e8733f1ef19cd133f46f34349cb415c858ee64db807d82413c
MD5 6c5f734dc07fcb819d8a091d03a5f315
BLAKE2b-256 582a5d86ec58d8ef6e295807c99196f4ef795aa89d04abde4837bcbfb4b0785f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a094ce9636652f5aff8d62c004383f13cdb4312d2d854b6096bb6e15e3c0a269
MD5 739bbb690b437744aa393bc563bb4f66
BLAKE2b-256 de7aea908e0a1daadbded49d74823b62a16bf0e2b1991f17be7c57fe269db44d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc7812a9ac54442fed4cd370e61d9fc294fa05577d14c13087c310eb8cafa1c0
MD5 3744712cd52fe169204ec3070c936bea
BLAKE2b-256 e1483724e868913669b5a715ad6bc371986d52a99e5d9747e652da29559b1b65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33adc935f6e0a195e1c1aa1e0c47047d6a29835d5643d07dac9c98996a619e05
MD5 c670c5042668085cbcc0fbcb1917d0b3
BLAKE2b-256 1aa0f55e196e18c238ec6ba88f377ca24da3af2754ad47bc284213420d101ea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3056dbbac60d97529560d3baecd9450c03683f4d9e72e5fb4a0c5aa50f01f3cc
MD5 31c13c3b9ce16c3dcf12671c6b38af75
BLAKE2b-256 7a935b9d3104dfa1671c6d476c161ce728176787090a4137457801d40132e6f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-abi3-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3867848e8dcca701be50464ead7e06a43a8c064ac48fb6d26faee79336e86f95
MD5 972e89f522bf81d945721a4029ee73d7
BLAKE2b-256 8c146fcaf8f95b21e167faa9095850cafeb0cbc24c8eda7e91ec288dfb1a2906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp314-abi3-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 84481f8768a9bcbd0bd490fa1b9d737bd50ef6e4c1651115b2df133c90ca229e
MD5 95e30746d1773bdc7e54f0ed6689c3c5
BLAKE2b-256 2549c181448d33d533003aaf7e688448355a2ffc0de132fbaa650ec6be2667b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.10.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.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5b4460b6c610d89a1e3f52d2f48b811216b02cd18aee5c853e2cf2e8551b1ecd
MD5 e7d4903fe5f154111faa11ab3320d4cd
BLAKE2b-256 aae36d17f19fd3c7c5d84c14d29906bba2897e739eaedff5b83e3a7cea6961d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1a781fca5ad09b6ee964e2971819f82f21218636b3a5bb62fb6c89816f2b88a
MD5 d2c0d74dd383350d6f1dc71e60427dc2
BLAKE2b-256 a3c00c6e903a55cf1672921bd519823c2ea2f9ee421c5fa4b8371d2ef0b1c6c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 425a76bb45ee713dbbee5b524f179f6797fd768f26d1bcf6049cc7181d479ec5
MD5 1bc1da05f69ab41419c0e1f5051d767b
BLAKE2b-256 3cbb361bdd9b030b974e2eee6d886ae529d3fced1378fd75b2b087ad87aa926c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3e725ffe276b5ab86734b2a5f7025f3e1cb3b1d26063a39adc7490834846449
MD5 fdb80d860f18c93995d31909dc21f61c
BLAKE2b-256 2d0b4e5271bdd40041f1b7d81cd3879003d84ece955e502f18567d4c26926e58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4851b2b5c80916c0b57b9928b7fd9d1565f68c5e9c75a6304876cbd103812eed
MD5 b650777eebe2a15028bb81016c0460bb
BLAKE2b-256 4507310138761c00d1fe19e6d16b81a02ec32627343a171eaca43c4f8b74054e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e2eb3faee72fc74352e481fa174b4f0c7c2ed8516aed5bf73f9dfb7a57c3212f
MD5 f4382f3dcde5e5e62981d59ade2fd821
BLAKE2b-256 b06afb00002df0479806408becc7ce658145269a87aa0c5355bf11371288e81d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ebfc8e36608c01271fdeec6c08e1c87148ac9c275766876e9ac1b2c91879a0db
MD5 49d1b02e703268857ff0c54f4a18e662
BLAKE2b-256 da8b31c62f96479bb4168fed80541d8bc037bdf832e1751aef50ab62f65121ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.10.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.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e4845031acf29026a597a207c6a07b471577e8db3b30bac172ab4ac6b4ee4be7
MD5 0f281a9020b43f450193be292465cd14
BLAKE2b-256 4dfb21b6c283a216864f185fe124745bad1b72270aa0ec0912e8bb6691c16326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ab09282067a6e95cf0b997df020c38bb0474ed2af99edaa472ab90ef1f18929
MD5 68c005ffa0eb40794e07682089340db8
BLAKE2b-256 b0b1d318daa40e36b1beea2faec63bc4db8d246e0945279af4b3583274edb426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2333431f739205de480e547fab5dcc512668ea4af8f3f02f0d620730413d3772
MD5 3e63ec777de28418caec75807ccb1c74
BLAKE2b-256 7c94f2447204b7f63e25ec43d9641347e0736fa540b495b61315c9dceca89f03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 feccd53d5620c908fbb79399b2daee9103dee27d744bc80946daca22500be90f
MD5 c6661e648664c61feae75886e8882e0d
BLAKE2b-256 46b0fc1e0e3f0a6a652f71387c4f9061457202369e98074def130f15173a7a6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81c938b33db9f32b7f419f06dbb97eca3e2629c57c0b18a7b719d81563c48d3f
MD5 74ffeed431fc48951ea8a6c4768ef4f1
BLAKE2b-256 a3b60cceaa5a1084730154e8e948b181d2eee2f7f2f3a110b919263ea29e4a0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 19c14b76a240f3cd067abc77b62843268d56dce45b7787ea70fd8cceb11cc5dc
MD5 02e664570ed8b9c184c3a764d225ac07
BLAKE2b-256 bc86313554efb00675f6e9b75bf012368e7c114174680f1c13035eba6e4a75de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ccfa2288bbc206bfe7197f8614ee20de902e511ff968da86bebf814280124156
MD5 d24a68dc6bbfc2e1d37b0b5bf347666c
BLAKE2b-256 8a94a30157ea052c9f8c8c5fee97dceba09f374dd564ed91fa8b8d9c48cfb622

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.10.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.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4800e1207a1a9a9668bdccdb0296c52cdd07d3c1443c12f64a7fc13ea414bbfb
MD5 ecf145d616673f8a0f7de5158fe70ef2
BLAKE2b-256 2d742cd6952f1cf4be1d9e1e0aa2cfc659a69221e4aa190fc1159a7ede6988a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d06d6052604c9c7a55fc4210abb5e262cb289c6c083e7b8e79e03699f1af3a2
MD5 6dce779683e56c51af90fdfb13dd3800
BLAKE2b-256 d595dd54a9775e9470dcd07c69423b28490a2be662d2554a844125efb37ae336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3112dccc0948ae04c3b83efd56eeadad8d29bca68df6bd1275f2925ae7fee24
MD5 8a676e8cfc9b2e4e343ae2e4c09d75a3
BLAKE2b-256 562789929e566006843f69613818e89ecff7acc2991690662e8d4773a269e400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9428d0eef71b7419dfa4aea091039a442a5830af8aa8cf3a0f5ae7c698bb3fa9
MD5 bcbde60563dced095d4f9aaf5a1b1d8f
BLAKE2b-256 d38c1da925574d98ef25dbaf9af4bba94059452298d3856447711da1f8530eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99000cc686792aa4f8d11ef888d35814c6451562e846bd338ebcf2e339028500
MD5 bb331a8201c296468ccebaa8af10e5b0
BLAKE2b-256 1d89a58d1197f14ecc7f2fa868a7a655d90e8293f4663b76b9c804db465698b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2131bb45953de837a52c061b7a8b88a4f360774bf2ad4edd51ea5bbfe66672a7
MD5 32f8fc2dc6fb4728e9eebbe71cd41b81
BLAKE2b-256 b20c2829f9fea18e0c41339d29d5edebbb219f4aa044af6b79146c57de4fdfe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4a82c1299bd66df6e106ed3e90749b7bdede075f5773ac88ef6a5b240e57ce21
MD5 6498f71a6289b58a9446b865d050c97c
BLAKE2b-256 0a7690d0379b6ba04ea7273d3e7773a03c19a2b4ebd1c4dd3dc88f049d95f0f9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.10.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.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f007a15fd80c4f55de535977cf19ad08111f0063356e8eb5c78ae878334f4955
MD5 06d2f15c607b5aab81cca1629c34fa99
BLAKE2b-256 cfaa62b56df62517b8ac789710a5e7d1ef79981ba693103d19d02faf48f22cac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1856a1da03d0121f99ab9a228c1697acd965341addd44ce2aceca36f6598e964
MD5 39a0fc94d604aebb4cd155eb7befb7bb
BLAKE2b-256 508912d687fc08fc6a2d41de1cd80ab6d1b53616c665921e0e1b595e5d2f4806

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7f5651953a18cb4c9c2266e5a11d0ac107ae969b8a53cad90ead707cf0a84ba
MD5 e2b595d063b67d792175e392779304fc
BLAKE2b-256 dc7b6aaf0c05c444cdc49b850bc5404eede6e206fa29edf05a129bc88eed7b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 395a7a45bec7d457d9d5d7fe6e130aa144647e977a30bc88a2558197e9440271
MD5 d5a977786542403c26e60c5ba837ba49
BLAKE2b-256 1bc61d966cc4e1b1eecae49d53ce048f02dbe94427cdb12a5ee17d544bcac3f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01570abfc8c1891f34514e12ebee0606b580bc57e39c8fe3f023842fbe8ca5e0
MD5 2a4a4b8382945c5bffe75ed5c26ae104
BLAKE2b-256 1ec919d71511b2f2de8cb8df37791716a3297ab860673b2dd77a25a8d384886e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ce246d90519d9672d3fd6ca008139865f0b9243806bb4b11c2d09f9955d00394
MD5 dfc23eb01a90fea981efdf7506a54050
BLAKE2b-256 9ed6d28b754b67427f205193adedcbc3f012d7e8138b37de0b9be2805ff2040b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.10.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a2e4f6f3353ddf6c99fd761de7329079ce17d7c37635cb0c4c9f4f5d13c2657d
MD5 9b0283ea34469d61cfb594b3e94a8a1a
BLAKE2b-256 ddcd70d186b1495af4c3305c0c2d9c6a7159c1323f81234996ae590e0700f3db

See more details on using hashes here.

Provenance

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