Skip to main content

PyMuPDF 1.23.0

logo

Release date: August 22, 2023

On PyPI since August 2016: Downloads

Author

Artifex, based on code by Jorj X. McKie and Ruikai Liu.

Introduction

PyMuPDF adds Python bindings and abstractions to MuPDF, a lightweight PDF, XPS, and eBook viewer, renderer, and toolkit. Both PyMuPDF and MuPDF are maintained and developed by Artifex Software, Inc.

MuPDF can access files in PDF, XPS, OpenXPS, CBZ, EPUB, MOBI and FB2 (eBooks) formats, and it is known for its top performance and exceptional rendering quality.

With PyMuPDF you can access files with extensions like .pdf, .xps, .oxps, .cbz, .fb2, .mobi or .epub. In addition, about 10 popular image formats can also be handled like documents: .png, .jpg, .bmp, .tiff, .svg etc.

Usage

For all supported document types (i.e. including images) you can

  • Decrypt the document.
  • Access meta information, links and bookmarks.
  • Render pages in raster formats (PNG and some others), or the vector format SVG.
  • Search for text.
  • Extract text and images.
  • Convert to other formats: PDF, (X)HTML, XML, JSON, text.
  • Do OCR (Optical Character Recognition) if Tesseract is installed.

To some degree, PyMuPDF can also be used as an image converter: it can read a range of input formats and can produce Portable Network Graphics (PNG), Portable Anymaps (PNM, etc.), Portable Arbitrary Maps (PAM), Adobe PostScript and Adobe Photoshop documents, making the use of other graphics packages obselete in these cases. But interfacing with e.g. PIL/Pillow for image input and output is easy as well.

For PDF documents, there exists a plethora of additional features: they can be created, joined or split up. Pages can be inserted, deleted, re-arranged or modified in many ways (including annotations and form fields).

  • Images and fonts can be extracted or inserted.

    You may want to have a look at this cool GUI example script, which lets you insert, delete, replace or re-position images under your visual control.

    If fontTools is installed, subsets can be built for eligible fonts based on their usage in the document. Especially for new PDFs, this can lead to significant file size reductions.

  • Embedded files are fully supported.

  • PDFs can be reformatted to support double-sided printing, posterizing, applying logos or watermarks

  • Password protection is fully supported: decryption, encryption, encryption method selection, permission level and user / owner password setting.

  • Support of the PDF Optional Content concept for images, text and drawings.

  • Low-level PDF structures can be accessed and modified.

  • Command line module "python -m fitz ...". A versatile utility with the following features

    • encryption / decryption / optimization
    • creation of sub-documents
    • document joining
    • image / font extraction
    • full support of embedded files
    • layout-preserving text extraction (all documents)

Have a look at the basic demos, the examples (which contain complete, working programs), and notebooks.

Documentation

Documentation is written using Sphinx and is available online. It is currently a combination of a reference guide and user manual.

  • You can view it online at Read the Docs. This site also provides download options for PDF.
  • For a quick start look at the tutorial and the recipes chapters.

The latest changelog can be viewed here.

Installation

PyMuPDF requires Python 3.8 or later.

For versions 3.8 and up, Python wheels exist for Windows (32bit and 64bit), Linux (64bit, Intel and ARM) and Mac OSX (64bit, Intel only), so it can be installed from PyPI in the usual way. To ensure pip support for the latest wheel platform tags, we strongly recommend to always upgrade pip first.

python -m pip install --upgrade pip
python -m pip install --upgrade pymupdf

There are no mandatory external dependencies. However, some optional features become available only if additional packages are installed:

  • Pillow for using pillow image output directly from PyMuPDF
  • fontTools for creating font subsets.
  • pymupdf-fonts contains some nice fonts for your text output.
  • Tesseract-OCR for optical character recognition in images and document pages. Tesseract is separate software, not a Python package. To enable OCR functions in PyMuPDF, the system environment variable "TESSDATA_PREFIX" must be defined and contain the tessdata folder name of the Tesseract installation location.

Older wheels - also with support for older Python versions - can be found here and on PyPI.

Note: If pip cannot find a wheel that is compatible with your platform, it will automatically build and install from source using the PyMuPDF sdist; this requires only that SWIG is installed on your system.

