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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.19.1-cp37-cp37m-macosx_10_9_x86_64.whl (994.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.19.1-cp36-cp36m-macosx_10_9_x86_64.whl (994.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.19.1-cp35-cp35m-macosx_10_9_x86_64.whl (997.3 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.19.1.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.1.tar.gz
Algorithm Hash digest
SHA256 fffe9cb5e4f026216c0f6f9170c30a1f9093b061275d9562b39fd74d5156a2ae
MD5 f571bcbe33897db999a139e9069e5261
BLAKE2b-256 4e6247ee84138503c58926947de4a2e08a35c45ffc51e3387fe43e8f9a727aaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9b411da69ce1c480a24866137cb23deefb17da8fa7c4aa4d7bb7718323d2cc64
MD5 68296e47ed65d3b811a719939b49c9bd
BLAKE2b-256 fcb90d3eaa7cb4392fb58e5d306788cd06098bc03ce46ac0800759b028818243

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 146e35b0a5593f89025ad8e51224d76c484bdfa4b9eaf1b870eb3fc78eaa071c
MD5 79d845a665188da1ad6db3d9356cf082
BLAKE2b-256 f2c562ad096726a65bd0d5490eb59f5988844c09d0d98dcab6b0b0eaa5b199ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 524066514a44a01982e2fc17aff527e154817ab337b890240280dde4e3375088
MD5 8817f313b9aace6307ac67bf2959bfb6
BLAKE2b-256 ce73c3b2f3f267c4843d39e145567162ad5be84cd85b02a6338622a1482da98e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4a4e5bcd3fb813f3f085c6fcc0d8c3522771c8fba46561de5cdbbd63aef3968a
MD5 a6bdbbc9c4724bd91465269aae1eb598
BLAKE2b-256 b6792f755773652865d6d084cf1329cffccc676918dd24ba803f469eccd262e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8ead081eb9518496f6bdc03088a49062414b8fd71d54ca189861208aa5c6026
MD5 ecdfc913311ee9bb63552ddbbde3a0c1
BLAKE2b-256 8e038aad8232fbc0c5f89623df6a2fa3d0895d990bfa67933c7825e3e19f6537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7a9d82e4a2bb91e89a35549174502457ae3c4c85a8007ece0a7d75750d33c481
MD5 ff3ddd4d998d0005c325f60e724c6971
BLAKE2b-256 a73141136c6d8bbe6b3840e707f0a05a28545262552f458c7fde3dffffa7f6ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1387881aebceeeff08f3ae60a876c11e996763b290e8de8d74e38fc22dece8f9
MD5 79cabd66037298037bdc3b64abe2d25b
BLAKE2b-256 0d48a5ca4bf21ff4250fa01c315eb916475858f9893ec0d44f031e8cd087a882

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 78aceb019f302a6a0fd64346c3e78f71984c2998981dc3fc6163b1ce5be34598
MD5 9e485ccda3e4be6965da8f9aded8949e
BLAKE2b-256 0e0bf6f2a9f9e8012f40e6eb01bab9942a7bc063cebe6dad1ee39036cc4afb24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1cc4b704d75b1e35f6187b4635d07d48715a1da0ccbae33fe529afca0572f107
MD5 f25441af815409401fd5ee9a3a223c21
BLAKE2b-256 8126474b133ea1d984d7f0144a5a3d3e5abcdd1e9325754f7b751e3d603d8f5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 994.3 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.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ddbf69f084be1309ddfb34957a49ac718f967fba9d32a2436fbcb290b6fd1087
MD5 4bb23576a1dbf38974190c5c2708358b
BLAKE2b-256 b1cf1621c54985dc35a55d291e730d3c3459fb5b659ab63adf74640120b0df93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1be5e109efa9ea0ab6feebb18e2f5eae858ba4495e4be257e8a273aee2781fb4
MD5 9d35606d9025dffe981daa67d1198383
BLAKE2b-256 3bda07dfe7eb1bf59c3355a898a39f4b9aaea9692de61c1614661b688836882d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c8b70ed82518add1d2f52b7eff78cb9f1d3ef81201e0a648a7992b70e6fb1d1c
MD5 8f54b64783e808bc6791abdcee2d9554
BLAKE2b-256 c59cc3823e194ffaf2603833d820e3ebeed489243893a7edca2d6b9107a1cc27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2ae0715a706a372ee976bfc1036e12d8f563d9b5b64de67ddc30e5b134ba82e2
MD5 8e3bf69e90e8466531b44fea03b57711
BLAKE2b-256 89601f20f4344a957c3ccbce3b50082cc88bab5546c159570cbc174f678967c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 53824df1726e7fdb538a149cc8c0b810da9726ae354235f64593d03d32f8716e
MD5 5360b36d3562d71db556191674a91eda
BLAKE2b-256 a5545c030632c3f156dc830b2b2ee8b03f58ee53b93b6421e21979b83205239c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 994.3 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.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62ccddca8f378a7b211ef94c843839679b7f65684ba01a0593ffc769de312b6e
MD5 8809e4f63ee5c935258b33269438f86c
BLAKE2b-256 9c7f26f9b6a9c047d16eb0b8fcbe3e33875da4bf1e8fd66c7882976b2761fad9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8179e7dac68635c9e183a00af025c320640cc1eb8d86e6430eb09702f34571ad
MD5 cb1ae3f8ac950de8a15deb5ad1532d73
BLAKE2b-256 802124f43463b462dbedcfe5984b2bb18fe6fbeb4a392872771f585c4e27333c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a79843e0eb514b3b5a8eb937b8de2a94156685fc535b2f75237455cda6e1dad9
MD5 da55852bc9a0d96c7ae674dcbceda381
BLAKE2b-256 65bc4972523e65ced41e8120e162d9076c66d5f1ce00d14ee67d33d40b00b49d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7ccb36a1818a884d75854b682694056877860f8a3c8416cf5dc01c778df4a766
MD5 7ccdb7ec156f9727e5f0e4157ffc5ac8
BLAKE2b-256 603b9da6472c9be8b0bd28c092522dc38fb0ac6ad390e03eddba88292a692a61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-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.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d23a5c23845157f93ae0d37ef61e94a9271f2387e3b65d9560b875236489fc51
MD5 a043375b5ce2aa7b1ebc972546235a09
BLAKE2b-256 e9736de66db251c7b1abf181448ce73e0ee9a90e7f48122d2a1ab0cdce5d8d1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 997.3 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.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2c4c9e56b9731fab269a856254eafa2ae9127734e178f0df1116b2bdd2e0de9
MD5 5b4df9b45210ab3cfc628b5bb636f8ea
BLAKE2b-256 efa51507efab94ee374cca4a81c004683319890d979487b504df9a6cdce81305

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