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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pikepdf-1.17.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.17.0-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.17.0-cp37-cp37m-macosx_10_9_x86_64.whl (993.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.17.0-cp36-cp36m-macosx_10_9_x86_64.whl (993.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.17.0-cp35-cp35m-macosx_10_9_x86_64.whl (996.6 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.17.0.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0.tar.gz
Algorithm Hash digest
SHA256 203465f4b3a661d595070b89d0cac0b007db849baee194c0ab7c431cefb1a93d
MD5 e15f064a3184e4791024eac7c3c80b0e
BLAKE2b-256 29b077e44a32ef6ca0ecd43683c82123818f42f98da50d908453efa8746ff98a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 93f0d51304bb912f1b0ed83245d8c4916d742aa142c2f7bc441f77bc79edfb35
MD5 731f2de76fdb45cb5a3932e584e4b16b
BLAKE2b-256 e0117dac3001e8678e904e39a9ff271cd2b21e750bccb114b6da638fac9658d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3c2239b9ab4bf79f913340db0c11d041c37e328e79186304d481c276da6d3af1
MD5 f613bdb7ceab1bd8ef34b16850073033
BLAKE2b-256 c933a8b95ed418ecb29619e0b57c124e764784771f6975bf5a6b85342a7fb180

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 de255eed70d37474d93f840ca50011e19f2d31f5ff2970e90c24a62970d6188d
MD5 cac302e969ae09b3d8d46ff1b73649f7
BLAKE2b-256 83dafb4db55e595ca9897c5c9866c369ea6f9c2e4f33e4da9c32463565b8ff09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 de9db0fbb6a435b1bd6463c5ee25a7a60ac6621314d5cdfd1c894c35bd6419f4
MD5 5b3ad1419a3644ad932078dc7eb8fc72
BLAKE2b-256 aff9dd22c8d27173b71bcf5d917618d2eeab087dfeb7e3db591c62e5f5f9caae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcba5e34401124d5b924618144f132a24157b4a6aba54cc5b9f81affb9b4352e
MD5 736c638ac0b1e2730ebe91c6dddeabe9
BLAKE2b-256 91884d3c1391a1874f329f47f3bc4025412b73a67b435638fb404b5e8ecef182

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7d7b998a73c2b32220e972a3c848f94f0e3d0343b8970794197ce56dc0a9638e
MD5 187495df1ab17ee2ac0c521d8d9038fd
BLAKE2b-256 f1470f971644e3e60926ab2786e35f4f2d7426d4c73974328c901ee092eca594

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3f088e1ce15480c89453674c7141d7e1fef12c3c72ea311fb7939833844decdc
MD5 9e8d5bcf35f7f09900b5e3010c7ac11a
BLAKE2b-256 f1f6233eaa95b42652d90d32d2439b54ec04e40d5129590ef72219d9f2c7abe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a2fe7e88286c637cc53599efd3b8d954c3b1f4aaaa3b360ac566f3aa075e3e38
MD5 2e76306dc2391e79bc616383cc8526e9
BLAKE2b-256 3435422b5880394e10593b48168427efc28a810d3cfc7bc36707054945c75768

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef1ea392b80bca82698d85822dc62bc185400535ea700e219978a4965644e9e2
MD5 4872be56a22b1fe6c23773d230a84c2e
BLAKE2b-256 901de0d342a1e5eb7a50317de8e8482c87e409d57d4e2fede9bc331ced2c7cf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 993.9 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c077f408fb2ad23da2f7cd2b2364d0bc5678600f6731cb95a4d18a83843adfb0
MD5 d06ede03ec775cde485498ad01034bc2
BLAKE2b-256 b4610ceb09deb829cd776e738231ad3b90783f3d4e81c48f359fd329a74470be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d05bcd582359724608856505e27f46a7c2966712229e494c093e8962d5c2dbd7
MD5 bbd72b6c868f857ac8178c723e2f0f1b
BLAKE2b-256 b3023387591c209afbeb67fa34c502ee44fcc25c3f200bfd317d400816ac3e3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 78917660bb1d2f9fc6de0fa1c8163dab7d0a4328c54848966e557efe166555fe
MD5 cde3422635b4e332c3c2afdccca16cbe
BLAKE2b-256 b8e36548d21e2f7601fecadef81eabf23a8c3b39eeccc28d0d36a0dd32305ea3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5c15c425163702b5a35061cf9146fd4c332c888a2e77d438511096d2a4af1515
MD5 f559952f76b3cc983c18f0025d6c0450
BLAKE2b-256 3be4fcb59ec5ca22fe1b36484f27ce168e619f00be16541136c932cb30cecae5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e888315d94c7ded0d2bb128789dd582bad9be1cbd1c5f44636fd343a0a0d27b8
MD5 55e40d303a86fe49af0b13fae3b50119
BLAKE2b-256 95a316caa609abcb328bd93d759734764b877639289c82fe75dc0660ed512cf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 993.8 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5a8a8c5ec02756200cdc25c321167997c1af4a0cbf5338c5ae230ddec75c77c
MD5 2edfce56a959f0adab21c71a208d1c19
BLAKE2b-256 f15cd58c5ea9d4580f6d99db7ace7dd159c90d6c0863e3470f78bbacebe0befe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4972da0e339e18c9d61d3459f0b4fc170c0d2bc2aa256474ffe4f2ba8e5378ca
MD5 b1cbf54eb8754406403c5ed324d61a23
BLAKE2b-256 2af72289a65417fe8c3af006774c870660e8186cfba4c3d421d7105884b91f3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 53a91872949c549c653c944eda8830b8dcb886b438a553183dcf336a97174b69
MD5 aea7e4575df19da40b183fdeb9fa7338
BLAKE2b-256 3310845669edf35460082563c147c9524d9eb4437f3d9d23825a8cda9479392a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f8b54bbf5f03dc0f04d1a871d135b4fb51d0b5f6066b16a78b4d5652d9bee45
MD5 9e5931790f2123cdf1bf70c7c35f59a9
BLAKE2b-256 c0ed94254226099e9fa38b6f60d7de09cc8320457ae85637edb8a579583c5b73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4b826da5b25d366d10e36c19edb2d3444a913c88bd2151e3fbd6ed85168cd3c1
MD5 3ed24ccfe134ad2599ab5814cbacae19
BLAKE2b-256 2bc8423b8dde1a3ed61cff95b9b63569eb69d253cc41d8e4c0ad4942195f9606

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 996.6 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e1b4df5a96c3962ceaa7ef4e3cddc11b54d500bba828a4f44992f6b9eeb097b
MD5 840a23346953f47251ba1ff89569f7e0
BLAKE2b-256 cd29d00e62b56d136167c859bf0da084a1e25f29f28543286f5886964e2b9399

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