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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pikepdf-1.18.0-cp38-cp38-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pikepdf-1.18.0-cp37-cp37m-macosx_10_9_x86_64.whl (995.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pikepdf-1.18.0-cp36-cp36m-macosx_10_9_x86_64.whl (995.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pikepdf-1.18.0-cp35-cp35m-macosx_10_9_x86_64.whl (998.2 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pikepdf-1.18.0.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.18.0.tar.gz
Algorithm Hash digest
SHA256 4d0840a5c16b535f9b6e56fb4421a43f88760e6cabcf7fd44bdd0436107b61dc
MD5 0fa5310e8b9055d96441b1c7ddb64d6d
BLAKE2b-256 6a10db6a2f3a1725ea66afc4e46eaac02e377bb11c1d2bfd2cc3dcd631707767

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.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/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.18.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f4f8f3d8848e48f861d49ba27ec592927d0370ffc2d6753d909af1750fd7ee8e
MD5 73dc89bc363a6783358af49f8d79f3b5
BLAKE2b-256 2bb0a2fafae342c7e6985829dd20f8436bff191fb170419b2d921b390a1d06bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.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/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.18.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 eda4e3eab0d5f6897d1b7e8f36195a9e5b3ed13995c06ed8a51d67439a6cdbd7
MD5 52904cdd252aa90be4f74984d8d3db16
BLAKE2b-256 4bd9f7237a65550db156e60fe1b4af63f7207ee2467d181905d5c80cffcfc639

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a91a7a37cf563bbbdb735d256df5d5b2888d5776f15b52368a7e5c002b3d3a2
MD5 0c9820a87209162a5251063c998064a3
BLAKE2b-256 c084d241f4f01dcfeb315a69da4c161f0063b6c7c8a6743cc60cd481e3f3f083

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3d61284d3563f8f1440af8b1ac2c7d9b809da910ef3ae3d1a4a4190a0bbc1694
MD5 89ac3a9a96c912b151d83e66a2dc93be
BLAKE2b-256 e2a332dec14dbed840bc17867f8009b792a47fe779f2b9b1a09d8ae864076a3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9b967303dbd87eb6c18e5656e113c307f680dbec3bcf4777e2c934db55329c2
MD5 2badb117370f18c4253ea63326ff5df1
BLAKE2b-256 563aaf9fe4e8d056b40478b4b57438627382d841aa28f44efcbf16118c37c62d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.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/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.18.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2645c502368b8801f676b20f725f2da32f5f0c2419688d5d950e916415851bd1
MD5 d7eb6fee3ba8926b6769f2773c0a21e1
BLAKE2b-256 c138f772cda5593de476a8b2758a100f2e289a078335d285419c954bf2192ffe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bce295e273a04fb50e41196d41ab22707d95b7507c644ec56f4cf31829f38dec
MD5 17dd635a246b3f679086d43bd1d81f99
BLAKE2b-256 dce55bb071368b3274413bb034928d469933d1c6c44cf17b46f01112d39f726c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4e5e53306c0160b265407e7997f9b8abd19b2d14c30f348130ddeb16d81255c9
MD5 8007a3b231c5dc5efe5c231cfc072882
BLAKE2b-256 2f29519a67eba1e7a2160635777965b1206f59a49f94e128ec1c2490d89e22b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0808cfa9817d8e4506eae9a101ba4a48a8ab9abaaa913d3d0fa5061a3105e8c2
MD5 bd67a6f40cf314c0155a163bbefea614
BLAKE2b-256 4bdd612580084ff4deac4da609f333722a45f70a0393d7b498c211093c4a40b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 995.4 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.18.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb4f4af677708dd7586de45b3523da4b3cfb11a6c98884bd97f68a2fc2152899
MD5 959dacddf5dbcd2ecc761196eb1b3ccd
BLAKE2b-256 4babc310bfa177c72caef37f528f75999dc8ada1e790c4e9c50cde1d0d49aa83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.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/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.18.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c1e262ca135c4b6f4090bdcea966a3f6e1376b594ec2f2928f27679507fd5fd1
MD5 ba67ab0a3abfd46082e3b29bc7965e93
BLAKE2b-256 d3d55475e054821a7125806205071832777de77b0e32072ce6be09bc363747fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 cc587dcc96b71c965eeb142ebc97bb0a7ed66f1a13214fad54f2c3c9e70e2a22
MD5 c70deb3ff9efa60442b2e8fc00a07771
BLAKE2b-256 28ff83fbfcc3dc96d807fdfc0be4d6637abbbf42354f2dbf07f97ee70852ffae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 359941171e074f211fc2544bbc96cef3e807deb3123e9fb5b28bf9b7757cb5be
MD5 8abba8a49e24905d4366d4c318b9deee
BLAKE2b-256 52a3a5d4d9c439c1c24588ea64beff86c14d3fef623a3ff497b04e751d4c4bd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c41a86d789b637899410d4080c5f622a9c924ad983b554cb37c2ae6b05360390
MD5 5e6263563ba58a826e163a034a9866a1
BLAKE2b-256 30697e7af4b1c28a8617853ef1e7a533672405fd5e4480be554568151041318b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 995.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.18.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fea2395703fd57b8f58a03f6a19535e996556d5b98d78e4f3bf9f9b1884851b
MD5 20b624909213bd0822d32cd90958e0a7
BLAKE2b-256 6ad5a44420ffe3459e9a2f929ed47a45ab1812a3f2dbf20330f5c2150bf4aff1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.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/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for pikepdf-1.18.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e35f9fd499077f6d4dd2dca8fcb22a6ecfd559f04bc7ed64ec0f2ae030900647
MD5 fc73aa3a9de7e7776887b97d9a112465
BLAKE2b-256 8dec98e51f9ad2d91ad9249e8da199f101c089b5baf89675b55407c70e6a6edd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b2d5ca0d45a87d8a049b6db13c54f3a538ed71a466a29a9226dfce023e1db3b3
MD5 828d5c5717f7d8ddac69008db9268fde
BLAKE2b-256 8b9d99f7f4a4e38feb0155e1e799dd7224cc63c2441c678a25f33b833aa5fc15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1a711e1da7088d701e1e15756d8da7a2b1746486c574911912b4561454319b5d
MD5 cf39963776e2236d8011d81a088545c7
BLAKE2b-256 fd4fef55e3aefc3d0f865764f076190b86f0d9c90cd3c550b188c9a559d7598c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-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.18.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4f2460c9914a6c8005c55f33453a8061f177aa202456cde57b413f87821ea423
MD5 465571ba217171b7e9d107c24c756c83
BLAKE2b-256 1380631c86db74a959cf5738b557afa98ca52db7c12d5b9e5adfe384cd268e79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pikepdf-1.18.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 998.2 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.18.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9d60f33d4fd9fb2111a976d6ad7fd53b686d7002f039ca806a6aa0f2f9b7336
MD5 e0cdf71239d9aeedcce26527e86b5738
BLAKE2b-256 10520a3ec9b76bce99f499a0d327b0d56c2da55b2b92ded08a96bc667752d46f

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