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

Uploaded CPython 3.14tWindows x86-64

pikepdf-10.12.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.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pikepdf-10.12.0-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.12.0-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.12.0-cp314-cp314t-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

pikepdf-10.12.0-cp314-cp314t-macosx_14_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

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

Uploaded CPython 3.14+Windows x86-64

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

Uploaded CPython 3.14+musllinux: musl 1.2+ ARM64

pikepdf-10.12.0-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.12.0-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.12.0-cp314-abi3-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14+macOS 15.0+ x86-64

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

Uploaded CPython 3.14+macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pikepdf-10.12.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.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pikepdf-10.12.0-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.12.0-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.12.0-cp313-cp313-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pikepdf-10.12.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.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pikepdf-10.12.0-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.12.0-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.12.0-cp312-cp312-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pikepdf-10.12.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.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pikepdf-10.12.0-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.12.0-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.12.0-cp311-cp311-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pikepdf-10.12.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.12.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pikepdf-10.12.0-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.12.0-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.12.0-cp310-cp310-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pikepdf-10.12.0-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.12.0.tar.gz.

File metadata

  • Download URL: pikepdf-10.12.0.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.12.0.tar.gz
Algorithm Hash digest
SHA256 cbc790243a333a2c87bb4c1a69e3d7036b4a7f43c7fafc8ec7cee06985b48ae9
MD5 b1d8429688d64c73a7effdca58df4413
BLAKE2b-256 1ed4f4383bb3ac90cb322cb340cd4253bfc19f80819a97d61a49077ab3a0581e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pikepdf-10.12.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2b819d52b63768fd4c33dea64492dca558f6c08048a98617c108b9ca608ed4cb
MD5 5cc446818dcd0b64fca6dcc0cb55a25b
BLAKE2b-256 ac6ba14cc1a0cfcd07b07841e6861d4dfc650f4f2ff54879bd8c2455d81aeac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88c811eb3d77cdba37c56b4ad2ca521d636501fbcbb4040b0d179f6d290fea22
MD5 e35de896907d665e1d4b44a6ce52894b
BLAKE2b-256 b2e4c1af394d36f7e9198fa0eeecddfdc74079b723f4544d82b0d3b71ab87d64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 323e6f6f2411c85af3adab1cd9cdf8e5420ab21786a2ffa780c29d80c2f48e31
MD5 fa96233ab887f1a7099bc67b5ec1f86e
BLAKE2b-256 258f0e64466bf683d68be081c6e9b9fa03f2aef4f36c72e2c698b80e3c5977fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee8df5af9a9f540bc94403e2ced2b35696374a6c064c15e3ec6e0b143d44f420
MD5 472fcf8b62d894545f8ab50902ce0c53
BLAKE2b-256 52bd744278d477cad6caa0568a210f72a8ed482562ca73f01e23361946fb254b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ab1aba5704ea66634c8d7071bd1a25c0c414aae13212707a8936e34ddc9902f
MD5 bb59c70324f1627027689a10107e1eb5
BLAKE2b-256 7fbf491e9c6cdc2ec85b8564b5263d1094a926484ab727fe095a1c7ab2fe4ec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 cdb3ad4d1a3670bcf74fc1c45e80d1b4581873902e5630221585c677d66c3230
MD5 df4fd43821da77f0d0132b58eb6aaea1
BLAKE2b-256 d929fcb71cc848c19766e7b6173da7bc5e795aeb6b5a6d63cb1b13e16c2f8ad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ae136ed20068b53d46c5c85496c2e214c525104a0aba2b909c5b851a5bd32b79
MD5 9e867c892ed8e6b475f537b09f25ee78
BLAKE2b-256 eb255593cf659a925299f67ccd3400feb59ccf11da0657b794f291fc686424b5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pikepdf-10.12.0-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e255b57a58f5e4d7e1e4501d085233a2c074af9771c4f00b2c53d7e4ba6d7611
MD5 454ba40ea8d98f0f5c85efb1f29c13c5
BLAKE2b-256 19a2872ce36f9e7ea503ebc8e27f0a168b9782768ac7cc14aa127dd098e4d266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f30d4f83ec2893ed0e41aac2ba6ae4ff4df4e473ad1c0dd0659b81ee52d0958
MD5 a4f712db5a8a9b512598198372aaf7ce
BLAKE2b-256 e4adea403f4b964066f0d5db25ff69e388cfb80bf5727ffaf7e2d36ec5aefddd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51fbdbe71d30f97510de4be5b7c4169a3f2364cbd6497aaef9f5a44873ed043c
MD5 e814e714e5fc2f9efdcbb6b4472e3774
BLAKE2b-256 dab08c0c0c4aa681167dd2357b9d864455feb8a36dc09212e8822c603f0f05ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84c3dcf8aefcc12d4d0642bbbceaf198acfb4a29a4630bbc134423378f824cd8
MD5 ae13042ee594c47c46ea8174a573a3d2
BLAKE2b-256 40ca1be2aef95a80f1047b67b8ee3480e266125cc1cbf6e09f14cfd222687665

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7797fcc1762640c11caf00407b8fc898ed3b4cc89174109ac261cf17cc0eea1
MD5 79dde5c7dd435fe9a39238a9f95cf601
BLAKE2b-256 54f31a66c7d2ac251d0ab53c5ff3b1bd79809fd50ed01b50e28f8c0a7740e454

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-abi3-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9a200b2f2fc288e1f225dc601da09b3f83314bc30dada06fdd591169d518ecc3
MD5 dff85442f5c1d3caf3fb19c7b1318a92
BLAKE2b-256 4a6ccd910cb5292ad1c2d2d0e5edd4f66dfb29004e724a0ad6494b00e1effcb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp314-abi3-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 52ae9d8fc4650515ab36c7f7a5ea40fdee745bf1f478ea4d761f830905295969
MD5 5783d0db1116d9a4cf8235285255cb4a
BLAKE2b-256 099a8d0477481ab9d6a6e931a1d8c92d0fbb83cbec7a42c267509534c64a8cd0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4670c773565b76df67d4351b1c9b66bbaea0cb95b75206401237367c8a130a7d
MD5 365f7bf1fb237e4becb5fc27aad1f1e2
BLAKE2b-256 05b0366ea89cf7239c4d0792800a5e31c67d76d3969fc4b4a5589ced2694249e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a513e85144d89d208ba04fe8391a72a848d33038af163d772ddfa83f4893808
MD5 1e5f98a0822c333444651d6cc3abeb7a
BLAKE2b-256 222e6911730584d7a57ec19b199e1fadb840ffbbe6abbf40e75c625b007db11a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac5a2921472275548f0dd8ded55ffce9708fcc905649d786b2633b40bb50b107
MD5 08ef33803749345de7ab0cdffe0811fb
BLAKE2b-256 85b802a36c0982a3767d7b84fc8675f9c7b3b0a4d5eeb1c5307b0d111ed637db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0f46bf217c8a2bb010a87fec50909a75272aba9a8fe897021158c0803743360
MD5 90be79dca99ffa569d899ce4563fadcf
BLAKE2b-256 a849f9227d22b60f4d756e962a38f4654c294ae3cb88b6696574835194eadb7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3913c9da15f4e8526b7e4b8f81b60cfb32d57d537c6f4296d2b33b13e07a171f
MD5 d91400b70a8e6c0f5ff37b61c8de70da
BLAKE2b-256 41f47fe39b89f470edc679f2d5e1dc801834cb30ac6147d42659a82c68d4dd8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2fb5de70d4b0064515e80ab125b8351aae29803f7c9fe00eb28f9d1897e9ac16
MD5 1ce1990c1092f2af5b852186b44eb015
BLAKE2b-256 846f160be2d66defac0a07bab762e974a1ed1620b44041bc0b83e9fdb379e6c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 73eb00406edb59b62a97081ba6b3746f5c8c79435b01523a5ad80b570045d7ef
MD5 f310c332d0ad3e7b0da1f8bf1e1ddf41
BLAKE2b-256 500ad42e4980f8c98cc2e874bcfa1528ce4c576d34e3b88d6795e796be0ef489

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 837226cb3d8a713a51b767cd2a5ecf48d9b8ac90bffdf94b2c61a2764fd7c385
MD5 3549d6e050d68bbf072cc4aca2ec5afc
BLAKE2b-256 6d2695e15a018c13966ed15fd48d734e7507feb6412e7e822d346f892a2e8b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04569a0c2551e99e274d3277fd881580568359b2c68e71848fb3071358992546
MD5 dbaf7687d3f97c28f1e175ac8b514e1d
BLAKE2b-256 a00f2223f5651fdfe11481db48eaf92a3401f4dc8810c8748084eaa41ccbac30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b14940ff968e920cd514779056dcabaa6492d3767f3453921edd61dda7ec718
MD5 ce42636c7d9000274eaf16a23da0a68c
BLAKE2b-256 d48fc1b95793041d1531ebe5227cf10b03b172ef2cb727a58eebf3e4858ab455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe345dbb503a9483801f81705a2651bf5e363d10946eca9e4004e3cb9c547a47
MD5 cc217c347f1366bb3694b4059e8b544e
BLAKE2b-256 01db49a8c82a06fd2e2fba5c89a6dc9328e3fa6ba62544db781c35844d4f0bcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43249a3e42cfe8464e43f759bc851401461c611e3b83d0d0868f4d03d678a0eb
MD5 292823089a7cff7eb06dfe7c214c7e9f
BLAKE2b-256 015632a3f6b8e332df9fefc99a574815115f8e3033f9f07c5e77bc8893c66cef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 bad0f9b500c1455546323cde537d5c6044983db3b624ed24f87ed681b6b2ac19
MD5 48856bf582527f252347d860e422589a
BLAKE2b-256 394dcb2cbf080955fe230d2729d8630a3c73513711cc9a42ce2ec9c5903f7ad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fedd0c5107f6149ca47b9a6c242d2ecd7484584118f04217f91b796996b8d019
MD5 d0d7d991913715e545660e863f151f8a
BLAKE2b-256 a0f902f185a75e68b8f1c50d2d676a00edb11155d5b2a6cfbed2ba96cf42c569

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e2e286ec9919e5362cfa072c54aa84633a701eb3610bcd973cc20b4ee9a795a9
MD5 b71ec712485e0ae41a3156591614ec74
BLAKE2b-256 fcde4e282509b15a4804328a35ba7ab8f60ee30479f867b36ae576ef655d6537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3c1b7d55e02d65e9ee1e2143de34fadba2149273b2bbd8ff8c2562fb6b5ca0f
MD5 1bb1b03f05a1a56ed40f15e6603d6c36
BLAKE2b-256 28808b2a52843d48378253846728442f40454f9a93bbd1aeb8d363e355df075b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7791c500fad66c9984c91a6904be72fa0653a50a95a76713015d721a1fc8ca03
MD5 b968999ca43372743e7a62cf1f3dc716
BLAKE2b-256 034cfa6bb5711a044a901ad1b2ccdfe7ab7faa37dc29c53535def655cb13c0de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cdf56e642a8977ac88eb9c31b3d96635667b49a30ff48e58e43149e6d45b67e
MD5 6211a86e968c0e0c3ae289a3153fe082
BLAKE2b-256 1d2c125e36c87bcf3a6e1abcb135ff12b2fb1f1fa66c5d8e1909941730a130cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d3101c3611b280126c58fcd508d88e4c4cd7aaa4f564679f70f64bd433a95a1
MD5 751ca7000b55e6fa972780e2247ec1cc
BLAKE2b-256 3faa12389070fdb11159e34b0cdb49147ca972f9debc0425455c7211909ce48d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 483f4dcc58843244f3f69f85ac4787e89ad0fd99ba47318f1e5d5051ce3d9541
MD5 2bbcf9a763e4b59615d65a91d56d0ba2
BLAKE2b-256 d05797cc066d542f31715295984b6ff856d05f524fa47817aced2f2b480593f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5249e879a75b63cab808fb273847dbaca53f007a47c4bb7a74d76581c624d002
MD5 5ccba288ea436d8618bc17576e95c081
BLAKE2b-256 5ee1ce38893074935d7867ffaa4eb21ae49c328818f71f4dd7f860209bce079a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pikepdf-10.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pikepdf-10.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 50bac64d8f21778d44b845551d87fe30f9d57e67558188c897c93535ffa30a67
MD5 e6618512cc2487e5711f7dbfd74f02db
BLAKE2b-256 b81470ccc14e722c414057ed3571cc33930f02237c972c1c3b0b0de2631f61cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db4598478a5e435c2de86b4f0808e6d8348cc94157d82edeffa12c9df96b2165
MD5 6f2a6cbe3057312cab8467d57c5be5de
BLAKE2b-256 bfecd69f93379c54d8c8b51cd5b15d6787cac8bf7a8c6aadad937fd73b71ab89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96313204a53b108d03be947ca1a7976eed17176d6db4a41bddcf8a179d3d07c3
MD5 b8cb2bbc884aef41651e3b28723eae00
BLAKE2b-256 c798a876de616c272841863fd871fdbee693425481ec7b81e96c08c95b26abbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97ced498d82d83ac66a17b56d83a0add885e63894a49d571d6147a7d13e35793
MD5 896a2a58be96fd279099a6120e7ecb4f
BLAKE2b-256 aaee9133a99604f02fe6bd25cea6001d0b7316edd5b2d3b9eb286de5c97419dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01e4a545e18728976ca22c11160bdb70908a828be71f92cc7bf928e7e9ea9d28
MD5 5f08718f4d891c25e3e723754cd0a926
BLAKE2b-256 98b3319402298f5f5b63cc264564a3f47225c43c1ae7a2461b3e5fe1d4a9e0e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b1c03f0bd159e2ab72810d449305b5799f6b2722f6908aba7d825577987dd7b1
MD5 c31f933dd3992b42aea0f2b0ed7bb28b
BLAKE2b-256 e0bdbbccc0cff4fdf0a66ac34ca7910999934987bdb456d817bf7c97f8afd7ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pikepdf-10.12.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8896a1aa892dff51c8a938d0654c38d2265f3269555887ac78b0e4c96f67f394
MD5 5a8a645de315ff87d4feb6bb6d245fba
BLAKE2b-256 933f6d32b91a66b55004ad0c7f3583b2ddd9cb071cebf8b8df60833e2260af58

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

Supported by

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