Alternative 'rebased' implementation.

A new implementation of PyMuPDF is available as module fitz_new.

Benefits

  • Access to the underlying MuPDF Python API.

    The MuPDF Python API is available as fitz_new.mupdf - this is not possible with native PyMuPDF, and can give useful flexibility to the user.

  • Simplified implementation.

    The underlying MuPDF C++/Python APIs' automated reference counting, automatic contexts, and native C++ and Python exceptions, make the implementation simpler than classic PyMuPDF.

    This also simplifies development of new PyMuPDF functionality.

  • Optional tracing of MuPDF C function calls using environment variables.

    This is a feature of the MuPDF C++ and Python APIs, which can be very useful during development and when reporting bugs. See: https://mupdf.readthedocs.io/en/latest/language-bindings.html#environmental-variables

  • Possible future support for multithreaded use.

    Classic PyMuPDF is explicitly single-threaded, but the MuPDF C++/Python APIs have automated per-thread contexts.

Known issues

  • import fitz_new is known to fail with a SEGV on Windows with Python-3.10.

Secondary wheel PyMuPDFb

Installation of PyMuPDF with pip will automatically install a second wheel called PyMuPDFb containing Python-independent libraries.

License and Copyright

PyMuPDF and MuPDF are available under both, open-source AGPL and commercial license agreements.

Please read the full text of the AGPL license agreement (which is also included here in file COPYING) to ensure that your use case complies with the guidelines of this license. If you determine you cannot meet the requirements of the AGPL, please contact Artifex for more information regarding a commercial license.

Artifex is the exclusive commercial licensing agent for MuPDF.

Artifex, the Artifex logo, MuPDF, and the MuPDF logo are registered trademarks of Artifex Software Inc. PyMuPDF and the PyMuPDF logo are trademarks of Artifex Software, Inc. © 2022 Artifex Software, Inc. All rights reserved.

Contact

Please use the Discussions menu for questions, comments, or asking for help, and submit issues here.

Release files for pymupdf 1.23.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pymupdf 1.23.0
File Size Uploaded
PyMuPDF-1.23.0.tar.gz 60.5 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymupdf 1.23.0
File
PyMuPDF-1.23.0-cp311-none-win_amd64.whl CPython 3.11 none Windows x86-64 Details
PyMuPDF-1.23.0-cp311-none-win32.whl CPython 3.11 none Windows x86-32 Details
PyMuPDF-1.23.0-cp311-none-manylinux2014_x86_64.whl CPython 3.11 none Linux glibc 2.17+ x86-64 Details
PyMuPDF-1.23.0-cp311-none-manylinux2014_aarch64.whl CPython 3.11 none Linux glibc 2.17+ ARM64 Details
PyMuPDF-1.23.0-cp311-none-macosx_11_0_arm64.whl CPython 3.11 none macOS 11.0+ ARM64 Details
PyMuPDF-1.23.0-cp311-none-macosx_10_9_x86_64.whl CPython 3.11 none macOS 10.9+ x86-64 Details
PyMuPDF-1.23.0-cp310-none-win_amd64.whl CPython 3.10 none Windows x86-64 Details
PyMuPDF-1.23.0-cp310-none-win32.whl CPython 3.10 none Windows x86-32 Details
PyMuPDF-1.23.0-cp310-none-manylinux2014_x86_64.whl CPython 3.10 none Linux glibc 2.17+ x86-64 Details
PyMuPDF-1.23.0-cp310-none-manylinux2014_aarch64.whl CPython 3.10 none Linux glibc 2.17+ ARM64 Details
PyMuPDF-1.23.0-cp310-none-macosx_11_0_arm64.whl CPython 3.10 none macOS 11.0+ ARM64 Details
PyMuPDF-1.23.0-cp310-none-macosx_10_9_x86_64.whl CPython 3.10 none macOS 10.9+ x86-64 Details
PyMuPDF-1.23.0-cp39-none-win_amd64.whl CPython 3.9 none Windows x86-64 Details
PyMuPDF-1.23.0-cp39-none-win32.whl CPython 3.9 none Windows x86-32 Details
PyMuPDF-1.23.0-cp39-none-manylinux2014_x86_64.whl CPython 3.9 none Linux glibc 2.17+ x86-64 Details
PyMuPDF-1.23.0-cp39-none-manylinux2014_aarch64.whl CPython 3.9 none Linux glibc 2.17+ ARM64 Details
PyMuPDF-1.23.0-cp39-none-macosx_11_0_arm64.whl CPython 3.9 none macOS 11.0+ ARM64 Details
PyMuPDF-1.23.0-cp39-none-macosx_10_9_x86_64.whl CPython 3.9 none macOS 10.9+ x86-64 Details
PyMuPDF-1.23.0-cp38-none-win_amd64.whl CPython 3.8 none Windows x86-64 Details
PyMuPDF-1.23.0-cp38-none-win32.whl CPython 3.8 none Windows x86-32 Details
PyMuPDF-1.23.0-cp38-none-manylinux2014_x86_64.whl CPython 3.8 none Linux glibc 2.17+ x86-64 Details
PyMuPDF-1.23.0-cp38-none-manylinux2014_aarch64.whl CPython 3.8 none Linux glibc 2.17+ ARM64 Details
PyMuPDF-1.23.0-cp38-none-macosx_11_0_arm64.whl CPython 3.8 none macOS 11.0+ ARM64 Details
PyMuPDF-1.23.0-cp38-none-macosx_10_9_x86_64.whl CPython 3.8 none macOS 10.9+ x86-64 Details

