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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.19.2-cp37-cp37m-macosx_10_9_x86_64.whl (995.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.19.2-cp36-cp36m-macosx_10_9_x86_64.whl (995.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.19.2-cp35-cp35m-macosx_10_9_x86_64.whl (998.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.19.2.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.2.tar.gz
Algorithm Hash digest
SHA256 e40f7924c147666a2dd904bc0073a2a75b5f019ad1de84796d4ce59b6efedce1
MD5 bc8ec6a9cfbf45ed8dbb3088a65dc480
BLAKE2b-256 84cca26e8ec1e087d65501877b9d4627b6baaa9d99e3a90b177ad96dc111eb7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3608f163d68c233694e27ea11ddcc83e1ebf1b2878097ac6c0d5b2fdebf78d2e
MD5 fa18472832727390826ef8bd932d9cae
BLAKE2b-256 72f83aa882c3f9d371919a5ad5ec8be411d243a02e12c666d5ce059f3380be09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e34391685765909b27510d2e1a81c748c032f5f20e9816bf1bb720202b21edcc
MD5 9d01d1e5d7c9395a028a40ec130cac8d
BLAKE2b-256 eab8210c8ceb3bf947e43dbb4f5f2a2d24ef772549495955b719c9a21bd455e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e0417da429e61d59711bdacefab28c30e11c6f6bf3f5b2bd8cc5b4481b56cc3b
MD5 5a0b02e7ace6a724ce0e5638ae9f2eb6
BLAKE2b-256 1304876b432f3f0be8abe172475fb68399304e79c785b27a6af64d885875d42b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a70ea434e2941fd77a88d7d1d235e72e9e3e96ad09cf5489ddd5fdc534bc60c
MD5 3b1b7dc7a7985c0f89df6b69dc09ed9a
BLAKE2b-256 338b48ce53950837cdf3d6da7588f2281f10ddc8c02998261a28429d119d869a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 419f8d51abe321bea35fce2aef13d816819a81034620589b94a424fc829aa2dc
MD5 c964458e57577f0c169df8c5e72d7dc5
BLAKE2b-256 65311effe6bac063bce51c019c27f0bb208e863f11b381c04115a1d0a0c20963

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 32ce8131f09acfa3219e85241a40027c17efe852bc4ab349d245134fc2f8909c
MD5 c2bace953cc4dff505cc06e50588fb20
BLAKE2b-256 2956fcfb046e59c5d4a5714f3f7dc3d710e15988c2ffae6e273483fa07775281

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f524c981bc177db5470e420973889978dd2438c56ce44a35435be5ae4bbd97f5
MD5 1d19c5c15bfdc864f634897651ec7525
BLAKE2b-256 af7c1350a888cf7eb6629468b87e61c4e596bab298c4744243c7656d0f20bef1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f77e659a5ac2034d9e2d12786f26e9972c1b595900b17cf88342cad691c78a33
MD5 76356d6b1f1f5e9726df9fd9bfdffe91
BLAKE2b-256 d374db02c32c1ae566840836bb29888fcd86318e347523eef6732fd172d6d9cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ba4f5a13b8bed9bf6da524b9fe2ccb97ab9154d0697bdfc3061c472ba1d6b1d
MD5 16406d5fbf80d50bfea00dfcfbd119f7
BLAKE2b-256 154bc63c924875ed8eae0f71229b5f80ee318b323e33e8ba22978216915b36b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 995.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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00b49c60f01741276f778f4fe040bced8433b4dc2a5a3805efef390b7d5ed3ae
MD5 f8deca062aca507b6428e23f931f3ed8
BLAKE2b-256 31670f3a10959f530cc18df08c336a14de2c1f9fcf1076c8e6186e4cbddaa6eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 488289bfb22ab03e56ac5a558dbfb253376d747da6cc7d6cc1363dc272dccd95
MD5 c80ecc17188a897ea14573c219dce7ab
BLAKE2b-256 410aab4f85e441d14b5c1dcc65cd3bbbbf94445c5df46a50cd2c40a1db901114

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b4a99f896e41147bfa2eed3dbc82e0af7d39cbec12bedd843865e80bc64857ac
MD5 bbbb5dada39715caaacd472cfa8fe21f
BLAKE2b-256 695f40f7d2e58df2a70cf4888b5e0b760fee34d7ec71225d205b2b1933df97e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2185cb3a9646d506d1aa03da2828171f7d20b8b3bbe40ef05e1feafb7ad2e5b9
MD5 c3168b2ad6d78132b26c9a538f104f5a
BLAKE2b-256 e785bf713a100699c4db669565c60a1986898a9f1c3977ac0559dd9a1b763c4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 798b0fa0706a7e71ee2cff02c87321b86020b36cf73d0313fe0cbf80c51a0d45
MD5 2bc4c4ee204c80be411c73cf14550d1d
BLAKE2b-256 2226dae6ef338724472a0734f3967e63c2954272c526436ee500db231dea2701

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 995.0 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.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f42de8ec31523a24946931f3c1e15008c6e788ee3593e70f3158a9ff7146870
MD5 d0d093b77e0f4303534648fe655e31ea
BLAKE2b-256 96386d724ab5deb740513f8a71483c084d5e37463fd1ce6e3d242fe850d4a8fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9a595686694ec2a0da9a81339dcd5070272ff55e1ff8243054e04b583e9722ce
MD5 99a1a1e87f576396bb28554ed47f2c06
BLAKE2b-256 658467f9be4f95dee820696cffdd0ea3ed37b3d4d6dabb5b843cdcfe39c1c617

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 3b43fb84bc72b39fb71fa114e43ebe1edc3cbcebc0a9e29318d59c9ad3867749
MD5 5333b329280ea12223720fcf8dfb26a2
BLAKE2b-256 1fe6d5301cfd3326e68b29f811fdad4f70df38a0588a70065b7befd5cf6d861f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1428821953e2c320c9a41c9877a09139f1ee3a43b6c5aefc99f5f1bae69638f8
MD5 9f280e823e6298c246b93bae0d139a78
BLAKE2b-256 6fc5ff44baf1a797401fb66377c25675702b67a7cc83d28347d78a3f54351b6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-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.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 998b4e884a3cb71a9f5abafaacba0f118e2709e9f93e5ec6b47c602cc0b61c73
MD5 b79ec4742457bc7bc5f8e56a3d9e040a
BLAKE2b-256 a3e712ec093d9b4b3fa61668b75b51a418030226d4272d195a91a71388ed54e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.19.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 998.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.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c18dfa094bede461e1eb5a513491723aaa96dcbdb2683affb9f1bfa528f4e4e6
MD5 41707831cd225f1e60ca12e1d8014ece
BLAKE2b-256 b335c566ada5c23d3207061a7b46d723219f5da66ca144311c47c01146ef7462

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