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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pikepdf-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl (994.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.14.0-cp37-cp37m-macosx_10_9_x86_64.whl (977.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.14.0-cp36-cp36m-macosx_10_9_x86_64.whl (977.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.14.0-cp35-cp35m-macosx_10_9_x86_64.whl (981.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0.tar.gz
Algorithm Hash digest
SHA256 5b371c71b0da42d87371ed39973f07c7eb67d939ca5031f0c1637cfb3a2d79f5
MD5 a6af81bcf7b4d32a59bc212e6054b779
BLAKE2b-256 b30244aeefd14ca24761680443c47ad6bd38f2493c0bbcd0fb1ce79c9aad9b6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 68eb04806617b31167b8b4ab13c89c9214925b30469d25364f1a091b2512a614
MD5 087a71056f1e726c3bd4f83c040bb12e
BLAKE2b-256 0acebdb1c2522ca3b307379f7bbe3d78eacaa096488b477bb027ae678ec4f525

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6ecd3cb06c0d65caa46123b241a4efbab6d5a1cb4c274e2519906f89baa0570c
MD5 d63148a0d21128813875471f0d22f40b
BLAKE2b-256 048973c4e386fa883bacc2544e13f5fbe5d9ffc0df2c70f81b00f7c520e7dc48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28ec81361fdd82882ce15127b464a2df25cd23627d5951e0442d4776d51b618b
MD5 c83997f2ecc385fc1012a7030492406d
BLAKE2b-256 51576381d89c5e10ed4841c261fda868e11a9b0ae75ccfea3be4a40231413b7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 08a1699d002e71a1ada51060eb90919bac0700251e10b451b1c79bce3b755a69
MD5 3065879c4c9e381ffe0d0cfa172b47a7
BLAKE2b-256 fb3feffbfeb2c9283afd3b88f6a8672d6b6dbbe4d9faba8a1ed51dc89a60ca8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 994.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.3

File hashes

Hashes for pikepdf-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0af57eef34224c7ec6ea886d58387519a7b8ef040b0dca43a0e0f6e3dd4c7a57
MD5 2ba18ce93d714dab695e828eba574dbb
BLAKE2b-256 2493ebaa6e60b3c742515374e9b5c5d1acae054b1f85a88b8004af081800db8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aa91e2a8c85ad746184a51985fc15188ed6a90f0327378eb15fbfae2622bc230
MD5 15c59ef938b0c780402331baf04cd207
BLAKE2b-256 df31fef55455576b0cf727c209d170f68eba40726ab5ce79861a7319e7bcd2e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2b49d2f7e7c0a7824eff435e773939a20bc49932e99164e62b5d585dad753701
MD5 c25d8551c6262f94e2cd3bfd6085c95a
BLAKE2b-256 e67bc0ed709cfa7bf1b615950d44018e72eda32f4e7fd483dc68efd2b7cf8be2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d38423ec15722080751f9cfff6f4a46b5187503d266de86fb673ef01840e7a6d
MD5 88662b7858509fe7cc686d611f15e06f
BLAKE2b-256 0933e4dca3c5c257e0e61f1b56a1098b8ebe395fa5056a5f40009796f22d2945

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c025aa7309cb771ae514c3ae2a1569f407bf88aacc48a2ad5ded5fe82b3df134
MD5 087778b7aaa3b9ecd837996637c23484
BLAKE2b-256 f2e77999a235cc4e1de8c5a44e513c08bbe4078081e8005aa085ecb38b07f5be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 977.9 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.3

File hashes

Hashes for pikepdf-1.14.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 954c321a133eb79100b6f3c95f997e0018baade2d9bca93a549a0d01c67408d4
MD5 7c2bc1af7ecd7b62e97ee37d31d9f4bc
BLAKE2b-256 f408355a981fd459beaae6dd26bb20f39b8d8dd1ca62a8f614f073855ee9cd49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 005782b82826d48f4adc75931f26946870882260283d544d1e6c64073c50107d
MD5 dee72a405148c83162b159da07213aa4
BLAKE2b-256 29e536b3bc529c9eff5fa7d70be74a21ffc6dba6514d88e1e83253913d083278

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2fdbc579161bd9ac6f5db0a27d2d626e542da57195878d9cb0aa4fb340f4f812
MD5 73a5b822807a3bf16d7b415a2dbadfb5
BLAKE2b-256 a2923421b3d219dc2155a8e4ba0ad800ce93ce55279be5362c3d791559426dc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f05a4374506903b803cef918227eea9a7e1ac199d517e43207dd8eb68a2f3106
MD5 e071af0c448229bfb57937ed2e85215f
BLAKE2b-256 2965b3f4caa1930c4878be8b1c6b532c93cbce25219332c91b07321a6251dd3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e061e9911d319e6ce14c57749bab111ae06158e73a70aaa956b85d97d4226944
MD5 98d67fc7be3a51dcf28036da1295129b
BLAKE2b-256 7bd251a6f2b5386740e0f303e1c820bf615bf4b1a067bd4c8afb75edb94d0cc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 977.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.3

File hashes

Hashes for pikepdf-1.14.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e27629b61a5a853b1eaaf608899a456e1b9ccca59a52ce30605224c5cf38386f
MD5 403e8a1bb98ab34a1769833ac5ce9fec
BLAKE2b-256 4cd57be4575fed30cbb73af156b81b53556046724aecae672438844436b3211d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 60d9ce85e9e200073722c9a4ec7b44420bd49d644d2dd975d072722dcbd62b38
MD5 7e6ced7490e1bbcc28d3a9f503671145
BLAKE2b-256 f2196a0bd33cdfec2d16223bdebe5cc1f8a85d029fa37b883cc0cae3124b62ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f3ffe5ae56d0bc1ede80ae276e7e7f6dbdfd9dc8fc2c6fd133c1c81e9224e21d
MD5 6b4c78f70af91141e1d12ccf39c749ac
BLAKE2b-256 7dd38bc976a015d2bcd37bbf5dba25e77a55f8e56b599af5325a84675654e6bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0a5c02d5df3bffd7f75e5daabe7f329c957fb91e37d39a406a7dc635258896b4
MD5 5a00a759081b3bff51fcfbe16983f419
BLAKE2b-256 63e80dd790218c1fc4900a794d41e06f41a7f8e80ca34b31f5794fa519dbedc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.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.3

File hashes

Hashes for pikepdf-1.14.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 19ec51f10b7d2e226ed907ed80739de64582fabbdff920ac7e6cf671b2c36624
MD5 4b49fa65306c55f8da919b0f96782200
BLAKE2b-256 294518cc12704b7a49fc1a0d8bd63e5120acaa1c30f57e3aa996589ca7280c59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.14.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 981.5 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.3

File hashes

Hashes for pikepdf-1.14.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ecc3b7d0676d4d6c8638efaab50ea1cfe654be797b00d2a121fb6e150262006
MD5 3f0973de632692385979f79978cadd3c
BLAKE2b-256 b3053367e3917c134562041d01e3804944a67c0a42846315f316bc7e9747afca

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