Total release size: 150.6 MB

Release files / PyMuPDF-1.23.0.tar.gz

Download URL PyMuPDF-1.23.0.tar.gz
Size 60.5 MB
Tags Source
SHA-256 checksum
How to use checksums
bbf2434aaacfb2a764c7508f7f491e9d5dd7f9942d403bcf9789362cbfa2e841
BLAKE2b-256 checksum
How to use checksums
9a5b2574d4060589f83ebc806c2aeaa3130ef308b1ac2e3969a95514d8326d5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp311-none-win_amd64.whl

Download URL PyMuPDF-1.23.0-cp311-none-win_amd64.whl
Size 3.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
50688416418f3f66c29d8ebc146d9df4f5b9f0bac580a101b5f26e00971b2af3
BLAKE2b-256 checksum
How to use checksums
0a94cb972bc34e5fcfe0b9eff71e05f5504ade42fa434aa694efc6601849fde6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp311-none-win32.whl

Download URL PyMuPDF-1.23.0-cp311-none-win32.whl
Size 3.2 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
032d2d936c0762216b007c10e9c6d8deb643e81ddddc3a5dba90536a7b0ce6aa
BLAKE2b-256 checksum
How to use checksums
11d8179ff9038513a07d60f7f9a1277c78cdd04814cdeb818c06c37b6aae69e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp311-none-manylinux2014_x86_64.whl

Download URL PyMuPDF-1.23.0-cp311-none-manylinux2014_x86_64.whl
Size 4.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5c6fbc91cf2e19ac1e04af657700c9a0025ba149f1c0dc368a143382b5b1bf47
BLAKE2b-256 checksum
How to use checksums
cfaf1733fc02e592eb02eccab32e7268f174822a3a99a42039308ea7605cf481
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp311-none-manylinux2014_aarch64.whl

Download URL PyMuPDF-1.23.0-cp311-none-manylinux2014_aarch64.whl
Size 3.8 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bdcaf4fa13ac99c88a03671c82a4033b122e28c6aca000b97704bb64aee84d41
BLAKE2b-256 checksum
How to use checksums
04963510b78f8727902302ffc00de33268970e4d740d893af566a19585bd9464
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp311-none-macosx_11_0_arm64.whl

Download URL PyMuPDF-1.23.0-cp311-none-macosx_11_0_arm64.whl
Size 3.7 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
807758cbd33e847b038bc684b09d936c80bc7742bd3cde2107f61a17ec4d4773
BLAKE2b-256 checksum
How to use checksums
b837e24321101b771b57f476bb734a53e693ac7bc4bd8d73578cc753becad7b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp311-none-macosx_10_9_x86_64.whl

