Skip to main content

Python tools for PDF automation.

Project description

What is PDFlex?

PDFlex is a powerful PDF processing toolkit for Python. It provides robust tools for PDF validation, text extraction, merging (with custom separator pages), searching, and more—all built to streamline your PDF automation workflows.

Features

  • PDF Validation: Quickly verify if a file is a valid PDF.
  • Text Extraction: Extract text from PDFs using either PyMuPDF or PyPDF.
  • Directory Processing: Process entire directories of PDFs for text extraction.
  • PDF Merging: Merge multiple PDF files into one, automatically inserting a custom separator page between documents.
    • The separator page displays the title (derived from the filename) with underscores and hyphens removed.
    • Supports both portrait and landscape separator pages (ideal for lecture slides).
  • PDF Searching: Recursively search for PDFs in a directory based on filename patterns (e.g., numeric float prefixes).

Quick Start

Installation

PDFlex is available on PyPI. To install using pip:

pip install -U pdflex

Alternatively, install in an isolated environment with pipx:

pipx install pdflex

For the fastest installation using uv:

uv tool install pdflex

Usage

Command-Line Interface (CLI)

PDFlex provides a convenient CLI for merging and searching PDFs. The CLI supports two primary commands: merge and search.

Merge Command

Merge multiple PDF files into a single document while automatically inserting a separator page before each document.

Usage:

pdflex merge /path/to/file1.pdf /path/to/file2.pdf -o merged_output.pdf

Add the --landscape flag to create separator pages in landscape orientation:

pdflex merge /path/to/file1.pdf /path/to/file2.pdf -o merged_output.pdf --landscape

Search and Merge Command

Search for PDF files in a directory based on filename filters (or search for lecture slides with numeric float prefixes) and merge them into one PDF.

Usage:

  • General Search:

    pdflex search /path/to/search -o merged_output.pdf --prefix "Chapter" --suffix ".pdf"
    
  • Lecture Slides Merge: (Merges all PDFs whose filenames start with a numeric float prefix like 1.2_, 3.2_, etc., in sorted order. Separator pages will be in landscape orientation.)

    pdflex search /path/to/algorithms-and-computation -o merged_lectures.pdf --lecture
    

Python API Usage

You can also use PDFlex directly from your Python code. Below are examples for some common tasks.

Merging PDFs with Separator Pages

from pathlib import Path
from pdflex.merge import merge_pdfs

# List of PDF file paths to merge
pdf_files = [
    "/path/to/document1.pdf",
    "/path/to/document2.pdf"
]

# Merge files, using landscape separator pages (ideal for lecture slides)
merge_pdfs(pdf_files, output_path="merged_output.pdf", landscape=True)

Searching for PDFs by Filename

from pdflex.search import search_pdfs, search_numeric_prefixed_pdfs

# General search: Find PDFs that start with a prefix and/or end with a suffix
pdf_list = search_pdfs("/path/to/search", prefix="Chapter", suffix=".pdf")
print("Found PDFs:", pdf_list)

# Lecture slides: Find PDFs with numeric float prefixes (e.g., "1.2_Intro.pdf")
lecture_slides = search_numeric_prefixed_pdfs("/path/to/algorithms-and-computation")
print("Found lecture slides:", lecture_slides)

Contributing

Contributions are welcome! Whether it's bug reports, feature requests, or code contributions, please feel free to:

  1. Open an issue
  2. Submit a pull request
  3. Improve documentation.
  4. Share your ideas!

Acknowledgments

This project is built upon several awesome PDF open-source projects:


License

PDFlex is released under the MIT license.
Copyright (c) 2020 to present PDFlex and contributors.

thematic-break

Project details


Download files

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

Source Distribution

pdflex-0.1.3.tar.gz (339.9 kB view details)

Uploaded Source

Built Distribution

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

pdflex-0.1.3-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file pdflex-0.1.3.tar.gz.

File metadata

  • Download URL: pdflex-0.1.3.tar.gz
  • Upload date:
  • Size: 339.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pdflex-0.1.3.tar.gz
Algorithm Hash digest
SHA256 bb2dcb0680bff75247f7f6eaf11be354b794f1aaca4615c6acc4a27e5d79d308
MD5 140068d863fd79a095ba54c6ca2c0bb9
BLAKE2b-256 1c648d5974e06f7985c4dfffb803428f4cf4d4b4f54454ee86131f46677fdbd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pdflex-0.1.3.tar.gz:

Publisher: ci.yml on eli64s/pdflex

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

File details

Details for the file pdflex-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: pdflex-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pdflex-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4b3dcaa75e6d9d77e80a207a6c360390e8ed6af3daaef36b1b3bc4f76e23442b
MD5 dfb9d02fb5f5312dae9080a06e10c8f4
BLAKE2b-256 a2095400839714f654fb60560867ce94c271d496877255d2ad7e258ec8120e84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pdflex-0.1.3-py3-none-any.whl:

Publisher: ci.yml on eli64s/pdflex

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

Supported by

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