Skip to main content

pypdfium2

pypdfium2 is an ABI-level Python 3 binding to PDFium, a powerful and liberal-licensed library for PDF rendering, inspection, manipulation and creation.

It is built with ctypesgen and external PDFium binaries. The custom setup infrastructure provides a seamless packaging and installation process. A wide range of platforms is covered with pre-built packages. Check out our platform support page.

pypdfium2 includes helpers to simplify common use cases, while the raw PDFium API (ctypes) remains accessible as well.

Installation

From PyPI (recommended)

python -m pip install -U pypdfium2

If available for your platform, this will use a pre-built wheel package, which is the easiest way of installing pypdfium2. Otherwise, setup code will run. If your platform is not covered with pre-built binaries, this will look for system pdfium, or attempt to build pdfium from source.

JavaScript/XFA builds

pdfium-binaries also offer V8 (JavaScript) / XFA enabled builds. If you need them, do e.g.:

PDFIUM_PLATFORM=auto-v8 pip install -v pypdfium2 --no-binary pypdfium2

This will bypass wheels and run setup, while requesting use of V8 builds through the PDFIUM_PLATFORM=auto-v8 environment setting. See below for more info.

Optional runtime dependencies

As of this writing, pypdfium2 does not require any mandatory runtime dependencies, apart from Python and PDFium itself (which is commonly bundled).

However, some optional support model / CLI features need additional packages:

  • Pillow (module PIL) is a popular imaging library for Python. pypdfium2 provides convenience adapters to translate between raw bitmap buffers and PIL images. It also uses PIL for some command-line functionality (e.g. image saving).
  • NumPy is a library for scientific computing. As with Pillow, pypdfium2 provides helpers to get a numpy array view of a raw bitmap.
  • opencv-python (module cv2) is an imaging library built around numpy arrays. It can be used in the rendering CLI to save with pypdfium2's numpy adapter.
  • If tabulate is installed, the CLI will give prettier output where tables are involved.

pypdfium2 tries to defer imports of optional dependencies until they are actually needed, so there should be no startup overhead if you don't use them.

From the repository / With setup

Note, unlike helpers, pypdfium2's setup is not bound by API stability promises, so it may change any time.

Setup Dependencies

System

  • gcc or clang as C pre-processor (or set $CPP to whatever pre-processor command you want to use)
  • git (Used e.g. to determine the latest pdfium-binaries version, to get git describe info, or to check out pdfium on sourcebuild. Might be optional on default setup.)
  • gh >= 2.47.0 (optional; used to verify pdfium-binaries build attestations)

Python

Python dependencies should be automatically installed, unless --no-build-isolation is passed to pip.

[!NOTE] pypdfium2 and its ctypesgen fork are developed in sync, i.e. each pypdfium2 commit ought to be coupled with the then HEAD of pypdfium2-ctypesgen.
Our release sdists, and latest pypdfium2 from git, will automatically use matching ctypesgen.
However, when using a non-latest commit, you'll have to set up the right ctypesgen version on your own, and install pypdfium2 without build isolation.

Get the code

git clone "https://github.com/pypdfium2-team/pypdfium2.git"
cd pypdfium2/

Default setup

# In the pypdfium2/ directory
python -m pip install -v .

This will invoke pypdfium2's setup.py. Typically, this means a binary will be downloaded from pdfium-binaries and bundled into pypdfium2, and ctypesgen will be called on pdfium headers to produce the bindings interface.

pdfium-binaries offer GitHub build provenance attestations, so it is highly recommended that you install the gh CLI for our setup to verify authenticity of the binaries.

If no pre-built binaries are available for your platform, setup will look for system pdfium, or attempt to build pdfium from source.

pip options of interest
  • -v: Verbose logging output. Useful for debugging.
  • -e: Install in editable mode, so the installation points to the source tree. This way, changes directly take effect without needing to re-install. Recommended for development.
  • --no-build-isolation: Do not isolate setup in a virtual env; use the main env instead. This renders pyproject.toml [build-system] inactive, so setup deps must be prepared by caller. Useful to install custom versions of setup deps, or as speedup when installing repeatedly.
  • --no-binary pypdfium2: Do not use binary wheels when installing from PyPI – instead, use the sdist and run setup. Note, this option is improperly named, as pypdfium2's setup will attempt to use binaries all the same. If you want to prevent that, set e.g. PDFIUM_PLATFORM=fallback to achieve the same behavior as if there were no pdfium-binaries for the host. Or if you just want to package a source distribution, set PDFIUM_PLATFORM=sdist.
  • --pre to install a beta release, if available.

With system pdfium

PDFIUM_PLATFORM="system-search" python -m pip install -v .

Look for a system-provided pdfium shared library, and bind against it.

Standard, portable ctypes.util.find_library() means will be used to probe for system pdfium at setup time, and the result will be hardcoded into the bindings. Alternatively, set $PDFIUM_BINARY to the path of the out-of-tree DLL to use.

Assuming system pdfium was found, we will look for pdfium headers from which to generate the bindings (e.g. in /usr/include). If the headers are in a location not recognized by our code, set $PDFIUM_HEADERS to the directory in question.

Also, we try to determine the pdfium version, either from the library filename itself, or via pkg-config.1 Where this does not work, you can pass the version alongside the setup target, e.g. PDFIUM_PLATFORM=system-search:XXXX, where XXXX is the pdfium build version. If the version is not known in the end, NaN placeholders will be set.

If the version is known but no headers were found, they will be downloaded from upstream. If neither headers nor version are known (or ctypesgen is not installed), the reference bindings will be used as a last resort. This is ABI-unsafe and thus discouraged.

In case find_library() failed to find pdfium, we may do additional, custom search, such as checking for a pdfium shared library included with LibreOffice, and – if available – determining its version.
Our search heuristics currently expect a Linux-like filesystem hierarchy (e.g. /usr), but contributions for other systems are welcome.

[!CAUTION] When pypdfium2 is installed with system pdfium, bindings ought to be re-generated with the new headers whenever the out-of-tree pdfium DLL is updated, for ABI safety reasons.2
For distributors, we suggest that you use versioned libraries (e.g. libpdfium.so.140.0.7269.0) or similar concepts that enforce binary/bindings version match, so outdated bindings will safely stop working with a meaningful error, rather than silently continue unsafely, at risk of hard crashes.

Related targets

There is also a system-generate:$VERSION target, to produce system pdfium bindings in a host-independent fashion. This will call find_library() at runtime, and may be useful for packaging.

Further, you can set just system to consume pre-generated files from the data/system staging directory. See the section on caller-provided data files for more info.

With self-built pdfium

You can also install pypdfium2 with a self-compiled pdfium shared library, by placing it in data/sourcebuild/ along with a bindings interface and version info, and setting the PDFIUM_PLATFORM="sourcebuild" directive to use these files on setup.

This project comes with two scripts to automate the build process: build_toolchained.py and build_native.py (in setupsrc/).

  • build_toolchained is based on the build instructions in pdfium's Readme, and uses Google's toolchain (this means foreign binaries and sysroots). This results in a heavy checkout process that may take a lot of time and space. Dependency libraries are vendored. An advantage of the toolchain is its powerful cross-compilation support (including symbol reversioning).
  • build_native is an attempt to address some shortcomings of the toolchained build. It performs a lean, self-managed checkout, and is tailored towards native compilation. It uses system dependencies (compiler/gn/ninja), which must be installed by the caller beforehand. This script should theoretically work on arbitrary Linux architectures. As a drawback, this process is not supported or even documented upstream, so it might be hard to maintain.

The native sourcebuild can either use system libraries, or pdfium's vendored libraries. When invoked directly, by default, system libraries will be used. However, when invoked through fallback setup, vendored libraries are used instead. Use the --vendor ... and --no-vendor ... options to control vendoring on a per-library basis. See build_native.py --help for details.

