Name | pikepdf JSON |
Version |
7.1.2
JSON |
| download |
home_page | |
Summary | Read and write PDFs with Python, powered by qpdf |
upload_time | 2023-03-25 21:00:06 |
maintainer | |
docs_url | None |
author | |
requires_python | >=3.8 |
license | MPL-2.0 |
keywords |
pdf
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<!-- SPDX-FileCopyrightText: 2022 James R. Barlow -->
<!-- SPDX-License-Identifier: MPL-2.0 -->
pikepdf
=======
**pikepdf** is a Python library for reading and writing PDF files.
[](https://github.com/pikepdf/pikepdf/actions/workflows/build.yml) [](https://pypi.org/project/pikepdf/)     [](https://codecov.io/gh/pikepdf/pikepdf)
pikepdf is based on [QPDF](https://github.com/qpdf/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".
```python
# 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:**
```bash
pip install pikepdf
```
For users who want to build from source, see [installation](https://pikepdf.readthedocs.io/en/latest/index.html).
pikepdf is [documented](https://pikepdf.readthedocs.io/en/latest/index.html) and actively maintained. Binary wheels are available for all common platforms, both x86-64 and ARM64/Apple Silicon.
Commercial support is available.
Features
--------
This library is similar to pypdf (formerly PyPDF2) - 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** | **pypdf** (PyPDF2) |
| ------------------------------------------------------------------- | ------------------------------------------- | ----------------------------------------- |
| Editing, manipulation and transformation of existing PDFs | ✔ | ✔ |
| Based on an existing, mature PDF library | QPDF | ✘ |
| Implementation | C++ and Python | Python |
| PDF versions supported | 1.1 to 1.7 | 1.1 to 1.7 |
| Save and load password protected (encrypted) PDFs | ✔ (except public key) | ✔ (except public key) |
| Creates linearized ("fast web view") PDFs | ✔ | ✘ |
| Test suite coverage | ![codecov][codecov] | ![codecovpypdf2][codecovpypdf] |
| Creates PDFs that pass PDF validation tests | ✔ | ✘ |
| Modifies PDF/A without breaking PDF/A compliance | ✔ | ✘ |
| PDF XMP metadata editing | ✔ | read-only |
| Integrates with Jupyter and IPython notebooks for rapid development | ✔ | ✘ |
[codecov]: https://codecov.io/gh/pikepdf/pikepdf/branch/master/graph/badge.svg?token=8FJ755317J
[codecovpypdf]: https://codecov.io/gh/py-pdf/pypdf/branch/main/graph/badge.svg?token=id42cGNZ5Z
Testimonials
------------
> I decided to try writing a quick Python program with pikepdf to automate [something] and it "just worked". –Jay Berkenbilt, creator of QPDF
> "Thanks for creating a great pdf library, I tested out several and this is the one that was best able to work with whatever I threw at it." –@cfcurtis
In Production
-------------
* [OCRmyPDF](https://github.com/ocrmypdf/OCRmyPDF) uses pikepdf to graft OCR text layers onto existing PDFs, to examine the contents of input PDFs, and to optimize PDFs.
* [PDF Arranger](https://github.com/jeromerobert/pdfarranger) is a small Python application that provides a graphical user interface to rotate, crop and rearrange PDFs.
* [PDFStitcher](https://github.com/cfcurtis/sewingutils) is a utility for stitching PDF pages into a single document (i.e. N-up or page imposition).
License
-------
pikepdf is provided under the [Mozilla Public License 2.0](https://www.mozilla.org/en-US/MPL/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. Some components of the project may be under other license agreements, as indicated in their SPDX license header or the [`.dep5/reuse`](REUSE) file.
[Informally](https://www.mozilla.org/en-US/MPL/2.0/FAQ/), 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](https://www.mozilla.org/en-US/MPL/2.0/combining-mpl-and-gpl/) for notes on use in GPL.
Raw data
{
"_id": null,
"home_page": "",
"name": "pikepdf",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "",
"keywords": "PDF",
"author": "",
"author_email": "\"James R. Barlow\" <james@purplerock.ca>",
"download_url": "https://files.pythonhosted.org/packages/d4/c4/833162e3bc483e0b137736985a2bf866a010c169364cbde98145025afdbc/pikepdf-7.1.2.tar.gz",
"platform": null,
"description": "<!-- SPDX-FileCopyrightText: 2022 James R. Barlow -->\n<!-- SPDX-License-Identifier: MPL-2.0 -->\n\npikepdf\n=======\n\n**pikepdf** is a Python library for reading and writing PDF files.\n\n[](https://github.com/pikepdf/pikepdf/actions/workflows/build.yml) [](https://pypi.org/project/pikepdf/)     [](https://codecov.io/gh/pikepdf/pikepdf)\n\npikepdf is based on [QPDF](https://github.com/qpdf/qpdf), a powerful PDF manipulation and repair library.\n\nPython + QPDF = \"py\" + \"qpdf\" = \"pyqpdf\", which looks like a dyslexia test. Say it out loud, and it sounds like \"pikepdf\".\n\n```python\n# Elegant, Pythonic API\nwith pikepdf.open('input.pdf') as pdf:\n num_pages = len(pdf.pages)\n del pdf.pages[-1]\n pdf.save('output.pdf')\n```\n\n**To install:**\n\n```bash\npip install pikepdf\n```\n\nFor users who want to build from source, see [installation](https://pikepdf.readthedocs.io/en/latest/index.html).\n\npikepdf is [documented](https://pikepdf.readthedocs.io/en/latest/index.html) and actively maintained. Binary wheels are available for all common platforms, both x86-64 and ARM64/Apple Silicon.\n\nCommercial support is available.\n\nFeatures\n--------\n\nThis library is similar to pypdf (formerly PyPDF2) - 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.\n\n| **Feature** | **pikepdf** | **pypdf** (PyPDF2) |\n| ------------------------------------------------------------------- | ------------------------------------------- | ----------------------------------------- |\n| Editing, manipulation and transformation of existing PDFs | \u2714 | \u2714 |\n| Based on an existing, mature PDF library | QPDF | \u2718 |\n| Implementation | C++ and Python | Python |\n| PDF versions supported | 1.1 to 1.7 | 1.1 to 1.7 |\n| Save and load password protected (encrypted) PDFs | \u2714 (except public key) | \u2714 (except public key) |\n| Creates linearized (\"fast web view\") PDFs | \u2714 | \u2718 |\n| Test suite coverage | ![codecov][codecov] | ![codecovpypdf2][codecovpypdf] |\n| Creates PDFs that pass PDF validation tests | \u2714 | \u2718 |\n| Modifies PDF/A without breaking PDF/A compliance | \u2714 | \u2718 |\n| PDF XMP metadata editing | \u2714 | read-only |\n| Integrates with Jupyter and IPython notebooks for rapid development | \u2714 | \u2718 |\n\n[codecov]: https://codecov.io/gh/pikepdf/pikepdf/branch/master/graph/badge.svg?token=8FJ755317J\n\n[codecovpypdf]: https://codecov.io/gh/py-pdf/pypdf/branch/main/graph/badge.svg?token=id42cGNZ5Z\n\nTestimonials\n------------\n\n> I decided to try writing a quick Python program with pikepdf to automate [something] and it \"just worked\". \u2013Jay Berkenbilt, creator of QPDF\n\n> \"Thanks for creating a great pdf library, I tested out several and this is the one that was best able to work with whatever I threw at it.\" \u2013@cfcurtis\n\nIn Production\n-------------\n\n* [OCRmyPDF](https://github.com/ocrmypdf/OCRmyPDF) uses pikepdf to graft OCR text layers onto existing PDFs, to examine the contents of input PDFs, and to optimize PDFs.\n\n* [PDF Arranger](https://github.com/jeromerobert/pdfarranger) is a small Python application that provides a graphical user interface to rotate, crop and rearrange PDFs.\n\n* [PDFStitcher](https://github.com/cfcurtis/sewingutils) is a utility for stitching PDF pages into a single document (i.e. N-up or page imposition).\n\nLicense\n-------\n\npikepdf is provided under the [Mozilla Public License 2.0](https://www.mozilla.org/en-US/MPL/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. Some components of the project may be under other license agreements, as indicated in their SPDX license header or the [`.dep5/reuse`](REUSE) file.\n\n[Informally](https://www.mozilla.org/en-US/MPL/2.0/FAQ/), 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](https://www.mozilla.org/en-US/MPL/2.0/combining-mpl-and-gpl/) for notes on use in GPL.\n",
"bugtrack_url": null,
"license": "MPL-2.0",
"summary": "Read and write PDFs with Python, powered by qpdf",
"version": "7.1.2",
"split_keywords": [
"pdf"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "880a9d835d533e75fd1f8dae0acc030bc7fcec413883d5eec0d70979f69d2bd2",
"md5": "c22daf1b9021d97682554e0f64cb6747",
"sha256": "81950bde71eeaa1fbef72164cf4c78f408250bdb2346e4a69aebe1fe0631c47b"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c22daf1b9021d97682554e0f64cb6747",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2920061,
"upload_time": "2023-03-25T20:58:56",
"upload_time_iso_8601": "2023-03-25T20:58:56.432741Z",
"url": "https://files.pythonhosted.org/packages/88/0a/9d835d533e75fd1f8dae0acc030bc7fcec413883d5eec0d70979f69d2bd2/pikepdf-7.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e854231715247cae97b368ef7629b78c4c324dc7787133d84d8cebd0fb772c2",
"md5": "e80ee09b61b264db2a410878568cba3c",
"sha256": "7c7b5c328dda0f0f3de4fbfbf3f1f68a85cb957eed00a4bd2f7683a465dc5b5a"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e80ee09b61b264db2a410878568cba3c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2187392,
"upload_time": "2023-03-25T20:59:00",
"upload_time_iso_8601": "2023-03-25T20:59:00.231505Z",
"url": "https://files.pythonhosted.org/packages/3e/85/4231715247cae97b368ef7629b78c4c324dc7787133d84d8cebd0fb772c2/pikepdf-7.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e4aa11727bce6d842eab0d27d0de869569cdf42e711d9bf9e104a478837fe4a",
"md5": "4b2922ece8f8c02fd444a8727c14480a",
"sha256": "51a9272db7a468476f74c39c0fa5dc6b501e298c709a4b8df8e4b393929d644a"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4b2922ece8f8c02fd444a8727c14480a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2431584,
"upload_time": "2023-03-25T20:59:02",
"upload_time_iso_8601": "2023-03-25T20:59:02.580522Z",
"url": "https://files.pythonhosted.org/packages/7e/4a/a11727bce6d842eab0d27d0de869569cdf42e711d9bf9e104a478837fe4a/pikepdf-7.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3a8f2980554a135b25e1583f065e7780d7101ca97226bede8f9caf47d642639",
"md5": "b508a5c9c88a1b6b3dae861c79aa575d",
"sha256": "b21521fc51194869027edbdcaf46cf20396344518b122085133c68ddd1dd770f"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b508a5c9c88a1b6b3dae861c79aa575d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2330254,
"upload_time": "2023-03-25T20:59:04",
"upload_time_iso_8601": "2023-03-25T20:59:04.931463Z",
"url": "https://files.pythonhosted.org/packages/d3/a8/f2980554a135b25e1583f065e7780d7101ca97226bede8f9caf47d642639/pikepdf-7.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24406fc000221173a58f18d03777a440aefbaa534a7d4578d974b3ad81d6f083",
"md5": "910b04713ed221dcae43671a26e6f97a",
"sha256": "3d88c0ecbfd0df33144cbe348a765f9a82bcc86a7cf18fb19df0d9eab6186398"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "910b04713ed221dcae43671a26e6f97a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2783971,
"upload_time": "2023-03-25T20:59:06",
"upload_time_iso_8601": "2023-03-25T20:59:06.695378Z",
"url": "https://files.pythonhosted.org/packages/24/40/6fc000221173a58f18d03777a440aefbaa534a7d4578d974b3ad81d6f083/pikepdf-7.1.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d2515b736c77475cbd91481ddef9ff23915868bdad8856b7a51cf0c51dc7f30",
"md5": "9dc3f684ca613caba3916e8f51139bf5",
"sha256": "7c7b8f74b144ee0c384a7b82e34d84da89821e0d3f0cf207c5af039c563dce06"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "9dc3f684ca613caba3916e8f51139bf5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3265859,
"upload_time": "2023-03-25T20:59:09",
"upload_time_iso_8601": "2023-03-25T20:59:09.574310Z",
"url": "https://files.pythonhosted.org/packages/7d/25/15b736c77475cbd91481ddef9ff23915868bdad8856b7a51cf0c51dc7f30/pikepdf-7.1.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20c2faf0b4dee4793b36ba9c95b4509b63e1190b00a121ff089ed082f1bf34e6",
"md5": "e4d6f5995363f32eebca23dbf6a376a3",
"sha256": "4dd60ae07332b126a4d814955230f1852fcbd905ff72f1d3dde37ab7be192dfa"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e4d6f5995363f32eebca23dbf6a376a3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2920114,
"upload_time": "2023-03-25T20:59:12",
"upload_time_iso_8601": "2023-03-25T20:59:12.015926Z",
"url": "https://files.pythonhosted.org/packages/20/c2/faf0b4dee4793b36ba9c95b4509b63e1190b00a121ff089ed082f1bf34e6/pikepdf-7.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c750942a8cffdf0500c576a41cd8ed798f275bece2ee89b75bcacdb76d532c61",
"md5": "46b3061f24a5ae8cfa04de632f5dbf1d",
"sha256": "641beb42fdf82cd15e079dd081ba410b54ea552ea81b884cc98885ac5541f73d"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "46b3061f24a5ae8cfa04de632f5dbf1d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2187546,
"upload_time": "2023-03-25T20:59:13",
"upload_time_iso_8601": "2023-03-25T20:59:13.626126Z",
"url": "https://files.pythonhosted.org/packages/c7/50/942a8cffdf0500c576a41cd8ed798f275bece2ee89b75bcacdb76d532c61/pikepdf-7.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2916f11ec3d1efaa2bb5be51a510b9e52889a6f5aa6eed17debfae421941bac",
"md5": "020ef05b44902afae97b665e54594838",
"sha256": "df2a99208cb426d675faaa578a96d6f9b76eee76cb473a267b9ae85078176443"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "020ef05b44902afae97b665e54594838",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2431408,
"upload_time": "2023-03-25T20:59:15",
"upload_time_iso_8601": "2023-03-25T20:59:15.207577Z",
"url": "https://files.pythonhosted.org/packages/b2/91/6f11ec3d1efaa2bb5be51a510b9e52889a6f5aa6eed17debfae421941bac/pikepdf-7.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7c9ff38bac65e3dc9a34d82f04dad71cf3e3a4d2895a77add8d888b57fa3617",
"md5": "a3e5abaa694687410eea5c54517028f9",
"sha256": "2400574cf79481683f6ce537ee5d1d7925b71ff4d863a026246cbc34be8aeef0"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a3e5abaa694687410eea5c54517028f9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2330268,
"upload_time": "2023-03-25T20:59:17",
"upload_time_iso_8601": "2023-03-25T20:59:17.426591Z",
"url": "https://files.pythonhosted.org/packages/c7/c9/ff38bac65e3dc9a34d82f04dad71cf3e3a4d2895a77add8d888b57fa3617/pikepdf-7.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a54a2dee7b8efe219b9cf68a1442e559162e7739273c7517c2c801572203d8dc",
"md5": "99dc84607b2c3d03da7002fbaad6b821",
"sha256": "d75dfaf6df6e7394d7865878eaf9f2dca1900ebcf1ab9e681672a12d6c7b329b"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "99dc84607b2c3d03da7002fbaad6b821",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2784059,
"upload_time": "2023-03-25T20:59:19",
"upload_time_iso_8601": "2023-03-25T20:59:19.703465Z",
"url": "https://files.pythonhosted.org/packages/a5/4a/2dee7b8efe219b9cf68a1442e559162e7739273c7517c2c801572203d8dc/pikepdf-7.1.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "282360135feae23301148190d5aad3ec64c31a925cb2a34faac980b5b86872a4",
"md5": "e6d2132e4f21bbcc21a2b6f25a9e6fbe",
"sha256": "bb5ec2e06b3085413b69dbf3045a9a05a84d24ed8118221854c5465f6190ab35"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "e6d2132e4f21bbcc21a2b6f25a9e6fbe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3265907,
"upload_time": "2023-03-25T20:59:21",
"upload_time_iso_8601": "2023-03-25T20:59:21.850936Z",
"url": "https://files.pythonhosted.org/packages/28/23/60135feae23301148190d5aad3ec64c31a925cb2a34faac980b5b86872a4/pikepdf-7.1.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "939822dcb83b35c0cb0692d9f9ebdaee8b4ba77fd27f3ed35d3502a184005c94",
"md5": "9929e88e208e4f2562458786d11fe1e8",
"sha256": "de41f314fa61ab4d2368ab63b7e0f1ad72aab3115cfc90c8e123201fb5c2bcb5"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9929e88e208e4f2562458786d11fe1e8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2920122,
"upload_time": "2023-03-25T20:59:23",
"upload_time_iso_8601": "2023-03-25T20:59:23.875200Z",
"url": "https://files.pythonhosted.org/packages/93/98/22dcb83b35c0cb0692d9f9ebdaee8b4ba77fd27f3ed35d3502a184005c94/pikepdf-7.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "889319a745425393b3dcce145983ca6abe919f6b293b22642cbd1996c6fa9656",
"md5": "bfc17354fc3c7225937c4f5bc1e71242",
"sha256": "3af17fac243f6e5fef49c57dc99f858957e4210f1b408e1433aa6be29bc49dfd"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bfc17354fc3c7225937c4f5bc1e71242",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2187226,
"upload_time": "2023-03-25T20:59:26",
"upload_time_iso_8601": "2023-03-25T20:59:26.236818Z",
"url": "https://files.pythonhosted.org/packages/88/93/19a745425393b3dcce145983ca6abe919f6b293b22642cbd1996c6fa9656/pikepdf-7.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b8a0038590a16f4a4992064b06a5e39e690442b8801774935effda29392fa84",
"md5": "d2ffcdba70182ec5dffd090e6a300944",
"sha256": "4122e2786d8a21eeb47cb9e2eb3a6fd758280e6b3e873844f44e01a3bb5fda1a"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d2ffcdba70182ec5dffd090e6a300944",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2431608,
"upload_time": "2023-03-25T20:59:28",
"upload_time_iso_8601": "2023-03-25T20:59:28.677078Z",
"url": "https://files.pythonhosted.org/packages/5b/8a/0038590a16f4a4992064b06a5e39e690442b8801774935effda29392fa84/pikepdf-7.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d7e4be96c06e7b952ee192eb8b6337ff0705c7c1eae2ed1fc86c2802fa1b581",
"md5": "f8bbc079434b1185782d984260a69f2c",
"sha256": "24719a4d1a154afb5fac55920154928f4a68e9c38e30ab0218c632f4fbf448cc"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f8bbc079434b1185782d984260a69f2c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2328790,
"upload_time": "2023-03-25T20:59:30",
"upload_time_iso_8601": "2023-03-25T20:59:30.348282Z",
"url": "https://files.pythonhosted.org/packages/4d/7e/4be96c06e7b952ee192eb8b6337ff0705c7c1eae2ed1fc86c2802fa1b581/pikepdf-7.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4f2cf08f8f6f55ef30b3ec69841114930d0384312a5c5b0a058886e6c506d37",
"md5": "e2640eb3b9a25df2103408d80f3d0f5d",
"sha256": "966008bbe04ac3f282bc026e8f66903c254c048c01f8a5a06e4f55b4d36605df"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "e2640eb3b9a25df2103408d80f3d0f5d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2784776,
"upload_time": "2023-03-25T20:59:32",
"upload_time_iso_8601": "2023-03-25T20:59:32.833860Z",
"url": "https://files.pythonhosted.org/packages/c4/f2/cf08f8f6f55ef30b3ec69841114930d0384312a5c5b0a058886e6c506d37/pikepdf-7.1.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b24cc802b37da4f96734d46b0a85a18fb893b542a4425cf46c87fa67b1d6171",
"md5": "7ccca3f2f44378b187cdf83ec0bd33fc",
"sha256": "ca1a654a97d3d0f3340f934420c8c3a5522e43bb97ed25e31f06b618da9d64cd"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "7ccca3f2f44378b187cdf83ec0bd33fc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3266143,
"upload_time": "2023-03-25T20:59:34",
"upload_time_iso_8601": "2023-03-25T20:59:34.599889Z",
"url": "https://files.pythonhosted.org/packages/3b/24/cc802b37da4f96734d46b0a85a18fb893b542a4425cf46c87fa67b1d6171/pikepdf-7.1.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0608e910a0cf537a895e32d006cdf00944ab38487356fbe706f831a55e38f44",
"md5": "b594f9710da3b785c7034102d1c1b29c",
"sha256": "17656a15b9ff5868869a79ff40765689a6705d2584e8ab63aff1d0365652b6f1"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b594f9710da3b785c7034102d1c1b29c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2920151,
"upload_time": "2023-03-25T20:59:37",
"upload_time_iso_8601": "2023-03-25T20:59:37.022421Z",
"url": "https://files.pythonhosted.org/packages/b0/60/8e910a0cf537a895e32d006cdf00944ab38487356fbe706f831a55e38f44/pikepdf-7.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b88fa4adca1828797dc612a19079ed342a513441b09a6f41416102d268bcb0bd",
"md5": "3fafda4f7e360530034390ef7c48f1d2",
"sha256": "e87b6a149e39598451d526493ec16f50b67ea899888ee96c14c1545eb1115c53"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3fafda4f7e360530034390ef7c48f1d2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2188611,
"upload_time": "2023-03-25T20:59:38",
"upload_time_iso_8601": "2023-03-25T20:59:38.678783Z",
"url": "https://files.pythonhosted.org/packages/b8/8f/a4adca1828797dc612a19079ed342a513441b09a6f41416102d268bcb0bd/pikepdf-7.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0877f412b4b4b9bba7ce6969f400aabc3c5223c02efa43ee09a6da0035ea9bf3",
"md5": "3d2f649bc3aaf2231bb19650e35fe4a2",
"sha256": "d8a8d24fef8802899f8a6aa89ab2d119da7c6acfaa978bdfdc76854854680a7f"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3d2f649bc3aaf2231bb19650e35fe4a2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2432480,
"upload_time": "2023-03-25T20:59:41",
"upload_time_iso_8601": "2023-03-25T20:59:41.062592Z",
"url": "https://files.pythonhosted.org/packages/08/77/f412b4b4b9bba7ce6969f400aabc3c5223c02efa43ee09a6da0035ea9bf3/pikepdf-7.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "884424537487edff6042cc96b9433b9d5095832bc5c16136e0da3ec3df709852",
"md5": "cac1bb633be46adb7e7425caa8e3da89",
"sha256": "a0cca81a93b9486d98335b310fd1352ec62197bf9e3bf2774b822d5d862bde41"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cac1bb633be46adb7e7425caa8e3da89",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2331090,
"upload_time": "2023-03-25T20:59:42",
"upload_time_iso_8601": "2023-03-25T20:59:42.935152Z",
"url": "https://files.pythonhosted.org/packages/88/44/24537487edff6042cc96b9433b9d5095832bc5c16136e0da3ec3df709852/pikepdf-7.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56a650a5ab21230ecf9bfb3753cd5744ee80c8e955473cb46c54e1a2a242e6cd",
"md5": "40018769317ca1d88e4ba791b6824797",
"sha256": "db2e4e37a226aac13f6000b22612a8ccfb5764f34ad2b48c39eb38b3bb7cfb35"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "40018769317ca1d88e4ba791b6824797",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2784299,
"upload_time": "2023-03-25T20:59:44",
"upload_time_iso_8601": "2023-03-25T20:59:44.703309Z",
"url": "https://files.pythonhosted.org/packages/56/a6/50a5ab21230ecf9bfb3753cd5744ee80c8e955473cb46c54e1a2a242e6cd/pikepdf-7.1.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f6ade404bbc75af9c16c9c9de6a45de2ab5b6f1f59ecb111dfdb8d4e46fc37e",
"md5": "cf617ce2367a04268081e00589bee107",
"sha256": "1b64ae8d9b35713b317d7a4f429c14202ff9a2c5d63c8200b4fc1401e52c7e10"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "cf617ce2367a04268081e00589bee107",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3248530,
"upload_time": "2023-03-25T20:59:46",
"upload_time_iso_8601": "2023-03-25T20:59:46.517321Z",
"url": "https://files.pythonhosted.org/packages/0f/6a/de404bbc75af9c16c9c9de6a45de2ab5b6f1f59ecb111dfdb8d4e46fc37e/pikepdf-7.1.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9dd6d0c35f940585e2b2874472d47abf786e211e9bc7dcafe582fff304dbde28",
"md5": "c25650ab02503ab4e481f0b4a1b2b7c2",
"sha256": "09e142c484179873249f5c8fc50b8a5e66801feb81fc5111463b36b8396faf13"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c25650ab02503ab4e481f0b4a1b2b7c2",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 2917591,
"upload_time": "2023-03-25T20:59:48",
"upload_time_iso_8601": "2023-03-25T20:59:48.251798Z",
"url": "https://files.pythonhosted.org/packages/9d/d6/d0c35f940585e2b2874472d47abf786e211e9bc7dcafe582fff304dbde28/pikepdf-7.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c248b4a19d9c2fe2e340de68696bd7932e8388183086c35afa11f9b72267639",
"md5": "4043151685560781b71a0698c84c12d1",
"sha256": "e7cfd1bc95fdcece892b2506a9b9229d82a72845e74aa13c6e9578f767da41d1"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4043151685560781b71a0698c84c12d1",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 2392013,
"upload_time": "2023-03-25T20:59:49",
"upload_time_iso_8601": "2023-03-25T20:59:49.795789Z",
"url": "https://files.pythonhosted.org/packages/4c/24/8b4a19d9c2fe2e340de68696bd7932e8388183086c35afa11f9b72267639/pikepdf-7.1.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0bbd5da82fcedbf28209e981f035fe294d63f89949f67fff8ff172a8303e95fe",
"md5": "423de5455dc8f11424a6b0b300f0ca59",
"sha256": "6e95d872385d7226f48ced00b2f56f1c6fd963d1729fa48baf697f6e98748163"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "423de5455dc8f11424a6b0b300f0ca59",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 2281373,
"upload_time": "2023-03-25T20:59:52",
"upload_time_iso_8601": "2023-03-25T20:59:52.232718Z",
"url": "https://files.pythonhosted.org/packages/0b/bd/5da82fcedbf28209e981f035fe294d63f89949f67fff8ff172a8303e95fe/pikepdf-7.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6eb02fce83051f55ad03907decaf17b861bb9fd7486136a1afe8c8c6a02e8410",
"md5": "89a9c9cc43e9e8f2c1847897a77a25a5",
"sha256": "5c5ec0c28b0b01aa5a306fc4be45e9948a4f9699f250c68495e279f02fdee0d0"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "89a9c9cc43e9e8f2c1847897a77a25a5",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 3265745,
"upload_time": "2023-03-25T20:59:54",
"upload_time_iso_8601": "2023-03-25T20:59:54.736949Z",
"url": "https://files.pythonhosted.org/packages/6e/b0/2fce83051f55ad03907decaf17b861bb9fd7486136a1afe8c8c6a02e8410/pikepdf-7.1.2-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b04504c09c5ba23b1e2c0591d0d30e760bca0d6ab90faedf6bb0a1f57f475489",
"md5": "ff3e915252601dbd90c76c3b3a0867c4",
"sha256": "1937f88458f183346d863cca71d9c4ea31792db38feba331fde8342473654330"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ff3e915252601dbd90c76c3b3a0867c4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2917499,
"upload_time": "2023-03-25T20:59:56",
"upload_time_iso_8601": "2023-03-25T20:59:56.461044Z",
"url": "https://files.pythonhosted.org/packages/b0/45/04c09c5ba23b1e2c0591d0d30e760bca0d6ab90faedf6bb0a1f57f475489/pikepdf-7.1.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6eec8dbe6ab915bc36445b5e123b0d4c6266077511deb11d4e19fa8ff40352b7",
"md5": "5ff505aa791311929a8859eecb6e707b",
"sha256": "98ccba51e3a0575d7ffaedc61b58fc10fca28151e2429825a36461253485f45d"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5ff505aa791311929a8859eecb6e707b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2398699,
"upload_time": "2023-03-25T20:59:58",
"upload_time_iso_8601": "2023-03-25T20:59:58.946878Z",
"url": "https://files.pythonhosted.org/packages/6e/ec/8dbe6ab915bc36445b5e123b0d4c6266077511deb11d4e19fa8ff40352b7/pikepdf-7.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3d17f8726d6a2ca74022ab6b44e4d151601535bdcb0f5e59c9ddfd3f8cd3ac0",
"md5": "45a50c7f4381a0276606418f4f06566d",
"sha256": "ac00e736ee8bc5e59ab7c72498bb895c43cd72bae3fa0cadc163663d578fefd4"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "45a50c7f4381a0276606418f4f06566d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2298324,
"upload_time": "2023-03-25T21:00:02",
"upload_time_iso_8601": "2023-03-25T21:00:02.725959Z",
"url": "https://files.pythonhosted.org/packages/b3/d1/7f8726d6a2ca74022ab6b44e4d151601535bdcb0f5e59c9ddfd3f8cd3ac0/pikepdf-7.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5e7fb86266f73b1a5bc186ddff5ce3f0e5c871dfe5d525dd654e42bdda3c92a",
"md5": "80125d36077e5968ce43d89839b0bd1e",
"sha256": "e35056389134d8ed7d85dce798f9f4b498221c9b640fad4f8f2f8462aaade512"
},
"downloads": -1,
"filename": "pikepdf-7.1.2-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "80125d36077e5968ce43d89839b0bd1e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3265644,
"upload_time": "2023-03-25T21:00:04",
"upload_time_iso_8601": "2023-03-25T21:00:04.550717Z",
"url": "https://files.pythonhosted.org/packages/b5/e7/fb86266f73b1a5bc186ddff5ce3f0e5c871dfe5d525dd654e42bdda3c92a/pikepdf-7.1.2-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4c4833162e3bc483e0b137736985a2bf866a010c169364cbde98145025afdbc",
"md5": "41581245132eef6cf0fd6fcfac3b3d23",
"sha256": "b177e8437fe8efdfb7a30c57f361cae1bf2054117856459ca6565c94d32cb5b5"
},
"downloads": -1,
"filename": "pikepdf-7.1.2.tar.gz",
"has_sig": false,
"md5_digest": "41581245132eef6cf0fd6fcfac3b3d23",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 2911232,
"upload_time": "2023-03-25T21:00:06",
"upload_time_iso_8601": "2023-03-25T21:00:06.320531Z",
"url": "https://files.pythonhosted.org/packages/d4/c4/833162e3bc483e0b137736985a2bf866a010c169364cbde98145025afdbc/pikepdf-7.1.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-03-25 21:00:06",
"github": false,
"gitlab": false,
"bitbucket": false,
"lcname": "pikepdf"
}