Skip to main content

Read and write PDFs with Python, powered by qpdf

Project description

pikepdf

pikepdf is a Python library for reading and writing PDF files.

Build Status PyPI PyPI - Python Version Language grade: Python Language grade: C/C++

pikepdf is based on QPDF, a powerful PDF manipulation and repair library.

Python + QPDF = "py" + "qpdf" = "pyqpdf", which looks like a dyslexia test. Say it out loud, and it sounds like "pikepdf".

# Elegant, Pythonic API
with pikepdf.open('input.pdf') as pdf:
    num_pages = len(pdf.pages)
    del pdf.pages[-1]
    pdf.save('output.pdf')

To install:

pip install pikepdf

For users who want to build from source, see installation.

pikepdf is documented and actively maintained. Commercial support is available.

Features

This library is similar to PyPDF2 and pdfrw - it provides low level access to PDF features and allows editing and content transformation of existing PDFs. Some knowledge of the PDF specification may be helpful. It does not have the capability to render a PDF to image.

Feature pikepdf PyPDF2 pdfrw
Editing, manipulation and transformation of existing PDFs
Based on an existing, mature PDF library QPDF
Implementation C++ and Python Python Python
PDF versions supported 1.1 to 1.7 1.3? 1.7
Python versions supported 3.5-3.8 2.6-3.6 2.6-3.6
Save and load password protected (encrypted) PDFs ✔ (except public key) ✘ (Only obsolete RC4) ✘ (not at all)
Save and load PDF compressed object streams (PDF 1.5)
Creates linearized ("fast web view") PDFs
Actively maintained pikepdf commit activity PyPDF2 commit activity pdfrw commit activity
Test suite coverage ~89% very low unknown
Creates PDFs that pass PDF validation tests ?
Modifies PDF/A without breaking PDF/A compliance ?
Automatically repairs PDFs with internal errors
PDF XMP metadata editing read-only
Documentation
Integrates with Jupyter and IPython notebooks for rapid development

In Production

  • OCRmyPDF uses pikepdf to graft OCR text layers onto existing PDFs, to examine the contents of input PDFs, and to optimize PDFs.

  • pdfarranger is a small Python application that provides a graphical user interface to rotate, crop and rearrange PDFs.

License

pikepdf is provided under the Mozilla Public License 2.0 license (MPL) 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.

Informally, MPL 2.0 is a not a "viral" license. It may be combined with other work, including commercial software. However, you must disclose your modifications to pikepdf in source code form. In other works, fork this repository on GitHub or elsewhere and commit your contributions there, and you've satisfied your obligations. MPL 2.0 is compatible with the GPL and LGPL - see the guidelines for notes on use in GPL.

The debian/copyright file describes licensing terms for the test suite and the provenance of test resources.

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

Uploaded Source

Built Distributions

pikepdf-1.12.0-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

pikepdf-1.12.0-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86