You can also set PDFIUM_PLATFORM to sourcebuild-native or sourcebuild-toolchained to trigger either build script through setup, and pass command-line flags with $BUILD_PARAMS. However, for simplicity, both scripts/subtargets share just sourcebuild as staging directory.

Dependencies:

  • When building with system libraries, the following packages need to be installed (including development headers): freetype, icu-uc, lcms2, libjpeg, libopenjp2, libpng, libtiff, zlib, harfbuzz (and maybe glib to satisfy the build system).
  • You might also want to know that pdfium bundles agg, abseil, fast_float, simdutf.
  • When building with system tools, gn (generate-ninja), ninja, and a compiler are needed. If available, the compiler defaults to GCC, but Clang should also work if you set up some symlinks, and make sure you have the libclang_rt builtins or pass --no-libclang-rt.

[!IMPORTANT] PDFium requires recent GN. Outdated GN may fail with the most obscure errors.
With build_native.py, we recommend that you install gn-dist from PyPI, which is also maintained by pypdfium2-team:

python3 -m pip install --group gn

Using the dependency group from our pyproject.toml will ensure you install a GN version appropriate to the PDFium version pinned by pypdfium2's build scripts.

GN packages provided by stable distributions are typically too old for PDFium, so we do not recommend installing GN with a system package manager like apt.

With build_toolchained.py, gclient-orchestrated checkout should automatically provide you with a GN build from Google's CIPD. If it does not (e.g. because you are on an unhandled platform), also use gn-dist. If there are no wheels for your platform, sourcebuild fallback will step in.

To do the toolchained build, you'd run something like:

# call build script with --help to list options
python ./setupsrc/build_toolchained.py
PDFIUM_PLATFORM="sourcebuild" python -m pip install -v .

Or for the native build, on Ubuntu 24.04, you could do e.g.:

# Install dependencies
python -m pip install --group gn  # see above
sudo apt-get install ninja-build libfreetype-dev liblcms2-dev libjpeg-dev libopenjp2-7-dev libpng-dev libtiff-dev zlib1g-dev libicu-dev libglib2.0-dev libharfbuzz-dev  # generate-ninja
# Build with GCC
python ./setupsrc/build_native.py --compiler gcc
# Alternatively, build with Clang
sudo apt-get install llvm lld
VERSION=18
ARCH=$(uname -m)
sudo ln -s "/usr/lib/clang/$VERSION/lib/linux" "/usr/lib/clang/$VERSION/lib/$ARCH-unknown-linux-gnu"
sudo ln -s "/usr/lib/clang/$VERSION/lib/linux/libclang_rt.builtins-$ARCH.a" "/usr/lib/clang/$VERSION/lib/linux/libclang_rt.builtins.a"
python ./setupsrc/build_native.py --compiler clang
# Install
PDFIUM_PLATFORM="sourcebuild" python -m pip install -v .

The native sourcebuild currently supports Linux (or similar environments). macOS and Windows are not handled, as we do not have access to these systems, and working over CI did not turn out feasible – use the toolchain-based build for now. Community help / pull requests to extend platform support would be welcome.

cibuildwheel

Sourcebuild can be run through cibuildwheel. For targets configured in our pyproject.toml, the basic invocation is as simple as p.ex.

CIBW_BUILD="cp314-manylinux_x86_64" cibuildwheel

A more involved use case could look like this:

CIBW_BUILD="cp314-musllinux_s390x" CIBW_ARCHS=s390x CIBW_CONTAINER_ENGINE=podman TEST_PDFIUM=1 cibuildwheel

See also our cibuildwheel workflow. For more options, consult the comprehensive upstream documentation.

On Linux, this will use the native sourcebuild with vendored dependency libraries. On Windows and macOS, the toolchained sourcebuild is used.

Bear in mind that cibuildwheel copies the project directory into a container, not taking .gitignore rules into account. Thus, it is advisable to make a fresh checkout of pypdfium2 before running cibuildwheel. In particular, a toolchained checkout of pdfium within pypdfium2 is problematic, and will cause a halt on the Copying project into container... step. For development, make sure the fresh checkout is in sync with the working copy.

Concerning Linux, cibuildwheel requires either Docker or Podman. On the author's version of Fedora, Docker can be installed as follows:

sudo dnf in moby-engine  # this provides the docker command
sudo systemctl start docker
sudo systemctl enable docker
sudo usermod -aG docker $USER
# then reboot (re-login might also suffice)

For other ways of installing Docker, refer to the cibuildwheel docs (Setup, Platforms) and the links therein.

[!TIP] Note that pdfium itself has first-class cross-compilation support. For platforms covered upstream, we tend to sidestep cibuildwheel and cross-compile pdfium using its own toolchain instead, e.g.:

# assuming cross-compilation dependencies are installed
python setupsrc/build_toolchained.py --target-cpu arm
PDFIUM_PLATFORM=sourcebuild CROSS_TAG="manylinux_2_17_armv7l" python -m build -wxn

This typically achieves a lower glibc requirement than we can with cibuildwheel, and is especially useful for platforms that are not available natively on CI.

With caller-provided data files

pypdfium2 is like any other Python project in essentials, except that it needs some data files: a pdfium DLL (either bundled or out-of-tree), a bindings interface (generated via ctypesgen), and pdfium version info (JSON).

The main point of pypdfium2's custom setup is to automate deployment of these files, in a way that suits end users/contributors as well as our PyPI packaging.

However, if you want to (or have to) forego this automation, you can also just supply these files yourself, as shown below. This allows to largely sidestep pypdfium2's own setup code.
The idea is basically to put your data files in a staging directory, data/sourcebuild or data/system (depending on whether you want to bundle or use system pdfium), and set the matching $PDFIUM_PLATFORM target to consume from that directory on setup.

This setup strategy should be inherently free of web requests. Please don't expect us to support the result, though. If you bring your own files, that's your own responsibility, and it is quite possible your version of pypdfium2 may turn out subtly different than ours.

# First, ask yourself: Do you want to bundle pdfium (in-tree), or use system
# pdfium (out-of-tree)? For bundling, set "sourcebuild", else set "system".
TARGET="sourcebuild"  # or "system"
STAGING_DIR="data/$TARGET"

# If you have decided for bundling, copy over the pdfium DLL in question.
# Otherwise, skip this step.
cp "$MY_BINARY_PATH" "$STAGING_DIR/libpdfium.so"

# Now, we will call ctypesgen to generate the bindings interface.
# Reminder: You'll want to use the pypdfium2-team fork of ctypesgen.
# It generates much cleaner bindings, and it's what our source expects
# (there may be subtle API differences in terms of output).
# How exactly you do this is down to you.
# See ctypesgen --help or base.py::run_ctypesgen() for further options.
ctypesgen --library pdfium --rt-libpaths $MY_RT_LIBPATHS --ct-libpaths $MY_CT_LIBPATHS \
--headers $MY_INCLUDE_DIR/fpdf*.h -o $STAGING_DIR/bindings.py [-D $MY_RAW_FLAGS]

# Then write the version file (fill the placeholders).
# Note, this is not a mature interface yet and might change any time!
# See also https://pypdfium2.readthedocs.io/en/stable/python_api.html#pypdfium2.version.PDFIUM_INFO
# major/minor/build/patch: integers forming the pdfium version being packaged
# n_commits/hash: git describe like post-tag info (0/null for release commit)
# origin: a string to identify the build
# flags: a comma-delimited list of pdfium feature flag strings
#        (e.g. "V8", "XFA") - may be empty for default build
cat > "$STAGING_DIR/version.json" <<END
{
  "major": $PDFIUM_MAJOR,
  "minor": $PDFIUM_MINOR,
  "build": $PDFIUM_BUILD,
  "patch": $PDFIUM_PATCH,
  "n_commits": $POST_TAG_COMMIT_COUNT,
  "hash": $POST_TAG_HASH,
  "origin": "$TARGET-$MY_ORIGIN",
  "flags": [$MY_SHORT_FLAGS]
}
END