Download URL PyMuPDF-1.23.0-cp311-none-macosx_10_9_x86_64.whl
Size 4.1 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
eae7d4401c6f8e4d5ccea904794ad959c85dcd296aabe115fd1150886b8a610f
BLAKE2b-256 checksum
How to use checksums
0f855a753f06cadd9eb0e54b95b898f9a717bb1f7d5bd1b83d064523237338ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp310-none-win_amd64.whl

Download URL PyMuPDF-1.23.0-cp310-none-win_amd64.whl
Size 3.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
690a66b77d4d09b278cc4c2273f62c617f7fb784003cab098c4a32432575cdbf
BLAKE2b-256 checksum
How to use checksums
dbfb9d22431511ad1a07765cfdd145115ab581b2abd1f26806c50cf903e7804b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp310-none-win32.whl

Download URL PyMuPDF-1.23.0-cp310-none-win32.whl
Size 3.2 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
de7314cfcc2bc72d0594260a8d339f8432eec1796d60e46bde1ade65af702b97
BLAKE2b-256 checksum
How to use checksums
8f693381145d996b8b1adef11db7b0ba8a5f2cd3b712b5129b2b21391deeb5d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp310-none-manylinux2014_x86_64.whl

Download URL PyMuPDF-1.23.0-cp310-none-manylinux2014_x86_64.whl
Size 4.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
320a96cbba408ef9987f35568930d68ce24c1ff6356afbdd47893e89de81dace
BLAKE2b-256 checksum
How to use checksums
c434df43f2d7b3eb5eae8c61a62c75b3ca0a0350ba4aa1c18eea9c787782a920
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp310-none-manylinux2014_aarch64.whl

Download URL PyMuPDF-1.23.0-cp310-none-manylinux2014_aarch64.whl
Size 3.8 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a07609f36b1b64618c9227c8361c2863a659ddb6aaa5d861f9552853b7694305
BLAKE2b-256 checksum
How to use checksums
87787f15e5a641972891a8bf1f98c4bcf874a95ff36e30b3cc8ffaff84e6b1f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp310-none-macosx_11_0_arm64.whl

Download URL PyMuPDF-1.23.0-cp310-none-macosx_11_0_arm64.whl
Size 3.7 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6217082c7cc6ccaa0daee11db45fc2b0bff0320d2f1d0d7e528e39ecf98a2741
BLAKE2b-256 checksum
How to use checksums
b53f096cc5b6e0e2e4d585c5418eb66ea64d6c9c7ca718aa629e164a0dc335b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp310-none-macosx_10_9_x86_64.whl

Download URL PyMuPDF-1.23.0-cp310-none-macosx_10_9_x86_64.whl
Size 4.1 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2303bab591c0122e0134b229a730c03580064ce47bc758ea91b4aa69764c1e46
BLAKE2b-256 checksum
How to use checksums
30f1863ce4cf461cd27e7581a73d53f768481a60b07cab9ce5e1117ac52b3e68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp39-none-win_amd64.whl

Download URL PyMuPDF-1.23.0-cp39-none-win_amd64.whl
Size 3.5 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
aae93a1832aec1a874bc5beb08b3d121dac101327764a6e8dce2d593d99aea4b
BLAKE2b-256 checksum
How to use checksums
af5e9a80d4de3572c621493bbf4e5a5532dcc33bce6b853d0c8e21db4963c241
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp39-none-win32.whl

Download URL PyMuPDF-1.23.0-cp39-none-win32.whl
Size 3.2 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
36bbd50ccac0be1a1bb4e1e6a20dd943352125bcfa696345bf8b0cb1a8270172
BLAKE2b-256 checksum
How to use checksums
c2e5c7d253a20659e460ef7ed9ac3bad9173dd1ff4f8a63ba0dfdd62cf9a0116
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp39-none-manylinux2014_x86_64.whl

Download URL PyMuPDF-1.23.0-cp39-none-manylinux2014_x86_64.whl
Size 4.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5b4ff4ba0049b354d0b585fabef9ef9a419139cebddbaa35392d4c3b8a99507c
BLAKE2b-256 checksum
How to use checksums
60016125808f2b870d67ab300c4e38cc59a6369501eef57291ed065e91cbc5c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp39-none-manylinux2014_aarch64.whl

