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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pikepdf-1.16.0-cp38-cp38-manylinux2010_i686.whl (9.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pikepdf-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl (998.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

pikepdf-1.16.0-cp37-cp37m-manylinux2010_i686.whl (10.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl (983.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

pikepdf-1.16.0-cp36-cp36m-manylinux2010_i686.whl (10.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl (983.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

pikepdf-1.16.0-cp35-cp35m-manylinux2010_i686.whl (10.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.16.0-cp35-cp35m-macosx_10_9_x86_64.whl (987.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.16.0.tar.gz
  • Upload date:
  • Size: 2.2 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.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0.tar.gz
Algorithm Hash digest
SHA256 209ba822dad6a91d4b6c0b6e636f06522ba986daa0f29c155bf17e2e5eed55a2
MD5 d23e81c2e675bfb4cc0da17695542614
BLAKE2b-256 ddd935ac45cc2be3f8d008f43ac64b4b552a6563c9f41452b2f6d6a698469df7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pikepdf-1.16.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ac0df2396e24bfcecbbb66bb43d6ff954e41074314bee63286b90a8cba82c2ed
MD5 ed7b423faf502c8f1f17e070c1068bf8
BLAKE2b-256 4ba22243f3e99d0820b1f06e6c3d433ae93a20a5e9cc6e8ff713249fe713969b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pikepdf-1.16.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b5baf064d1d809940943970b84346d68f9df6eb9f301a5f4a3cf1f33917d9a90
MD5 e160c65bd5eac73863ccb5651e957b65
BLAKE2b-256 2c83ea635d7bb936a77c0c2e0171ddffafbd4224215f9cb37723074c7c6581f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3cecc9aeed046ceeecf9ee59ed366e19a6a9e26b9421284034d3c33518e6a76
MD5 6c8f0fd12f116a0efbfc09c6f5da40e0
BLAKE2b-256 86bc5ae3fd48129c102826cd43959de398051952ad179b77db6fea5672a9eb85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 9.8 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.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bc382fb228da2d5ede595fe40ae836b0a9925dde8540633d4085f1f8f1414daa
MD5 25ced370769be2de0ab52ff9f0920715
BLAKE2b-256 3e4b4caadd982e29d9f66371fc2181c70614b725ebe01f3375644189ff6bc0e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 998.8 kB
  • 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.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ca018bac1b7588181568dc8097a393e01996d66b4842d06316ef32552a0601d
MD5 47c019db7548a71c0706829056f918bc
BLAKE2b-256 7724a10b3d5f70394ba5e8553b4112fdfaf03fb451908261d7ee04e3ebf203e5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pikepdf-1.16.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d72b9f38093859b3b1280266ba50bb2e8a31c9abb84b3284acbf5948055205a5
MD5 b220c5e27aa164be59d76d2ab8d98fc0
BLAKE2b-256 585048c3c39109ff020336d32867efc466c9058fd55805c90a015baca67276ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1502f257f109ac4f434ac61cfafabc3d870b2b85441de1178cbc45ebe711abcb
MD5 d316fbc82511195cc3cba856b488f7f7
BLAKE2b-256 bac2f7d870bb5734e4cbf506b6e1bb2485da40e57e90ad1d197d522684156d2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0472392e5957a3ebfee3733c81a868001f12e907a0ce3ee3440e9771f18e0d77
MD5 b2c57baca214bb1c86faa3a0077847f7
BLAKE2b-256 f16fbb2fbc0e07eafafacb60d9c409d9100a499f95c1289ba3e39b9c66823734

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.0 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.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 128b013421966b439d50a1ade4d68443f168225de4257f31cf7fb953dd1cf6d0
MD5 c76a5debd413c61ed9038a50b9974da0
BLAKE2b-256 23af0265cdbb26379522a065e204f227e26b477dc6082dc260099cb3942c12ed

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pikepdf-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ce182c9299fa8069a0eeeec5e67e37e2b3f4281c73ae0fb4965f9319dea9699
MD5 b6d5a591520261ff12337f4904e3a5da
BLAKE2b-256 ff7b40e917e9f14e6780c7f03c763bf3557e2b4b3748ab6172acb3c9e854e942

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pikepdf-1.16.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f027376f07c19b721cf1f95f11d9183123dea0b082a42d96979a38a4b751d6f4
MD5 93830e075bb640842bb9e4a08a5c0720
BLAKE2b-256 c31ea75e04d754ff3e08684dcf5c5ad37bcaf5a3fb5cc44a9231b76b8398b376

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 87eeb7c21ee5c5fbf1e9955d89e98265024611169d08ae06a156c0ef180b61b9
MD5 b0c4d63a4c7bc15ed318cd9f7f6bc24c
BLAKE2b-256 2fdfd1cb9adfba4be4320c0d2630bdae7eb04576b1dbb51f77ff8db293ecd32d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d135700344ef396a07782c11c92da97dd84040064c04db936c3a35945e7dd8ef
MD5 bbf10dea2808f70f52f1ace016cdf079
BLAKE2b-256 24ee3eb30bd6aecc2646bb95b94a03be092341a8a18818c74219f02abeaa5755

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.0 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.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 281b3813c0a597f32f8f87075e2c1559682177591091444e897c5347f429285c
MD5 a10ebe709808c6459af73b8745fbb1a8
BLAKE2b-256 e709b6be690e5eb0feabbd8bec5bdfd48a55c09aac947d0e0197dea45c73259b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pikepdf-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0384b04360e322f216d0d6d3ccdc95c0d966fe0b1c805057111bb4dc2a03eca2
MD5 5df794032d23ca4dbd1cd7694f99c887
BLAKE2b-256 1dbaadb5e4268beef45bb4b06bfbec654e936614f44cd9df1d6eb6ea409aa0b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pikepdf-1.16.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5dc68db228f4263ff20267884635de9d61416b770f6ab26df4c93499e831c913
MD5 32a57d7886569ff36eb0a2c9363715bb
BLAKE2b-256 b88874d55208be423c61ca0639da99d6e89cecaf23a91305b0b6e8368c4e1656

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5483806d97aab9facb8fa912308f7ae3d776740b3579a8b5dad9f8c8ec867ca7
MD5 7bb3440e014137a40b9c4c1b6b2b58de
BLAKE2b-256 3947667b967da23845f257ce4e8a7c972ade1e32d5d5cc90beb8ced665f9dd4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0bb29e70beaab9639811add0db9e4d1217ed6a2586c416b2cee2720c02316cfa
MD5 986300d2d96f9c60e4cf9e26e0ab5589
BLAKE2b-256 21d1ef1ff1bfa71028703c27916400fbd7fc3daf753ed6df76cf5def1ca22a8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 10.0 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.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6f5be67fe87f4ad2153097a18398ec96c13665f7777b7637b905ced8c784fa81
MD5 055bbd154f633b233cb16f58b2e26695
BLAKE2b-256 1053e343f0eb73f9680a5613dc0781ccd21d585e60ab80f0b26eb6af3053655c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.16.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 987.5 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.46.1 CPython/3.8.3

File hashes

Hashes for pikepdf-1.16.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31492c6cff76d6c94e21c3442978a3b8915a348acb512f3ebc3e727f62a87a76
MD5 d2f8d3a63de3aa3ec45189100b59b8b7
BLAKE2b-256 60398a69d8fd7fe258f5b24f4a7bdc1dabdccc278ed9f99a0b4ba357fa1db645

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