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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pikepdf-1.13.0-cp38-cp38-manylinux2010_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pikepdf-1.13.0-cp38-cp38-manylinux2010_i686.whl (7.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pikepdf-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl (993.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

pikepdf-1.13.0-cp37-cp37m-manylinux2010_i686.whl (7.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.13.0-cp37-cp37m-macosx_10_9_x86_64.whl (977.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

pikepdf-1.13.0-cp36-cp36m-manylinux2010_i686.whl (7.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.13.0-cp36-cp36m-macosx_10_9_x86_64.whl (976.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

pikepdf-1.13.0-cp35-cp35m-manylinux2010_i686.whl (7.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.13.0-cp35-cp35m-macosx_10_9_x86_64.whl (980.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0.tar.gz
Algorithm Hash digest
SHA256 b35e286edf158b194483944066358d283471800e51fbbf66cd15a8796f96fa3a
MD5 203064ba08b8e694241891abf2b5a491
BLAKE2b-256 3517052f485a334cc0e0585d695acb1593861cb2c9add23177e3eab0c6977b24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8f57f5288e507d1e291c6c569d6e0c29038de11a878755908e8b1549105de748
MD5 0f4d34eb22d2aa4bb0d63e9f1d38ebe4
BLAKE2b-256 71a603ab1a4a6d02d8c05edc46e5b938cd44bb8bc1a77c284deac4910f0f539a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2a77b6630ad4787c734efcd45df259e015ffea4b6f8af77ab3d10df6d766d500
MD5 aa59397186a32186dafb638191653c5a
BLAKE2b-256 ea493c4b6dd898d25ecdd6b5cb43c83064f7f3d609c37b10548c5dc46eadfbca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 10.0 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.13.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2bdb24381e67bb418f7dbb408d8d79d951b260f710c3bc978022573de4c0c77f
MD5 e47d2c8cd057c27609e83173232c5a71
BLAKE2b-256 d57da36a5ca137a3a937118b8a9b78104ad67b72bb3adf4ea2b13509396ea0e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 7.4 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.13.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 73fffc328a55107e5826928c3a921ae0507951ddbf6251500907553b63a98f5e
MD5 19b2727cb005a3baab99d8992a477ec2
BLAKE2b-256 c7155d67a73113947fdd38c0015aef199e3a627e531effd02475542da19b79c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 993.0 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.13.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39459d660611ff21d55b13a7b33c53d4bc3477b3b2433e0bdeb423aaef357c60
MD5 ee228bc1ddbde9f1a3d66ac668bd1763
BLAKE2b-256 e3d26fb89d595bff5ae187457b0407b7bb5634fa8768cac5fda6d3202f4340aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7f19f7935cb403fb8fdfd01ef3845074c27275cbcecac1fdfec54758d5a29d4a
MD5 cb8dc8c9f99109ff14fe92f1f20b4b33
BLAKE2b-256 20d1dc3cddce5b2a46428165c5d161416ef1c4dc8d2384e70e3facab84542649

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2f5479c99a03953d43b52dbb401e447a97f5988f63e706ceb3307e741d59032e
MD5 80e30e1904cb5dfa188c60208e29609e
BLAKE2b-256 24ed49e289adfd07143cde0ac491365c77f4f8ffc6022f5cdc6c87418a4b7ae9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 641f9f420bf6fd421d6dcb5a4b8484e992d349af2fa0dbbd5af78c4b84ee14e8
MD5 17f153617cffc611fd0b20726ccd14ac
BLAKE2b-256 36d2e6967d9fba37a1546a2df8b399507309d1e574664ce3960e064cde338b80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 7.4 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.13.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 44b978cd94739d4276e8fe66599ec5b4d6d20f16afebe13ed50e62034d8dea1b
MD5 bfaff69a590aea5219011492a2288f1e
BLAKE2b-256 8fc9f10fb5bbc4e76a30b41562e59fc856333f6cc498115aed5130b3696a16d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 977.0 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.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cace7333a786eba5027a9da5e524b4b2786a9d2517168c05aed5bc62154253d
MD5 8c60db7b10b46e9c1f7c1382a8362661
BLAKE2b-256 ce528c12d54a318890b76310671a0be949640f3f002edee9502fdd72ddd913fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a0b864937915ec823770dfb1caf1f37611c20f94a82f8c5b977b08881e2a771a
MD5 d4d50c4f8ffd5c9889276c9415c0b0fd
BLAKE2b-256 c0c77288b30e8ccb0a07d2aa83ee9dd33f550fb9e75fd9e40bd6c1fe61069fad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e87252766b85c4a012d95103dd24eb03ec922998f1ef1c7837e06a3c9aef6319
MD5 d94d5b6666f42f42758cce7cad2f3bb1
BLAKE2b-256 25be68466969eb5c945829b76e8e38fe47100daf6ffc91ea15ced772bf0782ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dabe42b4c9ffad5c675a20e9319d2f9ff6ca1e0f8f3174b603865c041b7c2c51
MD5 19b3ff73b93cf8d4e6d7ea418ccfc006
BLAKE2b-256 fb4d3a1b3590b43b39f458d752daf44b156c61e38fac3f2209703d170395e5ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 7.4 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.13.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9d2efa2088baa1daa4cabada4bddda87c05b1bd88e85c59fb2d6ca7e07891595
MD5 da5d73296299956768a975e791f81395
BLAKE2b-256 e94cd9589ea76721c598f92bb83c025e19f35a9f545e14cc328b6a44761767ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 976.8 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.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 185a0731fc066eb0da8770941362f184eefa4a199b3427b41c0aaf9e34b94844
MD5 60a0823bdc59cc1ba926f8f60ddbc1a6
BLAKE2b-256 8cf016b93439addb3081cdef79e66fa19ff445e4dc758024cb50cb2a3d3328d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 764f4c46711a4a6b923201d5aad46a102cb8cd130bb6d1cad40c9e0814df5251
MD5 ddffc71f11f61d6f3376ef18ebea7ccd
BLAKE2b-256 d757a7a30d195c9647876f6c248b8a1d997e1797a5cb1fab6913d3b596cd8f54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c7d29a9f4194b7ed6196916cf5cb6f3ff7e140ece7184c41b651830d44e2fbc2
MD5 74fc127013f11028783b79ea785ddd5f
BLAKE2b-256 f2ff1437cbcf50037d1b31d6d5eac10c982a25105c942c752d486125985e3ad0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.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.13.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d0adcb7b87cd6db1c0e4d6cc4bd75f6e2ac0d5b9572285246f8c7c385faee47
MD5 c33cf7b40a10fb3cc8b8e362efa3cdf3
BLAKE2b-256 1075547f5c8fe4f20a3351036fcd6fd8eaf42568649993bff02b16a73c80ca7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 7.4 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.13.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 204133c6b34e47a28ecb8aa0fa4155496eadd450564c1975b7c477d8f206bb4b
MD5 f877f59c73a48895390a89e3cdbd9160
BLAKE2b-256 faea556d0cec7939733564fee23f1c3b2b404e225db3f4dc88557f7820d8634f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 980.2 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.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32641d14300d56244578364729286a51f50426b96f84b4a5da94b966cdaad72a
MD5 23af04e325b297e93ecb58388b11ef3b
BLAKE2b-256 1ff629e87df6c712c9f65a47c66867a136655ea76c613427c4e05b9cce97adc3

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