# Finally, run setup (through pip, pyproject-build or whatever).
# The PDFIUM_PLATFORM value will instruct pypdfium2's setup to use the files
# we supplied, rather than to generate its own.
PDFIUM_PLATFORM=$TARGET python -m pip install --no-build-isolation -v .

Further setup info (formal summary)

This is a somewhat formal description of pypdfium2's setup capabilities. It is meant to sum up and complement the above documentation on specific sub-targets.

As it is hard to keep up with constantly evolving setup code, it is possible this documentation may be outdated/incomplete. Also keep in mind that these APIs could change any time, and are mainly of internal interest.

  • Binaries are stored in platform-specific sub-directories of data/, along with bindings and version information.

  • $PDFIUM_PLATFORM defines which binary to include on setup.

    • Format spec: [$PLATFORM][-v8][:$VERSION] ([] = segments, $CAPS = variables).
    • Examples: auto, auto:7269 auto-v8:7269 (auto may be substituted by an explicit platform name, e.g. linux_x64).
    • V8: If given, use the V8 (JavaScript) and XFA enabled pdfium binaries. Otherwise, use the regular (non-V8) binaries.
    • Version: If given, use the specified pdfium-binaries release. Otherwise, use the default version currently set in the codebase. Set pinned to request that behavior explicitly. Or set latest to use the newest pdfium-binaries release instead.
    • Platform:
      • If unset or auto, the host platform is detected and a corresponding binary will be selected.
      • If an explicit platform identifier (e.g. linux_x64, darwin_arm64, ...), binaries for the requested platform will be used.3
      • If system-search, look for and bind against system-provided pdfium instead of embedding a binary. If just system, consume existing bindings from data/system/.
      • If sourcebuild, binary and bindings will be taken from data/sourcebuild/, assuming a prior run of the native or toolchained build scripts. sourcebuild-native or sourcebuild-toolchained can also be used to trigger either build through setup (use $BUILD_PARAMS to pass custom options).
      • If sdist, no platform-specific files will be included, so as to create a source distribution.
  • $PYPDFIUM_MODULES=[raw,helpers] defines the modules to include. Metadata adapts dynamically.

    • May be used by packagers to decouple raw bindings and helpers, which may be relevant if packaging against system pdfium.
    • Would also allow to install only the raw module without helpers, or only helpers with a custom raw module.
    • Be careful, PYPDFIUM_MODULES=raw requires a pre-generated version file to infer the package version.
  • $PDFIUM_BINDINGS=reference allows to override ctypesgen and use the reference bindings file autorelease/bindings.py instead.

    • This is a convenience option to get pypdfium2 installed from source even if a working ctypesgen / C pre-processor is not available in the install env. May be automatically enabled under given circumstances.
    • Warning: This may not be ABI-safe. Please make sure binary/bindings build headers match to avoid ABI issues.

From Conda

[!WARNING] Beware: Any conda packages/recipes of pypdfium2 or pdfium-binaries that might be provided by other distributors, including anaconda/main or conda-forge default channels, are unofficial.

[!NOTE] Wait a moment: Do you really need this? pypdfium2 is best installed from PyPI (e.g. via pip),4 which you can also do in a conda env. Rather than asking your users to add custom channels, consider making pypdfium2 optional at install time, and ask them to install it via pip instead.
This library has no hard runtime dependencies, so you don't need to worry about breaking the conda env.

As of mid 2026, conda finally seems to get better integration with the PyPI world thanks to the conda‑pypi bridge, so we might eventually want to deprecate pypdfium2's conda packaging.

  • To install

    With permanent channel config (encouraged):

    conda config --add channels bblanchon
    conda config --add channels pypdfium2-team
    conda config --set channel_priority strict
    conda install pypdfium2-team::pypdfium2_helpers
    

    Alternatively, with temporary channel config:

    conda install pypdfium2-team::pypdfium2_helpers --override-channels -c pypdfium2-team -c bblanchon -c defaults
    

    If desired, you may limit the channel config to the current environment by adding --env. Adding the channels permanently and tightening priority is encouraged to include pypdfium2 in conda update by default, and to avoid accidentally replacing the install with a different channel. Otherwise, you should be cautious when making changes to the environment.

  • To depend on pypdfium2 in a conda-build recipe

    requirements:
      run:
        - pypdfium2-team::pypdfium2_helpers
    

    You'll want to have downstream callers handle the custom channels as shown above, otherwise conda will not be able to satisfy requirements.

  • To set up channels in a GH workflow

    - name: ...
      uses: conda-incubator/setup-miniconda@v4  # or pin to hash
      with:
        # ... your options
        channels: pypdfium2-team,bblanchon
        channel-priority: strict
    

    This is just a suggestion, you can also call conda config manually, or pass channels on command basis using -c, as discussed above.

  • To verify the sources

    conda list --show-channel-urls "pypdfium2|pdfium-binaries"
    conda config --show-sources
    

    The table should show pypdfium2-team and bblanchon in the channels column. If added permanently, the config should also include these channels, ideally with top priority. Please check this before reporting any issue with a conda install of pypdfium2.

Note: Conda packages are normally managed using recipe feedstocks driven by third parties, in a Linux repository like fashion. However, with some quirks it is also possible to do conda packaging within the original project and publish to a custom channel, which is what pypdfium2-team does, and the above instructions are referring to.

Unofficial packages

The authors of this project have no control over and are not responsible for possible third-party builds of pypdfium2, and we do not support them. Please use our official packages where possible. If you have an issue with a third-party build, either contact your distributor, or try to reproduce with our official builds.

Do not expect us to add/change code for downstream-specific setup tasks. Related issues or PRs may be closed without further notice if we don't see fit for upstream. Enhancements of general value that are maintainable and align well with the idea of our setup code are welcome, though.

[!IMPORTANT] If you are a third-party distributor, please point out in the description that your package is unofficial, i.e. not affiliated with or endorsed by the pypdfium2 authors.
In particular, if you feel like you need patches to package pypdfium2, please submit them on the Discussions page so we can figure out if there isn't a better way (there usually is).

Usage

Support model

Here are some examples of using the support model API.

  • Import the library

    import pypdfium2 as pdfium
    import pypdfium2.raw as pdfium_c
    
  • Open a PDF using the helper class PdfDocument (supports file paths as string or pathlib.Path, or file content as bytes or byte stream)

    pdf = pdfium.PdfDocument("./path/to/document.pdf")
    version = pdf.get_version()  # get the PDF standard version
    n_pages = len(pdf)  # get the number of pages in the document
    page = pdf[0]  # load a page
    
  • Render the page

    bitmap = page.render(
        scale = 1,    # 72dpi resolution
        rotation = 0, # no additional rotation
        # ... further rendering options
    )
    pil_image = bitmap.to_pil()
    pil_image.show()
    

    Note, with the PIL adapter, it might be advantageous to use force_bitmap_format=pdfium_c.FPDFBitmap_BGRA, rev_byteorder=True or perhaps prefer_bgrx=True, maybe_alpha=True, rev_byteorder=True, to achieve a pixel format supported natively by PIL, and avoid rendering with transparency to a non-alpha bitmap, which can slow down pdfium.

    With .to_numpy(), all formats are zero-copy, but passing either maybe_alpha=True (if dynamic pixel format is acceptable) or force_bitmap_format=pdfium_c.FPDFBitmap_BGRA is also recommended for the transparency problem.

  • Try some page methods

    # Get page dimensions in PDF canvas units (1pt->1/72in by default)
    width, height = page.get_size()
    # Set the absolute page rotation to 90° clockwise
    page.set_rotation(90)
    
    # Locate objects on the page
    for obj in page.get_objects():
        print(obj.level, obj.type, obj.get_bounds())
    
  • Extract and search text

    # Load a text page helper
    textpage = page.get_textpage()
    
    # Extract text from the whole page
    text_all = textpage.get_text_bounded()
    # Extract text from a specific rectangular area
    text_rect = textpage.get_text_bounded(left=50, bottom=100, right=width-50, top=height-100)
    # Extract text from a specific char range
    text_span = textpage.get_text_range(index=10, count=15)
    
    # Locate text on the page
    searcher = textpage.search("something", match_case=False, match_whole_word=False)
    # This returns the next occurrence as (char_index, char_count), or None if not found
    match = searcher.get_next()
    
  • Read the table of contents

    import pypdfium2.internal as pdfium_i
    
    for bm in pdf.get_toc(max_depth=15):
        count, dest = bm.get_count(), bm.get_dest()
        out = "    " * bm.level
        out += "[%s] %s -> " % (
            f"{count:+}" if count != 0 else "*",
            bm.get_title(),
        )
        if dest:
            index, (view_mode, view_pos) = dest.get_index(), dest.get_view()
            out += "%s  # %s %s" % (
                index+1 if index != None else "?",
                pdfium_i.ViewmodeToStr.get(view_mode),
                round(view_pos, 3),
            )
        else:
            out += "_"
        print(out)
    
  • Create a new PDF with an empty A4 sized page

    pdf = pdfium.PdfDocument.new()
    width, height = (595, 842)
    page_a = pdf.new_page(width, height)
    
  • Include a JPEG image in a PDF

    pdf = pdfium.PdfDocument.new()
    
    image = pdfium.PdfImage.new(pdf)
    image.load_jpeg("./tests/resources/mona_lisa.jpg")
    width, height = image.get_px_size()
    
    matrix = pdfium.PdfMatrix().scale(width, height)
    image.set_matrix(matrix)
    
    page = pdf.new_page(width, height)
    page.insert_obj(image)
    page.gen_content()
    
  • Save the document

    # PDF 1.7 standard
    pdf.save("output.pdf", version=17)
    

