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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.17.3-cp37-cp37m-macosx_10_9_x86_64.whl (994.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.17.3-cp36-cp36m-macosx_10_9_x86_64.whl (994.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.17.3-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.17.3.tar.gz.

File metadata

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

File hashes

Hashes for pikepdf-1.17.3.tar.gz
Algorithm Hash digest
SHA256 8413c31b0adf95efcad1222fd4d0a50b11d961ad26dbeb84e2abbc860ef8bc8d
MD5 d3f0a5f465fc8bcf9126dc2386b707c6
BLAKE2b-256 23a84df6b1dfaabd8cef718cd112cb8d81d9788ecfe838f911546a3ae0dd5529

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f0e1edc4590b366221b7dee0949ec1c6b1846c4be6ad952ea0f1bca49742e596
MD5 39f688d63250971e6a5e7bcb55cb46af
BLAKE2b-256 2a7361f7c5c9d557eb969434d7bdc8af12bb832ea998e1fdef22ea2ec185ecef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3e6bf2a74bc20c74a3bca857d1813e31eb30b5c3cad54bc5f29aaab095e6320d
MD5 c9cefdef3c88ff80d5e6b7a6baf1a441
BLAKE2b-256 92791fc496c326db38b51e3d0ae8339518a224811c1fb8801d9100263abe12e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fb71ed3679604e3c1a85c5be5094a58ab46e369b86b4ae90cb5de28f50fd90ab
MD5 63512131509c2bff1b915d8309d69013
BLAKE2b-256 83b1244a31ee76db8ff21a415ca665cd4c518c0068ffec2fa5cedc0f5b258a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3980e720e99e57a5643c1456f828c55955ff51aeeadd53dfaf26b1cd615cc138
MD5 c30ec13582fc0e747de173e19219e244
BLAKE2b-256 25bba0bf36709f01e8bc6f1f99a8d8a2ddd40709c401eff237c07d98b5ad7581

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 215f9434be5883a884fa6ef2167f33bea175106df4de72619036ef278f6cb420
MD5 7522d3913640358076746b81e9201c4b
BLAKE2b-256 ba8d47725cc1e57119b8aa07d354e028c5703fe062738dc0d7c1a9d663b2f6d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d5d6609cb2ee7fae9c237c0c45da7d67182cb4d13513c701578b83d5dd859bc5
MD5 39f3208580f456a09f54541026ee4e48
BLAKE2b-256 0636a2826bd8c23487360fcaea3ce291811c9c21243d504064ac4b82692aada3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 da4d7163ecbac7e35b7261bbc6119553758957388240f631a618ce1b182aae7e
MD5 29c887b5ca2b1d30de9f9a2e62fe0fb5
BLAKE2b-256 a5eb1c4b770db2dd453a3c8ceaa030845f000cc5f610df7ec2c1bd938c3431de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e0666d19ec6e7d05bc893068baabf6f4a40867ced0e22026f9b56fff084220e4
MD5 5f6c1cc92383a9f187ba954e672fa416
BLAKE2b-256 2cddaa86f453a6a63b1398543ed34e68e51290c4334bc9d7b11ad4ab7f4f2bab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f2d281959340dfb7bc94178eed30d8677b9c678257360448aa3387268cff94cb
MD5 46e77a2acddb6c00b9f32f8a83dab210
BLAKE2b-256 68f32bfcd3adeef6b027395c30d81d389da1c9c5b5c24f33ef15470510930e39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 994.7 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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6beef074d18927b5a17db9db361f270918447e2438f725c4ae91459118d3d2b
MD5 0ea9ba9301f34554065aac64ea97c158
BLAKE2b-256 2eb5a1f84924585c200a93aebab77f004ccb222ca3044cc9fe2144fa7fd2cf6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0f81cb1e47b6603f78346cf3c8a170a9fa1427de7b6d85039b8aefa6bf86af9d
MD5 b960a90d56442375407f440c7028055b
BLAKE2b-256 02ae7f2e098555f16765096da26e6e82b0051c2a3491bb8447c9a4f4d31e9ac4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0ea8d5eb07af487a8d5e7edd9a885331966dcf9c8548eb0ad9e5072ad856d721
MD5 2b8fba4e950ac2be8eebe690ffac4c3d
BLAKE2b-256 9adbb3a798662fc6be7731827c7efe6b94cad1beff66dbe13baa4cc4b0324665

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3deb2e3faf5847d03a4ae25a6991f9a78664ae9ed929a2a4442c192467eefea7
MD5 b2a23c3120c5f279fc100b5b74933912
BLAKE2b-256 3e996dce5e1bda44830f312b6ad1b836cdd17783c2ffb3d972d32a056d6210de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 78a8661b38f210e6930634572489c46a25f57408382e07396d27a0c29220b00e
MD5 5e7d169578c45fffdffe71631392d111
BLAKE2b-256 72573f24e1ec98be039ff8adcb6c4f11cc4e27d0bf4e20a4ffae9c06bab2ff22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 994.7 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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11adfff36b7e7ced0ea2d977c30448141b4c65681a7d23774c5a9f1d3be9230a
MD5 8849029120a23e2fa96d2db87cc9b513
BLAKE2b-256 2f9f269714cd6a00728ee9de25b9b7085e0351a818852c5273b8bb9cb6e600e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e81091aa18b9d968cf2b1e394641a6954159a7b23a931c792b182b4cc0a29693
MD5 fb3365a4a09129d77bfc4ea8432bb08b
BLAKE2b-256 88e596b17a5f7ac0b9b3b8a2abd173710e98b991e1d99fcfc171f668cf8fdb2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 cd2fca36fa3edf2fec7e53c85f92b64d14736942816e93253828e9de7d410989
MD5 6b43b7013aa1be123e38258f259a3927
BLAKE2b-256 18f92be37def919569ad6516a41ebeabd4c4084c6f6496d97d8131c20355cb6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c30d57793e455fa60b5dff18e323419f52b10468d7a772a6030cd9a630df1baf
MD5 fa442998259053dd58da427836879f62
BLAKE2b-256 5c02ce92e3ec42576fd56c4a8ec58fd81be07efb541b18a2d1e7bb8e0b13f506

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.17.3-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.48.0 CPython/3.8.3

File hashes

Hashes for pikepdf-1.17.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 beb0982cabd54a3a257f34315029fdd6c1bd7771c4e101afcfbf1962941f8f46
MD5 08d804f19c31731bc50684c44988007c
BLAKE2b-256 35894f0dbb4655f861efbc59021e4109d8d8068699190b4900090db3bf7bf364

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pikepdf-1.17.3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96748ac2fddf8d7d0f6e4b44b3836a130a4373edee18f3be5270a54f2e087605
MD5 3564017e95484d8b908babd3ef68b974
BLAKE2b-256 433a94b748e91b96d5ca3ff10306421b75df8e5eb4df55ebf0e6837bfbc5a983

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