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.6-3.9 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

This version

2.0.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pikepdf-2.0.0.tar.gz (2.4 MB view details)

Uploaded Source

Built Distributions

pikepdf-2.0.0-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

pikepdf-2.0.0-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86

pikepdf-2.0.0-cp39-cp39-manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

pikepdf-2.0.0-cp39-cp39-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pikepdf-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (941.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pikepdf-2.0.0-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

pikepdf-2.0.0-cp38-cp38-win32.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86

pikepdf-2.0.0-cp38-cp38-manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pikepdf-2.0.0-cp38-cp38-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pikepdf-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (941.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pikepdf-2.0.0-cp37-cp37m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

pikepdf-2.0.0-cp37-cp37m-win32.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86

pikepdf-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl (1.8 MB view details)

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

pikepdf-2.0.0-cp37-cp37m-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (927.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pikepdf-2.0.0-cp36-cp36m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

pikepdf-2.0.0-cp36-cp36m-win32.whl (1.9 MB view details)

Uploaded CPython 3.6m Windows x86

pikepdf-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl (1.8 MB view details)

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

pikepdf-2.0.0-cp36-cp36m-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl (927.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-2.0.0.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0.tar.gz
Algorithm Hash digest
SHA256 c539b944234e6f8facaf437f5be259bad6f74b78f1a8e912b430a9474139171d
MD5 5a17624357918d08017ec2286ce24acd
BLAKE2b-256 4049e43a11422bb676061c764e21a4e410e3e7b0ef29a1dfe7a36cc52f44dff6

See more details on using hashes here.

File details

Details for the file pikepdf-2.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pikepdf-2.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0b27201f20503c938480c03e2603c70ea503c8bbf89369c86e15aba0d49baaef
MD5 d08175b6cc848908cef70e9cd57f74ae
BLAKE2b-256 49e8ec7560da3fc723b02e1ecb91c4c5553626ea2944ce1df1776f3726ac65bc

See more details on using hashes here.

File details

Details for the file pikepdf-2.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pikepdf-2.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3518f096ead2aebb4949ae1d1171ddd7bc5f38e8958d1c70baf1e0cfd203e3eb
MD5 6ff7bb4bad8dd3e9d5efd8586b59929f
BLAKE2b-256 5a72d5dad64ea37efffbbb4a27dbdaabf43f25d240a7caca06aeba840de736a1

See more details on using hashes here.

File details

Details for the file pikepdf-2.0.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pikepdf-2.0.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f7841970a5f8d8c601504e8090a4b8eab853d3e79d4705962bf2bfa508d026ea
MD5 e9ba5efe2ce38cebfbb8c3e4e576bb94
BLAKE2b-256 2a0a687ed29189b055f1c91a3c81c1dac076da49f34014db4b3ad08b3e90731d

See more details on using hashes here.

File details

Details for the file pikepdf-2.0.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: pikepdf-2.0.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 70184aa4fa256e0cae7f281067c027218ef92d759599875227321ab0d3dd3e7c
MD5 5da5a6538f9e9ff5d96dbe7c03f0d357
BLAKE2b-256 7969a980e9dceb9d9f3d7160f92b7fca4589f5da13d256a7536d3e3f6475ec5d

See more details on using hashes here.

File details

Details for the file pikepdf-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pikepdf-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 941.7 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92e392841f639dde9cd5efcba0b89cf18ada4f788de7adcc6b8e08677ddae920
MD5 e852e0eb076bd02497aae355e9fa8235
BLAKE2b-256 b48c876b9fb5a457b535ec85570b543fdd7b57b868f1f5b49ee45ade3fa40973

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c0cdb00d9ed1574ae41a2143da0bae0b1ac9cd42a8cf370e84c47822a6106641
MD5 d6ab847b4d6d1aa7f4398bf5a5bcba4c
BLAKE2b-256 a00d796d4ca74b60874bda2ce338d88de693461d704206acd9f12e68f7acd0a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b89acd9101955aba3b320447686c4d6818efd8d30e870fd5a4cfbc1c75451ba9
MD5 034d79f89ea3ae238b2972f733a4f939
BLAKE2b-256 7d429bf15205e4b31485e5b8cc56cc6daa4317216d2a995d962978254c7a1abe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5872b9cc41f37f2bf92960737c69b3565661110f3e68a4bb24a5909776fb4919
MD5 eb794adf6ac2e9d30a46a1a29ed13b81
BLAKE2b-256 46b9c0a044146574e212762128332c0ae264978e58cab5c575214bd357a21bac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4e2997c73889a912646a434d5ae91ac84f193fc666e577166d5da84e178074c1
MD5 b6fb86c0d4295fd26fd608a82a9c69d3
BLAKE2b-256 d7b4980c0417342cd2f399af6ce4d646c34b2a5a48d2ad008c3096f07d1d2450

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 941.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 675b22b281376da7c05bb414ef674ce8c97e37d089a1668bd87a71742cc1af9b
MD5 662112e64acc7070ef2899101b473346
BLAKE2b-256 7b66ed4edfa11d9afea1478b66bc127a82490e956b33cd28c172345da7426885

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 13d2860b0370180669231e11888a0e0cb62db66ac6299ceef24a71e7685bcdfc
MD5 bda3a281701e845c6e59d8c0a19c174e
BLAKE2b-256 71ce7d120f8fd784f4da56e08d4293d7522e9eed63e2460208a3939edce1547e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a81ecca9884aa530d23c706df5e8183fda058754756591a38fcbe1054b4d1637
MD5 553b0cea62598e2df22fcf657be65242
BLAKE2b-256 fdccabab8d3ff629434517d6fbd747684afce13cabb5f5982512142fe1056a8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 030d5c0de2860a239a2eccb49436ad7c512105b2848fefeab6feed44884b9c6b
MD5 4669e498cd78a704d30d311d887efb69
BLAKE2b-256 edba38cdb0529686678737676dd3a897cffbab90485ec5464a381713534783b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b985bcb5b7f60ba9312e7431e4894f673ebeea405975754a9e464270f189a128
MD5 c6bb88e8016f234a40476407e8596510
BLAKE2b-256 126f3c8cdfaddd29497447b2d8c392cac28282e01e083ba6632a4423ae3afc07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 927.4 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 087a6f0e299f9bb38a13ad13a5c2d9a8de9070ffc892e827d227d049b7f99362
MD5 c9265beb83bb0395f6ef858d4594b461
BLAKE2b-256 06877a7d2a91a114bb50cf8b7671a96b751bc0a0c16737ef27312c7b37f9ee49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 284328f31b6ea42c3c3f7b6c9097d76e4e026e0e2780921de06ab0a82030502d
MD5 617ab35addc0178b8f2e08dfd58e2092
BLAKE2b-256 33cce23477b33824669e1e730f5060d86608a5ba4eaa7e5164ba7d2d4701efa1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4bd929a9467d8874b956c70f922734218a7fa98a93bf719d7b015d58aca71095
MD5 d6d597f51c9456549d9cd591e608e17a
BLAKE2b-256 510c01fc2cd15cc9efe61c4c28183f78054b31074b3e79d6eb092d911869fcc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a59851ca8d6f47c1e8f5ecd0f1f7923409f27ec265e59f0e9052492c1b634ee
MD5 74d941eee96df934842b1c5774b6fb50
BLAKE2b-256 9281bcd4fc05e420202312c629f4fc37bc0611426a3b6bbfdecf511c6307809c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 88e4d248ead7876d8bcd7e1564bc85af77829d7d18001f4bc363900e868d5aaa
MD5 3faa7c66abafb201b63314c61ddabe84
BLAKE2b-256 712f2873dddeca16efa600e1af5f3a293c143dbb102458f5637e0af35386f11c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 927.4 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pikepdf-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 588cea045fedd40e220792a770103cd5d37d47fae7433fba1da01de06ef81e57
MD5 572fbab816d2f91eb16968cc6b8bcb14
BLAKE2b-256 09fcd5644f527bc3683020511a15030c3f9d4d4e701a25232daf4d27a6ecd7d5

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