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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pikepdf-1.19.0-cp38-cp38-manylinux2010_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pikepdf-1.19.0-cp38-cp38-manylinux2010_i686.whl (9.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pikepdf-1.19.0-cp38-cp38-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

pikepdf-1.19.0-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86

pikepdf-1.19.0-cp37-cp37m-manylinux2010_x86_64.whl (10.3 MB view details)

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

pikepdf-1.19.0-cp37-cp37m-manylinux2010_i686.whl (10.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.19.0-cp37-cp37m-macosx_10_9_x86_64.whl (994.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

pikepdf-1.19.0-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86

pikepdf-1.19.0-cp36-cp36m-manylinux2010_x86_64.whl (10.3 MB view details)

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

pikepdf-1.19.0-cp36-cp36m-manylinux2010_i686.whl (10.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.19.0-cp36-cp36m-macosx_10_9_x86_64.whl (994.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

pikepdf-1.19.0-cp35-cp35m-win32.whl (1.3 MB view details)

Uploaded CPython 3.5m Windows x86

pikepdf-1.19.0-cp35-cp35m-manylinux2010_x86_64.whl (10.3 MB view details)

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

pikepdf-1.19.0-cp35-cp35m-manylinux2010_i686.whl (10.1 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.19.0-cp35-cp35m-macosx_10_9_x86_64.whl (997.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.19.0.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0.tar.gz
Algorithm Hash digest
SHA256 7eeff4fee3080cbe938480ca35a5e1f813e7ff221277124c6f9d8cc2d6e44b62
MD5 2074afe84ac39c21a10c292a601268fb
BLAKE2b-256 1f094b374a0d0bf1750e18a005c77be62cf5148a7b87535ffb2c20670c5fcc5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 329106529c643ffd9596f688ff2a50ef581c55e561ada61d5c6c7295cbc14f68
MD5 8da76c4023d8d141069f92f14aaa5906
BLAKE2b-256 37d5e79ce152e78f8475e68c61e87f6d75063f91b80f156a97e806dd5faae212

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d20d3f5a46658076a8898e2049df20a4d777e6d45c8d1dba0221e135b78e513d
MD5 a60f5c123bcdaf2483d01ddd554f2f1d
BLAKE2b-256 42b0cbd6a59a9cc18eab38a56867cb3879e957a1c739f445d89fd869e9d22166

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1084a6ae6dca2414a50625b0459771c53188b09d3bd26c7703330df70fdd9c39
MD5 ce0a1cca2ffc73072b1ba930df56d6c8
BLAKE2b-256 bb0930eaa46bdd49609b73c35e3eb8d900b965d02394e544ad96734174b2ec3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6ded3b7676f8131ec33cea74abbebf3e85fbe72587f5492ab63ff0f5044d405b
MD5 e1f486f3df7db7e26f36259500a08d3d
BLAKE2b-256 a3c07e730c28784327c5dd439a0dd2497ca4dc766084fadd7e7c46c567e9d03a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe1381928e598f916500d0264825a73d6ec3aec06a844899c9071d4af1096a04
MD5 9f910623c5c064a7853bb5c63754498a
BLAKE2b-256 35b15de668397dce5adecc4a63d0e2f45dfd35160955ede9091fa3439d7385a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0b60cf5b087bade2e2f5dbf4bb2cb33063f5e0966f595d75d2a9e339ba2a6c07
MD5 2d45ca039622bf3df8336e6fe052374d
BLAKE2b-256 000a8c073576ca7fd5ade49ce582ca8af1b2a07380caf9ff7fdec07b2642fa0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9e2bb53d87bc67dc7563cf561f64be8c6151645b1cf1e9a6e9ef36bbba1363bf
MD5 2b586ae4ef38376d9e71890c7af55b9a
BLAKE2b-256 0595380cb48a394d3cd3a08ace6cc68eecfccb901185be9b11e0da66759a8f83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 733a07601ac8ce3c8575719076cec1097ba49673332ac4f5f8a1913d68d64093
MD5 cc55d7b1c20f9c1e6aa85a9625336afc
BLAKE2b-256 af67730cf3a92b5c699d5dda4e287279d488e04b0771d6d30d260210bc869488

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c49057f1291d48a57e4e7a3542b82b6843ddca1ec042885b8b5d1b6936476691
MD5 3fce2d05e1cd69f2c37f69563aef62e5
BLAKE2b-256 2c1a9ca2fe2076f72a726873377f040260b62be264d3383e2164b96848c3b35f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 994.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 311b29e282fecca4a31ec4595bdc653f532cb19caeee4d95ad70f36ab2521346
MD5 9a5a8ac6228e7add86244761ed9320fc
BLAKE2b-256 b1b3cd81bf6d5d8f236f5cdb89878522102f6524482120bd48f910f2ec508fac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 937eb7f3d5256352b5a10de271f473d483eb14b858ba88b10e9047be306f84e5
MD5 c3442bffe7aa7c46f96b8d406e883037
BLAKE2b-256 f626c32b5afb5e13af5395e7770c3c47e016b3b85b9d1f5208074c325c106643

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0bcda099dbc6f648adc6690624124ba238e388d112337509028709e930851cd7
MD5 82e123f996e359c5895594e5b20db57d
BLAKE2b-256 7cff1f52a72827c18776b8947fbe47f8d71fec43b82aa28f7d5483a028fe556e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a3956bceb747f768238d4e1c691e56ff1689f7e84d72aaa2566ff17872d38688
MD5 72f637f0dbc6f8829552e35e3ca81db7
BLAKE2b-256 a9c588700c85e8f424b40f9c8b63f10ee82434b3fb309e217672906f4e7bac9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 28d3dc78adaf29b890c7400ca3d845d503a34f2ddf5667777f237585544e039f
MD5 240f8a974214fcbfff2c56846d6df837
BLAKE2b-256 fd36034893ae57dfa15812c902f2e82767a1e1f30b210c98fbad12bcb2b6d429

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 994.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39b8558cc42b60db968eef3ba8b97c4d00f3cf5223f3d25add6100ba1ad636c4
MD5 0b20c695a9a1638e86a6d93fcc4e82c5
BLAKE2b-256 88c94b67f42642ec6828b455ea15a2423fc50563ac7ffcb4338f0fe2591cdee7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 7af5a96be4076bb6559f89672f31673eb95c2c100be3f8a7f76eb779af0b6ec4
MD5 84662a84880109c7f45dfee42df5135c
BLAKE2b-256 abf6436c1b80bc39de0b0a718ddf4299ca42fd5212d1b767dd9ddbc23dd014ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 775d5e334da0d0810ae9e708f4e5e3235fc2d50496b2279118271cc3263d99b2
MD5 2112fb68cfddaafa2b61a337f30d94d1
BLAKE2b-256 a56ba27ff8901dd1599eb1cebf930a0cbded9a100fadb3f5e409ba2432089443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 096e0da563e3b466f4b09fa20998c8a15cfb1c71040f03e06e7687ac6a64f33a
MD5 1d4c4178a83729c2b17670962a7c60c5
BLAKE2b-256 a69bd210f74ce9bfebc60aaf804c14704ab65d1fc203ad43cd9b00f3e837ad48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fda17d5a719b9522c90398b85468abb1474e72b9327b53cf254ba804e9d67488
MD5 e40144e71a535c46996cefaeb5d40446
BLAKE2b-256 e47dc6db024c85b285e37422ffec4318437275fe36f9e41d59472233c143bdc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 997.1 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.19.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a031329271aed8aba0fc8c90c5ee44bbcb8e2d191fd52ee07315a5da796e015e
MD5 9f9f6d3962f87ba00b52130ff0ae07ee
BLAKE2b-256 b79bea133b003219b46379aaf8783f2fa02868bb0fca1a63ca25191d8eb426b1

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