Download URL PyMuPDF-1.23.0-cp39-none-manylinux2014_aarch64.whl
Size 3.8 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d3b74f230e405fd43d4e55ef330854129b5e52f8489175fb9cfad79a38ae982d
BLAKE2b-256 checksum
How to use checksums
4bb2951d611924a3ad3ed80a7a3f3f141cc932eaec142eb12bca6ada8ff295af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp39-none-macosx_11_0_arm64.whl

Download URL PyMuPDF-1.23.0-cp39-none-macosx_11_0_arm64.whl
Size 3.7 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4276897bdeab2bc06092993530b6266290b7962de3cee4b1f85b5eb6ca876082
BLAKE2b-256 checksum
How to use checksums
4e26ea836a811c673cc205a5f9d2923008b2723b9a7499e467a34962d1b7bafe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp39-none-macosx_10_9_x86_64.whl

Download URL PyMuPDF-1.23.0-cp39-none-macosx_10_9_x86_64.whl
Size 4.1 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
814b03366928d0d9215a0d5f63e76b9668b608dfc40c23023f1e3034800464d9
BLAKE2b-256 checksum
How to use checksums
d25660a11d035a46fb45aadc0baadc598ecc48e724606733f6adbef2fdb84b32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp38-none-win_amd64.whl

Download URL PyMuPDF-1.23.0-cp38-none-win_amd64.whl
Size 3.5 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
855ed699f7c6b08501fca6e16508e5e2086498edc950e043b2e3f8c77fef452b
BLAKE2b-256 checksum
How to use checksums
1fe1881ed1ece52f45c510885e349459cea188c6b880d3cb5d2ef8e6dc8d124f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp38-none-win32.whl

Download URL PyMuPDF-1.23.0-cp38-none-win32.whl
Size 3.2 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
c22060f1fc019589ef7b16283bb02100ce7f43c6b3ee03cca9139d6297e19ea7
BLAKE2b-256 checksum
How to use checksums
af089c5a819950fe4b2f22e9a86828f9807459c92b5eec44a725a1443a37bbb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp38-none-manylinux2014_x86_64.whl

Download URL PyMuPDF-1.23.0-cp38-none-manylinux2014_x86_64.whl
Size 4.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
07ec27079f291ee98ac00dfacca54e5b7bbea4fb238e698d4c4262b569a141f7
BLAKE2b-256 checksum
How to use checksums
8601a3b4df66cd5a9361011d9654d85413e19e349958c8324e734e4e9244f21c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp38-none-manylinux2014_aarch64.whl

Download URL PyMuPDF-1.23.0-cp38-none-manylinux2014_aarch64.whl
Size 3.8 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
747b13007c49f96783d0ae05d81561b6638bdb7f2297e9938ce15f7466888ccb
BLAKE2b-256 checksum
How to use checksums
a9196feb4177e751bcb7fa75f6cbac6a704d8725fb431fd47043d022a1cd935b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp38-none-macosx_11_0_arm64.whl

Download URL PyMuPDF-1.23.0-cp38-none-macosx_11_0_arm64.whl
Size 3.7 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
70814d5bfc24ae1933518c3b1b2af757405c504de82209d5ddb1d715c13029e3
BLAKE2b-256 checksum
How to use checksums
8961656980c4c385612e7851c2d61e997ecf8ed7a6714bbd83c6eff8f4902aab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / PyMuPDF-1.23.0-cp38-none-macosx_10_9_x86_64.whl

Download URL PyMuPDF-1.23.0-cp38-none-macosx_10_9_x86_64.whl
Size 4.1 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d90043a94a95898c9cd2d5c8084f049c8882579568e75d18f778b28a4c4faacc
BLAKE2b-256 checksum
How to use checksums
db067cd1d62237435c22a389a4c4eb8dcc86feddb1db75aafa013da78d5dddf3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release history Release notifications | RSS feed

1.27.2

9 release files

1.27.1

8 release files

1.26.7

8 release files

1.26.5

8 release files

1.26.4

8 release files

1.26.1

8 release files

1.26.0

8 release files

1.25.5

8 release files

1.25.4

8 release files

1.25.2

8 release files

1.25.1

8 release files

This release

1.23.0 This release

25 release files

1.10.0

1.9.2

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page