Raw PDFium API

While helper classes conveniently wrap the raw PDFium API, it may still be accessed directly and is available in the namespace pypdfium2.raw. Lower-level utilities that may aid with using the raw API are provided in pypdfium2.internal.

import pypdfium2.raw as pdfium_c
import pypdfium2.internal as pdfium_i

Since PDFium is a large library, many components are not covered by helpers yet. However, as helpers expose their underlying raw objects, you may seamlessly integrate raw APIs while using helpers as available. When passed as ctypes function parameter, helpers automatically resolve to the raw object handle (but you may still access it explicitly if desired):

permission_flags = pdfium_c.FPDF_GetDocPermission(pdf.raw)  # explicit
permission_flags = pdfium_c.FPDF_GetDocPermission(pdf)      # implicit

For PDFium docs, please look at the comments in its public header files.5 A variety of examples on how to interface with the raw API using ctypes is already provided with support model source code. Nonetheless, the following guide may be helpful to get started with the raw API, if you are not familiar with ctypes yet.

  • In general, PDFium functions can be called just like normal Python functions. However, parameters may only be passed positionally, i.e. it is not possible to use keyword arguments. There are no defaults, so you always need to provide a value for each argument.
    # arguments: filepath (bytes), password (bytes|None)
    # NUL-terminate filepath and encode as UTF-8
    pdf = pdfium_c.FPDF_LoadDocument((filepath+"\x00").encode("utf-8"), None)
    
    This is the underlying bindings declaration,6 which loads the function from the binary and contains the information required to convert Python types to their C equivalents.
    if hasattr(_libs['pdfium'], 'FPDF_LoadDocument'):
        FPDF_LoadDocument = _libs['pdfium']['FPDF_LoadDocument']
        FPDF_LoadDocument.argtypes = (FPDF_STRING, FPDF_BYTESTRING)
        FPDF_LoadDocument.restype = FPDF_DOCUMENT
    
    Python bytes are converted to FPDF_STRING by ctypes autoconversion. This works because FPDF_STRING is actually an alias to POINTER(c_char) (i.e. char*), which is a primitive pointer type. When passing a string to a C function, it must always be NUL-terminated, as the function merely receives a pointer to the first item and then continues to read memory until it finds a NUL terminator.
  • First of all, function parameters are not only used for input, but also for output:

    # Initialise an integer object (defaults to 0)
    c_version = ctypes.c_int()
    # Let the function assign a value to the c_int object, and capture its return code (True for success, False for failure)
    ok = pdfium_c.FPDF_GetFileVersion(pdf, c_version)
    # If successful, get the Python int by accessing the `value` attribute of the c_int object
    # Otherwise, set the variable to None (in other cases, it may be desired to raise an exception instead)
    version = c_version.value if ok else None
    
  • If an array is required as output parameter, you can initialise one like this (in general terms):

    # long form
    array_type = (c_type * array_length)
    array_object = array_type()
    # short form
    array_object = (c_type * array_length)()
    

    Example: Getting view mode and target position from a destination object returned by some other function.

    # (Assuming `dest` is an FPDF_DEST)
    n_params = ctypes.c_ulong()
    # Create a C array to store up to four coordinates
    view_pos = (pdfium_c.FS_FLOAT * 4)()
    view_mode = pdfium_c.FPDFDest_GetView(dest, n_params, view_pos)
    # Slice the array to the actual number of coordinates. This implicitly converts the C array to a Python list.
    view_pos = view_pos[:n_params.value]
    
  • For string output parameters, callers needs to provide a sufficiently long, pre-allocated buffer. This may work differently depending on what type the function requires, which encoding is used, whether the number of bytes or units is returned, and whether space for a NUL terminator is included or not. Carefully review the documentation of the function in question to fulfill its requirements.

    There are many different ways of handling output strings; this section describes the strategy used by pypdfium2's helpers.

    We will first import the codecs.decode() function which can be used on generic memory (whereas the .decode() method is only available on bytes or bytearrays):

    from codecs import decode
    

    Example A: Getting the title string of a bookmark.

    # (Assuming `bookmark` is an FPDF_BOOKMARK)
    # First call to get the required number of bytes (not units!), including space for a NUL terminator
    n_bytes = pdfium_c.FPDFBookmark_GetTitle(bookmark, None, 0)
    # Initialise the output buffer
    buffer = ctypes.create_string_buffer(n_bytes)
    # Second call with the actual buffer
    pdfium_c.FPDFBookmark_GetTitle(bookmark, buffer, n_bytes)
    # Decode to string, cutting off the NUL terminator (encoding: UTF-16LE)
    title = decode(memoryview(buffer)[:n_bytes-2], "utf-16-le")
    

    Example B: Extracting text in given boundaries.

    # (Assuming `textpage` is an FPDF_TEXTPAGE and the boundary variables are set)
    # Store common arguments for the two calls
    args = (textpage, left, top, right, bottom)
    # First call to get the required number of units (not bytes!).
    # A possible NUL terminator is not included.
    n_units = pdfium_c.FPDFText_GetBoundedText(*args, None, 0)
    # If no characters were found, return an empty string
    if n_units <= 0:
        return ""
    # Create the buffer. This particular API does not insist on space for a NUL terminator.
    # Skip so we don't need to cut it off later.
    buffer = (ctypes.c_ushort * n_units)()
    # Second call with the actual buffer
    pdfium_c.FPDFText_GetBoundedText(*args, buffer, n_units)
    # Decode to string (You may want to pass errors="ignore" to skip possible errors in the PDF's encoding)
    text = decode(buffer, "utf-16-le")
    

    There are also APIs that return the number of bytes but expect a multi-byte type, e.g. FPDF_WCHAR. In that case, you can calculate the number of units via -(n_bytes // -ctypes.sizeof(pdfium_c.FPDF_WCHAR)) (this does a ceil division).

  • Not only are there different ways of string output that need to be handled according to the requirements of the function in question. String input, too, can work differently depending on encoding and type. We have already discussed FPDF_LoadDocument(), which takes a UTF-8 encoded string as char*. A different examples is FPDFText_FindStart(), which needs a UTF-16LE encoded string, given as unsigned short*:

    # (Assuming `text` is a str and `textpage` an FPDF_TEXTPAGE)
    # Add the NUL terminator and encode as UTF-16LE
    enc_text = (text + "\x00").encode("utf-16-le")
    # cast `enc_text` to a c_ushort pointer
    text_ptr = ctypes.cast(enc_text, ctypes.POINTER(ctypes.c_ushort))
    search = pdfium_c.FPDFText_FindStart(textpage, text_ptr, 0, 0)
    
  • Leaving strings, let's suppose you have a C memory buffer allocated by PDFium and wish to read its data. PDFium will provide you with a pointer to the first item of the byte array. To access the data, you'll want to re-interpret the pointer as an array view with .from_address():

    # (Assuming `bitmap` is an FPDF_BITMAP and `size` is the expected number of bytes in the buffer)
    # FPDFBitmap_GetBuffer() has c_void_p as restype, which ctypes will auto-resolve to int or None
    buffer_ptrval = pdfium_c.FPDFBitmap_GetBuffer(bitmap)
    assert buffer_ptrval  # make sure it's non-null
    # Get an actual pointer object so we can access .contents
    buffer_ptr = ctypes.cast(buffer_ptrval, ctypes.POINTER(ctypes.c_ubyte))
    # Buffer as ctypes array (a view of the original buffer, will be unavailable as soon as the bitmap is destroyed)
    c_buffer = (ctypes.c_ubyte * size).from_address( ctypes.addressof(buffer_ptr.contents) )
    # Buffer as Python bytes (independent copy)
    py_buffer = bytes(c_buffer)
    

    Note that you can achieve the same result with ctypes.cast(ptr, POINTER(type * size)).contents, but this is somewhat problematic since ctypes used to cache pointer types eternally with Python < 3.14 (as size may vary, this can lead to memory leak like scenarios with long-running applications).

  • Writing data from Python into a C buffer works in a similar fashion:

    # (Assuming `buffer_ptr` is a pointer to the first item of a C buffer to write into,
    #  `size` the number of bytes it can store, and `py_buffer` a Python byte buffer)
    buffer = (ctypes.c_ubyte * size).from_address( ctypes.addressof(buffer_ptr.contents) )
    # Read from the Python buffer, starting at its current position, directly into the C buffer
    # (until the target is full or the end of the source is reached)
    n_bytes = py_buffer.readinto(buffer)  # returns the number of bytes read
    
  • If you wish to check whether two objects returned by PDFium are the same, the is operator won't help because ctypes does not have original object return (OOR), i.e. new, equivalent Python objects are created each time, although they might represent one and the same C object.7 That's why you'll want to use ctypes.addressof() to get the memory addresses of the underlying C object. For instance, this is used to avoid infinite loops on circular bookmark references when iterating through the document outline:

    # (Assuming `pdf` is an FPDF_DOCUMENT)
    seen = set()
    bookmark = pdfium_c.FPDFBookmark_GetFirstChild(pdf, None)
    while bookmark:
        # bookmark is a pointer, so we need to use its `contents` attribute to get the object the pointer refers to
        # (otherwise we'd only get the memory address of the pointer itself, which would result in random behaviour)
        address = ctypes.addressof(bookmark.contents)
        if address in seen:
            break  # circular reference detected
        else:
            seen.add(address)
        bookmark = pdfium_c.FPDFBookmark_GetNextSibling(pdf, bookmark)
    
  • In many situations, callback functions come in handy.8 Thanks to ctypes, it is seamlessly possible to use callbacks across Python/C language boundaries.

    Example: Loading a document from a Python buffer. This way, file access can be controlled in Python while the data does not need to be in memory at once.

    import os
    
    # Factory class to create callable objects holding a reference to a Python buffer
    class _reader_class:
      
      def __init__(self, py_buffer):
          self.py_buffer = py_buffer
      
      def __call__(self, _, position, buffer_ptr, size):
          # Write data from Python buffer into C buffer, as explained before
          c_buffer = (ctypes.c_ubyte * size).from_address( ctypes.addressof(buffer_ptr.contents) )
          self.py_buffer.seek(position)
          self.py_buffer.readinto(c_buffer)
          return 1  # non-zero return code for success
    
    # (Assuming py_buffer is a Python file buffer, e. g. io.BufferedReader)
    # Get the length of the buffer
    py_buffer.seek(0, os.SEEK_END)
    file_len = py_buffer.tell()
    py_buffer.seek(0)
    
    # Set up an interface structure for custom file access
    fileaccess = pdfium_c.FPDF_FILEACCESS()
    fileaccess.m_FileLen = file_len
    
    # Assign the callback, wrapped in its CFUNCTYPE
    fileaccess.m_GetBlock = type(fileaccess.m_GetBlock)( _reader_class(py_buffer) )
    
    # Finally, load the document
    pdf = pdfium_c.FPDF_LoadCustomDocument(fileaccess, None)
    
  • When using the raw API, special care needs to be taken regarding object lifetime, considering that Python may garbage collect objects as soon as their reference count reaches zero. However, the interpreter has no way of magically knowing how long the underlying resources of a Python object might still be needed on the C side, so measures need to be taken to keep such objects referenced until PDFium does not depend on them anymore.

    If resources need to remain valid after the time of a function call, PDFium docs usually indicate this clearly. Ignoring requirements on object lifetime will lead to memory corruption (commonly resulting in a segfault sooner or later).

    For instance, the docs on FPDF_LoadCustomDocument() state that

    The application must keep the file resources |pFileAccess| points to valid until the returned FPDF_DOCUMENT is closed. |pFileAccess| itself does not need to outlive the FPDF_DOCUMENT.

    This means that the callback function and the Python buffer need to be kept alive as long as the FPDF_DOCUMENT is used. This can be achieved by referencing these objects in an accompanying class, e. g.

    class PdfDataHolder:
        
        def __init__(self, buffer, function):
            self.buffer = buffer
            self.function = function
        
        def close(self):
            # Make sure both objects remain available until this function is called
            # No-op id() call to denote that the object needs to stay in memory up to this point
            id(self.function)
            self.buffer.close()
    
    # ... set up an FPDF_FILEACCESS structure
    
    # (Assuming `py_buffer` is the buffer and `fileaccess` the FPDF_FILEACCESS interface)
    data_holder = PdfDataHolder(py_buffer, fileaccess.m_GetBlock)
    pdf = pdfium_c.FPDF_LoadCustomDocument(fileaccess, None)
    
    # ... work with the pdf
    
    # Close the PDF to free resources
    pdfium_c.FPDF_CloseDocument(pdf)
    # Close the data holder, to keep the object itself and thereby the objects it
    # references alive up to this point, as well as to release the buffer
    data_holder.close()
    
  • Finally, let's finish this guide with an example how to render the first page of a document to a PIL image in RGBA color format.

    import math
    import ctypes
    import os.path
    import PIL.Image
    import pypdfium2.raw as pdfium_c
    
    # Load the document
    filepath = os.path.abspath("tests/resources/render.pdf")
    pdf = pdfium_c.FPDF_LoadDocument((filepath+"\x00").encode("utf-8"), None)
    
    # Check page count to make sure it was loaded correctly
    page_count = pdfium_c.FPDF_GetPageCount(pdf)
    assert page_count >= 1
    
    # Load the first page and get its dimensions
    page = pdfium_c.FPDF_LoadPage(pdf, 0)
    width  = math.ceil(pdfium_c.FPDF_GetPageWidthF(page))
    height = math.ceil(pdfium_c.FPDF_GetPageHeightF(page))
    
    # Create a bitmap
    # (Note, pdfium is faster at rendering transparency if we use BGRA rather than BGRx)
    use_alpha = pdfium_c.FPDFPage_HasTransparency(page)
    bitmap = pdfium_c.FPDFBitmap_Create(width, height, int(use_alpha))
    # Fill the whole bitmap with a white background
    # The color is given as a 32-bit integer in ARGB format (8 bits per channel)
    pdfium_c.FPDFBitmap_FillRect(bitmap, 0, 0, width, height, 0xFFFFFFFF)
    
    # Store common rendering arguments
    render_args = (
        bitmap,  # the bitmap
        page,    # the page
        # positions and sizes are to be given in pixels and may exceed the bitmap
        0,       # left start position
        0,       # top start position
        width,   # horizontal size
        height,  # vertical size
        0,       # rotation (as constant, not in degrees!)
        pdfium_c.FPDF_LCD_TEXT | pdfium_c.FPDF_ANNOT,  # rendering flags, combined with binary or
    )
    
    # Render the page
    pdfium_c.FPDF_RenderPageBitmap(*render_args)
    
    # Get the value of a pointer to the first item of the buffer
    buffer_ptrval = pdfium_c.FPDFBitmap_GetBuffer(bitmap)
    assert buffer_ptrval, "buffer pointer value must be non-null"
    # Cast the pointer value to an actual pointer object so we can access .contents
    buffer_ptr = ctypes.cast(buffer_ptrval, ctypes.POINTER(ctypes.c_ubyte))
    # Re-interpret as array
    buffer = (ctypes.c_ubyte * (width * height * 4)).from_address(ctypes.addressof(buffer_ptr.contents))
    
    # Create a PIL image from the buffer contents
    img = PIL.Image.frombuffer("RGBA", (width, height), buffer, "raw", "BGRA", 0, 1)
    # Save it as file
    img.save("out.png")
    
    # Free resources
    pdfium_c.FPDFBitmap_Destroy(bitmap)
    pdfium_c.FPDF_ClosePage(page)
    pdfium_c.FPDF_CloseDocument(pdf)
    

Command-line Interface

pypdfium2 also ships with a simple command-line interface, providing access to key features of the support model in a shell environment (e. g. rendering, content extraction, document inspection, page rearranging, ...).

The primary motivation behind this is to have a nice testing interface, but it may be helpful in a variety of other situations as well. Usage should be largely self-explanatory, assuming some familiarity with the command-line. See pypdfium2 --help or pypdfium2 $SUBCOMMAND --help for available commands and options.

If you wish to call pypdfium2's CLI through python -m, note that the module name is pypdfium2_cli (not just pypdfium2), unlike the entrypoint script.

Licensing

[!NOTE] Disclaimer: This project is provided on an "as-is" basis. This is not legal advice, and there is absolutely no warranty. Please check relevant licenses on your own. See also GitHub's disclaimer.

pypdfium2 itself is available by the terms and conditions of Apache-2.0 / BSD-3-Clause. Documentation and examples of pypdfium2 are licensed under CC-BY-4.0. pypdfium2 includes SPDX headers in source files. License information for data files is provided in REUSE.toml as per the reuse standard.

PDFium is available under "a BSD-style license that can be found in [its] LICENSE file".
Various other open-source licenses apply to dependencies included with PDFium. PDFium's license as well as dependency licenses have to be shipped with binary distributions.
See the BUILD_LICENSES/ directory, or the licenses shipped with our wheel builds.

PDFium's dependencies might change over time. Please notify us if you think a relevant license is missing.

To the author's knowledge, pypdfium2 is one of the rare Python libraries capable of PDF rendering while not being covered by strong-copyleft licenses.9

Note that the exact licensing situation depends on the build config/environment used.
In particular, a subset of pypdfium2 builds may link with the libgcc runtime library. Check the builds you use and, if affected, libgcc's license to evaluate if that's OK for your use.

Issues / Contributions

While using pypdfium2, you might encounter bugs or missing features. In this case, feel free to open an issue or discussion thread. If applicable, include details such as tracebacks, OS and CPU type, as well as the versions of pypdfium2 and used dependencies.

Roadmap:

  • pypdfium2
    • Issues panel: Initial bug reports and feature requests. May need to be transferred to dependencies.
    • Discussions page: General questions and suggestions.
  • PDFium
    • Bug tracker: Issues in PDFium. Beware: The bridge between Python and C increases the probability of integration issues or API misuse. The symptoms can often make it look like a PDFium bug while it is not.
    • Mailing list: Questions regarding PDFium usage.
  • pdfium-binaries: Binary builder.
  • ctypesgen: Bindings generator (fork). See also upstream.

Policy

Given this is a volunteer open-source project, it is possible you may not get a response to your issue, or it may be closed without much feedback. Conversations may be locked if we feel like our attention is getting DDOSed. We may not have time to provide much usage support.

The same applies to Pull Requests. We will accept contributions only if we find them suitable. Do not reach out with a strong expectation to get your change merged; it is solely up to the repository owner to decide if and when a PR will be merged, and PRs that we consider unsuitable will be rejected without further ado. If the code owner decides a change is inappropriate, that's it, and further discussion will not be accepted. Any attempts to pressure us to merge a PR will not be tolerated, and may result in the offender being blocked.

No AI issues and PRs

AI issues and PRs are banned from this project.

Any issues or PRs that exhibit the typical characteristics of low-quality generative AI will be labelled as spam / ai and closed/locked immediately, no matter how important they may claim to be.

Our issue and PR templates make it quite plain that AI is not allowed, so users who violate this policy should not be surprised to find themselves blocked.

This announcement offers some more background as to why this decision was reached.

Known limitations

Incompatibility with Threading

PDFium is inherently not thread-safe. See the API docs for more information.

Risk of unknown object lifetime violations

As outlined in the raw API section, it is essential that Python-managed resources remain available as long as they are needed by PDFium.

The problem is that the Python interpreter may garbage collect objects with reference count zero at any time, so it can happen that an unreferenced but still required object by chance stays around long enough before it is garbage collected. However, it could also disappear too soon and cause breakage. Such dangling objects result in non-deterministic memory issues that are hard to debug. If the timeframe between reaching reference count zero and removal is sufficiently large and roughly consistent across different runs, it is even possible that mistakes regarding object lifetime remain unnoticed for a long time.

Although we intend to develop helpers carefully, it cannot be fully excluded that unknown object lifetime violations might still be lurking around somewhere, especially if unexpected requirements were not documented by the time the code was written.

Missing raw PDF access

As of this writing, PDFium's public interface does not provide access to the raw PDF data structure (see issue 1694). It does not expose APIs to read/write PDF dictionaries, streams, name/number trees, etc. Instead, it merely offers a predefined set of abstracted functions. This considerably limits the library's potential, compared to other products such as pikepdf.

Limitations of ABI bindings

PDFium's non-public backend would provide extended capabilities, including raw access, but it is written in C++, which (unlike pure C) does not result in a stable ABI, so we cannot use it with ctypes. This means it's out of scope for this project.

Also, while ABI bindings tend to be more convenient, they have some technical drawbacks compared to API bindings (see e.g. 1, 2)

Development

Long lines

We do not hard wrap long lines. It is recommended to set up automatic word wrap in your text editor, e.g. VS Code:

editor.wordWrap = bounded
editor.wordWrapColumn = 100

Command recipes

We use the just command runner, which can be seen as a modern, flexible alternative to make. In particular, there's no good way to pass through positional arguments with make.

Run just -l (or open the justfile) to view the available commands.

Docs

pypdfium2 has API documentation built with Sphinx, which can be rendered to various formats, including HTML:

sphinx-build -b html ./docs/source ./docs/build/html/
just docs-build  # short alias

Docs are primarily hosted on readthedocs.org. It may be configured using a .readthedocs.yaml file (see instructions), and the administration page on the web interface. RTD theoretically supports hosting multiple versions, but currently, we only host one build for the latest release through the stable branch. New builds are automatically triggered by a webhook whenever a linked branch is pushed.

Additionally, one doc build can also be hosted on GitHub Pages. It is implemented with a CI workflow, which is supposed to be triggered automatically on release. This provides us with full control over build env and used commands, whereas RTD may be less liberal in this regard.

Testing

pypdfium2 contains a small test suite to verify the library's functionality. It is written with pytest:

python -m pytest tests/  # or `just test`

Pass -sv to get more detailed output. Environment variables used by the CLI are also honored in the test suite: PYPDFIUM_LOGLEVEL, DEBUG_AUTOCLOSE, DEBUG_SYSFONTS, DEBUG_UNSUPPORTED. See pypdfium2 --help for description.

To get code coverage statistics, you may call

just coverage

Sometimes, it can also be helpful to test code on many PDFs.10 In this case, the command-line interface and find come in handy:

# Example A: Analyse PDF images (in the current working directory)
find . -name '*.pdf' -exec bash -c "echo \"{}\" && pypdfium2 pageobjects \"{}\" --filter image" \;
# Example B: Parse PDF table of contents
find . -name '*.pdf' -exec bash -c "echo \"{}\" && pypdfium2 toc \"{}\"" \;

Popular dependents

pypdfium2 is used by popular packages such as langchain, dify, docling, nougat, pdfplumber, doctr, and nv-ingest.

This results in pypdfium2 being part of a large dependency tree.

Thanks to11

  • Benoît Blanchon: Author/Maintainer of PDFium binaries and patches.
  • Yinlin Hu: pypdfium prototype and kuafu PDF viewer.
  • Mike Kroutikov: Examples on how to use PDFium from Python in redstork, redstork-ui and pdfbrain.
  • Matthieu Darbois: Provider of static clang images – native performance builds in otherwise qemu-driven containers. Help with bypassing libclang_rt dependency.
  • wojiushixiaobai: Helpful pointers and draft workflow for cibuildwheel. Supporting extra Linux architectures via emulated containers.
  • Christian Heimes: RPM packaging for pdfium. Showing how to build pdfium natively without Google's toolchain. Big-endian fixes.
  • Marvin Gießing: Investigation on building PDFium for a then unhandled Linux architecture (ppc64le).
  • Adam Huganir: Help with maintenance and development decisions since the beginning of the project.
  • Tim Head: Original idea for Python bindings to PDFium with ctypesgen in wowpng.
  • kobaltcore: Bug fix for PdfDocument.save().
  • Anderson Bravalheri: Help with PEP 517/518 compliance. Hint to use an environment variable rather than separate setup files.
  • Bastian Germann: Help with inclusion of licenses for third-party components of PDFium.

... and further code contributors (GitHub stats).

If you have contributed to this project but are not mentioned here yet, please let us know.

History

PDFium

The PDFium code base was originally developed as part of the commercial Foxit SDK, before being acquired and open-sourced by Google, who maintain PDFium independently ever since, while Foxit continue to develop their SDK closed-source.

pypdfium2

pypdfium2 is the successor of pypdfium and pypdfium-reboot.

Inspired by wowpng, the first known proof of concept Python binding to PDFium using ctypesgen, the initial pypdfium package was created. It had to be updated manually, which did not happen frequently. There were no platform-specific wheels, but only a single wheel that contained binaries for 64-bit Linux, Windows and macOS.

pypdfium-reboot then added a script to automate binary deployment and bindings generation to simplify regular updates. However, it was still not platform specific.

pypdfium2 is a full rewrite of pypdfium-reboot to build platform-specific wheels and consolidate the setup scripts. Further additions include ...

  • A CI workflow to automatically release new wheels at a defined schedule
  • Convenience support models that wrap the raw PDFium/ctypes API
  • Test code
  • A script to build PDFium from source
  1. If this did not reveal the full version, setup will try to resolve it with a git web request. Set GIVEN_FULLVER=$major.$minor.$build.$patch or IGNORE_FULLVER=1 to override that behavior.

  2. Luckily, upstream tend to be careful not to change the ABI of existing stable APIs, but they don't mind ABI-breaking changes to APIs that have not been promoted to stable tier yet, and pypdfium2 uses many of them, so it is still prudent to care about downstream ABI safety as well (it always is). You can read more about upstream's policy here.

  3. Intended for packaging, so that wheels can be crafted for any platform without access to a native host.

  4. To name some reasons:

    • pypdfium2 from PyPI covers platforms that we cannot cover on conda.
    • pypdfium2 from PyPI has extensive fallback setup, while conda does not provide an opportunity to run custom setup code.
    • With conda, in-project publishing / custom channels are second class.
    • With conda, it seems there is no way to create platform-specific but interpreter-independent python packages, so we cannot reasonably bundle pdfium. Thus, we have to use external pdfium, which is more complex and has some pitfalls.
  5. Unfortunately, no recent HTML-rendered docs are available for PDFium at the moment.

  6. From the auto-generated bindings file. We maintain a reference copy at autorelease/bindings.py. Or if you have an editable install, there will also be src/pypdfium2_raw/bindings.py.

  7. Confer the ctypes documentation on Pointers.

  8. e. g. incremental read/write, management of progressive tasks, ...

  9. Other mature, liberal-licensed PDF rendering libraries known to the author are pdf.js (JavaScript) and Apache PDFBox (Java). While they can be accessed from Python in principle, as shown in the author's gists (pdfbox, pdfjs), there don't seem to be proper python bindings projects to these libraries yet. These days, novel options have surfaced, including docling-parse and pdf_oxide, but the author is not familiar with them yet.

  10. For instance, one could use the testing corpora of open-source PDF libraries (pdfium, pikepdf/ocrmypdf, mupdf/ghostscript, tika/pdfbox, pdfjs, ...)

  11. People listed in this section may not necessarily have contributed any copyrightable code to the repository. Many have rather helped with ideas, or contributions to dependencies of pypdfium2.

Download files

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

Source Distribution

pypdfium2-5.13.0.tar.gz (273.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pypdfium2-5.13.0-py3-none-win_arm64.whl (3.7 MB view details)

Uploaded Python 3Windows ARM64

pypdfium2-5.13.0-py3-none-win_amd64.whl (3.9 MB view details)

Uploaded Python 3Windows x86-64

pypdfium2-5.13.0-py3-none-win32.whl (3.8 MB view details)

Uploaded Python 3Windows x86

pypdfium2-5.13.0-py3-none-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

pypdfium2-5.13.0-py3-none-musllinux_1_2_s390x.whl (5.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ s390x

pypdfium2-5.13.0-py3-none-musllinux_1_2_riscv64.whl (4.6 MB view details)

Uploaded Python 3musllinux: musl 1.2+ riscv64

pypdfium2-5.13.0-py3-none-musllinux_1_2_ppc64le.whl (5.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ppc64le

pypdfium2-5.13.0-py3-none-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

pypdfium2-5.13.0-py3-none-musllinux_1_2_armv7l.whl (4.6 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

pypdfium2-5.13.0-py3-none-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

pypdfium2-5.13.0-py3-none-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (4.0 MB view details)

Uploaded Python 3manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

pypdfium2-5.13.0-py3-none-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (4.0 MB view details)

Uploaded Python 3manylinux: glibc 2.27+ s390xmanylinux: glibc 2.28+ s390x

pypdfium2-5.13.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

pypdfium2-5.13.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

pypdfium2-5.13.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

pypdfium2-5.13.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

pypdfium2-5.13.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

pypdfium2-5.13.0-py3-none-macosx_13_0_x86_64.whl (3.7 MB view details)

Uploaded Python 3macOS 13.0+ x86-64

pypdfium2-5.13.0-py3-none-macosx_13_0_arm64.whl (3.5 MB view details)

Uploaded Python 3macOS 13.0+ ARM64

pypdfium2-5.13.0-py3-none-android_23_armeabi_v7a.whl (2.9 MB view details)

Uploaded Android API level 23+ ARM EABI v7aPython 3

pypdfium2-5.13.0-py3-none-android_23_arm64_v8a.whl (3.4 MB view details)

Uploaded Android API level 23+ ARM64 v8aPython 3

File details

Details for the file pypdfium2-5.13.0.tar.gz.

File metadata

  • Download URL: pypdfium2-5.13.0.tar.gz
  • Upload date:
  • Size: 273.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pypdfium2-5.13.0.tar.gz
Algorithm Hash digest
SHA256 7ca2d8e31bd8d0d40c496416b7d8bea423388669ffd494929f50e8c3a82326b8
MD5 d516e651613028b2288f0207e0e1b73f
BLAKE2b-256 ec78a52cb80611339ec95f35c7a10d7bfe7a6f97f3b50a35a9f94283d062512e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0.tar.gz:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-win_arm64.whl.

File metadata

  • Download URL: pypdfium2-5.13.0-py3-none-win_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pypdfium2-5.13.0-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 554a0b23376460af1410e3c915906895e2dac67a086b9e6ccde0643a795d3b0d
MD5 b38701acccbdb5de8d024903caf02397
BLAKE2b-256 507fd39f6e64375c2ffd50ea100e3c73af79085c880c2791eb7203bc61d8913f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-win_arm64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-win_amd64.whl.

File metadata

  • Download URL: pypdfium2-5.13.0-py3-none-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pypdfium2-5.13.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 47dcca2a8d507b5fd24f94c3c9d48fb379430f097bc20f01beff6c963ffbcedb
MD5 cba6cbc4c4a038615868aed0d9422a22
BLAKE2b-256 5d99a37b6b902457569468ed5908c94e56cb6c4032541f02cf89f723d42a9148

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-win_amd64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-win32.whl.

File metadata

  • Download URL: pypdfium2-5.13.0-py3-none-win32.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pypdfium2-5.13.0-py3-none-win32.whl
Algorithm Hash digest
SHA256 d33ee7077db67478b75efe4b5ea9610fb96c5416a0bc4949227f0f59c34dfcd9
MD5 e643648d3767cba77292e091116020de
BLAKE2b-256 5440cf14c4f534f817788966857afdedb90002198dca5ce4fe2c6ecb031955ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-win32.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c777edba28d1d5fd15435ed3a78ee2fdb93dd069be37cb53b559bc122793770
MD5 f060dbbeab79d827f69a27f5644c94db
BLAKE2b-256 7bb6cebacc1601ddfdcd1e6a1dc321533d215ceccf9b825fa9b91b11c6dc39fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-musllinux_1_2_x86_64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2ed32ff685f8e05e637c990bedbf5fca66727bf27718d8bc33eeab21ce0630d1
MD5 14b3df8d7fc37aac6d9323db52f70380
BLAKE2b-256 db3bffe29679c52efe8eb02d77aa6656e6d6201395423329af018ebd5923a3d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-musllinux_1_2_s390x.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bcd81394fe101405e026eedb3e40bef84635c1e5d974dd6036420eb6937753c6
MD5 794e1396a7392363029ac1fafc54ca28
BLAKE2b-256 190b759b9037c007317fa5c990dd3f6eff2b99d3fbced251d1e2512be92f2e2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-musllinux_1_2_riscv64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 be2dccbde0ce7efe334ecd8f348df4308db360756ede4f0821d82dfc9a58caa8
MD5 f60e59ea96439f02c16fd1b875ce342f
BLAKE2b-256 53fe2ff673730189a621c01f9193c74b0f6aa70d8740889fdf11949e1c541869

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-musllinux_1_2_ppc64le.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c029d7163a91f264eafab51fb442a84a33efd9fd83d5a06c0136a7857a3cc8d
MD5 8bcff5df3df3900c837a3848a0fa85e1
BLAKE2b-256 cdef6e8dbea1eddcb55cf34172753ffccd39566333c803cc94d43c653f369f2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-musllinux_1_2_i686.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3826e521e895648983cb9ee6b934d4bf51552600043984f84e9c2b3b14b696f3
MD5 4d1afdb7c75ccb2ef95e28f39e7bbc1d
BLAKE2b-256 93241fab8470fc6de6f4481f009c90757b1a1ee0a61d8e864ed273f72ffca855

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-musllinux_1_2_armv7l.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ada81c36483cd61d07e32bc7814620ee96256b4f421b913f566861bf91800248
MD5 edb2e970f4df485addab55ae21849ed3
BLAKE2b-256 362edcb24776d409bb9e5b7fb26a0c62a87b98ab0e30dfcca645eaf31e35123b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-musllinux_1_2_aarch64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b90b0a5ac310bb34db8eb848e58fcab4e201e124e3cf3cb1ccb7b85293e034af
MD5 dafcf8b7cd16e922b56bc88d29f701f4
BLAKE2b-256 c648a171d034c2dac01adcc57d3dad3c97ba11f19d916f421176002c9e02c904

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d66a32d89fa5b4a2715810171239eb194df4aba604727483ab760512f3c6a851
MD5 6c9121a00c0826ae2d72d5332fa33bbd
BLAKE2b-256 59128c922f00518c26dc47d3676cc09c1d3c95e991c1977e31067d23cc2215cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-manylinux_2_27_s390x.manylinux_2_28_s390x.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81df25c1ab4c13ff773102d3cbea1967511d079123b067fc077bd0c4d57d91d8
MD5 7f4919e5e1e2c3ebd4436a1eab20466c
BLAKE2b-256 d37c74a2fb48e5b0d2402d9ca64b39074c722d67e9a8a2c58449a843a8c2329a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d96beb7f379e6c76d874ca93fcd182ac3168dd499056407070f9927fb1061b8e
MD5 87dc316e032a1222e7d345ff704e7574
BLAKE2b-256 a7d825ba4ce9a9059ece82f4514df0658fde0aa9bbeafe135e76017c052bf56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46b2f5be9e7ae941ee4216e3d20b66f9dc3d81944a3d57756272de5275204709
MD5 8d36d66c5beb1746646a73cf3e923028
BLAKE2b-256 c3e0b10cf41b5e9f0212d014c40635659c6ab95bb4fcc6fc47f5d3c571f8d57f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07f58e91b8c45ca144a1ff3008faf3c73ef8a5e9fb32988831788363288228cd
MD5 db7d528af8b1075ce1bdce4bf407921e
BLAKE2b-256 9450d339fa09fbe592564b100bfc76833170a1104a764a458ac2abfffcb632f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ee8c2bb2e68b396ab4a763215ac100dacb6b96d0da5bebeb239a021aecc3a7e
MD5 b195b125d90766628db4752e473c9009
BLAKE2b-256 fe31f8210d53775f142be934336665b1d60e800c3f176f28c29b4908d945c518

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2abedfb5c70992b19c780ed58d7f7b929e8ce8ee52c9140158f44317c90ec6c7
MD5 499b18a3419fe6e0d726254dd9f90fc3
BLAKE2b-256 9f4106e26da88a4f5b4ed289325868717a186020661b7b221aa6df622711d31b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-macosx_13_0_x86_64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 da5c7b74eebf40b5c1fbe1de01aa1edc8827a79fb1efd999616bc20dcaf77ba4
MD5 0022bb6df1144a563dc82227b1f7340a
BLAKE2b-256 08991fe58428b69d2722dcbcfaa08ce71834a332c5b518fd58874bcef936b823

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-macosx_13_0_arm64.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-android_23_armeabi_v7a.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-android_23_armeabi_v7a.whl
Algorithm Hash digest
SHA256 d96929bde3bd64c771ab3558ca1ffd7704cc4d872ab92cd9f8f8b8a20f7f36b8
MD5 b8d0db9fce66a75951a6bcc33984208e
BLAKE2b-256 50adf23027328843ee2bdd05afe16bb101f5906befd0c70de35fa8c53f60a5ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-android_23_armeabi_v7a.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypdfium2-5.13.0-py3-none-android_23_arm64_v8a.whl.

File metadata

File hashes

Hashes for pypdfium2-5.13.0-py3-none-android_23_arm64_v8a.whl
Algorithm Hash digest
SHA256 882f4bbd4b17a335b43603169a14cde9341de12b238acd5c39e690cbca7c4293
MD5 4c21c79ac95dd96f1317a2172f6ac49a
BLAKE2b-256 7c9ca49050af85055054299c7fab658ac63f8fddde575774aecbf8f71c7a9e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypdfium2-5.13.0-py3-none-android_23_arm64_v8a.whl:

Publisher: main.yaml on pypdfium2-team/pypdfium2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page