pikepdf-1.12.0-cp38-cp38-manylinux2010_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pikepdf-1.12.0-cp38-cp38-manylinux2010_i686.whl (9.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pikepdf-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl (988.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pikepdf-1.12.0-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

pikepdf-1.12.0-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

pikepdf-1.12.0-cp37-cp37m-manylinux2010_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

pikepdf-1.12.0-cp37-cp37m-manylinux2010_i686.whl (10.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.12.0-cp37-cp37m-macosx_10_9_x86_64.whl (972.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pikepdf-1.12.0-cp36-cp36m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

pikepdf-1.12.0-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

pikepdf-1.12.0-cp36-cp36m-manylinux2010_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pikepdf-1.12.0-cp36-cp36m-manylinux2010_i686.whl (10.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.12.0-cp36-cp36m-macosx_10_9_x86_64.whl (971.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

pikepdf-1.12.0-cp35-cp35m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.5m Windows x86-64

pikepdf-1.12.0-cp35-cp35m-win32.whl (1.2 MB view details)

Uploaded CPython 3.5m Windows x86

pikepdf-1.12.0-cp35-cp35m-manylinux2010_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

pikepdf-1.12.0-cp35-cp35m-manylinux2010_i686.whl (10.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.12.0-cp35-cp35m-macosx_10_9_x86_64.whl (975.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.12.0.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0.tar.gz
Algorithm Hash digest
SHA256 411addebc1d9456d63dd6178c3b801ae07dbca12518ffe30839bf6df165412fe
MD5 803c4664cc0e2bfea7f7c7fac3c6b68a
BLAKE2b-256 f188442addf657a719f9bad100c26dfce2682f6b4fccb4c1f07099c1083e39aa

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0c7cfb75fab0d6f6143420698c9ec1f6f27cf346f4ed497d207f14f61ef16bf5
MD5 526850ef77a80c6133ca9ca810d3ff6f
BLAKE2b-256 88369dad558078679a9dc8d824e7f5f8fc895abf5f0b6fdad640d77df0209aa2

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e0d775d48b1acc507f8d459b0fe88d64b70aed960b9569276669526e9aab37d3
MD5 46a0f28654fa1cf87abc702649c0ca40
BLAKE2b-256 dd39972afba45d79e02ff9f4cd15608a808ad840d8df8c59424c78a715564bb1

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 92273e0ea11fdb10c175905e7a355a2a18e5c352f378419ab94fa19bb8fd1b8d
MD5 18ccc937df266bb371b91377830e90ca
BLAKE2b-256 c7e688ae132b41d62b68a5ad03d4ac0e927fde26f7764bc9eff3d20dc32f47ea

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1174e1e942cd1211cbd1704af754ac3e8cb9ff3bcb5d70845b673f13f9f6bbb8
MD5 4aca79b3e8326ac23155f4d2fc48cd27
BLAKE2b-256 0d3f419763b6b1795be43241676edaea4d0b1e3048e7ff5da410643b0cc3b8c0

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 988.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 838cbb435d98cc611dfae60511b8cd9949e278386aefef154e9f824f58c9a071
MD5 5d5a337514448aa57a890f709179b416
BLAKE2b-256 5d97f42dd9a1de4c1ec3c09ca75766b2db1278806261689a6afab249c13722d5

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e8a2f49f9a6ff23388b65badf7e2cdfa25dee4628e07cec728d4c08c82748c1e
MD5 8e57d7cde7ad37764ccefe50bb5f4eb7
BLAKE2b-256 31df8cf222b8fd2777534887c60c8d08f13883fe63f6627a4807e97d338ce3a4

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e9e8eb5d484538c7991bdb96649568cdfe86c0a275d2618e0a4cb1655ae0f611
MD5 f8d59baca94e0444fb9dcb46f2ef499b
BLAKE2b-256 cca2d1325ec8d9f9574ac076efd28fd1868e892e5a9198417c7a72ea80611d37

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8a264ff01738959f9103cdf6ff0d6fdd8a25aa3d2097b227e7583881f4a0923f
MD5 2dc8b9a4030d447e86021a5cad36aa11
BLAKE2b-256 44c2bb82ff269067120c5b82c6dd9be36fbd614b76fc11ee17fd4c1a25272770

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 19c92775483bd3327019d64e397b6dd5c158f83825cea8ffeb357aa4ce27fe12
MD5 7c36e00a330b0a1860a8d489ca33570f
BLAKE2b-256 bef0d2a3536c62132e07fc9f86fca47e6c71d5580513fb432d6323bca04cae29

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 972.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 50ff87bb447aa1cfd3a4b78ad08ba83864fc0229bc0c925d94a73cd5f9e3cc25
MD5 86fc16e6789eb84dc7d5943525e21273
BLAKE2b-256 ac067ff85325e716f86e89c96165aa1c6fb1d63f85390094d8b14fd452dd02e0

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9e910004df50fbb29ed3db7b4a016fc9236ebd2e163a7ce140f5734cd7a878d2
MD5 e29151f7e1d885c6d38320dc05075d07
BLAKE2b-256 27e5d82ba798d316f5a0627d7b983550276497d72c2f802bb870d9d71c5e88d6

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1435e4ba9a8431352afb3ff0faedffd416987232b253d508227f11c2bf04bbe9
MD5 48cf1e1d8535c54332189d39bce2b656
BLAKE2b-256 3e4bdec521c45310df2065c80f5d9644c6afd58e04cab7ae2fa37010022ab0e6

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9a04b9c63dd8a9ec9fa836eff3cf5231385b062ac27a100130804f7b90b6f360
MD5 296c6921e26e44a1c65e3e7d52415071
BLAKE2b-256 53c1e532afa786964d76855703a52a13d2659edb27427120cfb893ee5dd9872f

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 015941f49dd926f2b02bd45ee3a95a71ac92652eb703016ea9598cd98aab20e6
MD5 5067d0451d2147247988a071f83262bf
BLAKE2b-256 6b0231ae0842ea36bfd77f02e066365e2e0a8085e5b53e8eddfaf573e40708c1

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 971.9 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7193b28e4a1c2a18983a84e0989d8215fc5cc5d8c515255ec76cac859c5ccb10
MD5 afd4188122ea809b0efcc00f9f29e864
BLAKE2b-256 07a64e8d6a52a48fd036f93eadb8f8588cdd1defd75676c860b607c3fbc1ba30

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c275440da7e459982a79ae2974aabe53ae5ad77162b3a40357f85af4467fefc6
MD5 720ab8c2dfd26ef5d998e792cb3799ab
BLAKE2b-256 64c88462f4e87ddd0eeda7e7e35c898fc48e5419a0d0bfd9c9b3d47f8e3c9496

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 47e07bbca7cfe26bfc73c6d44095899f88c35c64065c54f379927da452d9dd0a
MD5 e973d711f31836fe9d9bfa0e2e291cf5
BLAKE2b-256 13c7e447df113ec37c4129e0a899f7f966c7e6fe439f988459c3378ff44353db

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4d7c3508a4fbd12a39b8b2f8370a4b87be5cd688cd375d7117bca35503df9622
MD5 d296790424410eb8fb28fcb0d95cdf77
BLAKE2b-256 ec4302c2a881056b55d6d56f65a426effaba581ac5312ccc2073929620895a3c

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f99e7a3eb6ae259ca606458d5396900327d649913e31e7e90edf96d4b908fbb7
MD5 92a7d657caa660ee8e0f808eba909e89
BLAKE2b-256 17f04ffcc2320e3e8d3f1fc4f380b0ff85914c68007d2ea50e9c51c3bce096ed

See more details on using hashes here.

File details

Details for the file pikepdf-1.12.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pikepdf-1.12.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 975.1 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for pikepdf-1.12.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6faeb78108a198452138be02c2fa7417b771301a51ac209c6a1d58744d7b9916
MD5 671c89423a85e39ce25f9c2a711cdd79
BLAKE2b-256 b640c4eac6b18456ec3ee75a3080bb219de805eb35328fe18bd3cd92f349bb20

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page