Convert PDF documents to Markdown using Claude's native PDF API
Project description
pdf2md-claude
Convert PDF documents to high-quality Markdown using Claude's native PDF API. Handles large documents via chunked conversion with context passing, deterministic merging, and output validation. Preserves tables, formulas, figures, and document structure.
Installation
Requires Python 3.12+.
pip install pdf2md-claude
Or install from source:
pip install git+https://github.com/hacker-cb/pdf2md-claude.git
Quick Start
# Set API key
export ANTHROPIC_API_KEY="your-key-here"
# Convert a single PDF (output: document.md next to the PDF)
pdf2md-claude convert document.pdf
# Convert multiple PDFs
pdf2md-claude convert doc1.pdf doc2.pdf
# Convert all PDFs in a directory (shell glob)
pdf2md-claude convert *.pdf
pdf2md-claude convert docs/*.pdf
# Custom output directory
pdf2md-claude convert *.pdf -o output/
# Convert multiple PDFs in parallel (auto: one worker per document)
pdf2md-claude convert *.pdf -j
# Convert multiple PDFs in parallel (exactly 4 workers)
pdf2md-claude convert *.pdf -j 4
# Also works via python -m
python -m pdf2md_claude convert document.pdf
Output
By default, Markdown files are written next to the source PDF:
| Input | Output |
|---|---|
docs/document.pdf |
docs/document.md |
With -o DIR, all output goes to the specified directory.
Conversion Pipeline
Chunked conversion with context passing, deterministic merging, and validation:
- Split PDF into disjoint chunks
- Convert each chunk with context from the previous chunk's tail
- Merge chunks by page markers (deterministic, no LLM)
- Merge continued tables across page boundaries (deterministic, no LLM)
- Regenerate complex tables with colspan/rowspan from PDF using AI (extended thinking)
- Extract and inject images from bounding-box markers (deterministic, no LLM)
- Strip AI-generated image descriptions (optional,
--strip-ai-descriptions) - Format markdown: prettify HTML tables, normalize spacing (deterministic, no LLM)
- Validate output (page markers, tables, heading gaps, binary sequences, fabrication detection)
CLI Commands
The CLI uses subcommands. Run pdf2md-claude COMMAND --help for full options.
pdf2md-claude convert PDF [PDF ...] Convert PDFs to Markdown
pdf2md-claude validate PDF [PDF ...] Validate converted output (no API)
pdf2md-claude show-prompt [--rules FILE] Print the system prompt
pdf2md-claude init-rules [PATH] Generate a rules template
convert options
-o, --output-dir DIR Output directory (default: same directory as each PDF)
-j, --jobs [N] Process documents in parallel (-j = auto, -j N = fixed)
-v, --verbose Enable verbose logging
-f, --force Force reconversion even if output exists
--model MODEL Claude model to use (default: opus)
--max-pages N Convert only first N pages (useful for debugging)
--cache Enable prompt caching (1h TTL, reduces re-run cost)
--pages-per-chunk N Pages per conversion chunk (default: 10)
--retries N Max retries per chunk on transient errors (default: 10)
--rules FILE Custom rules file (replace/append/add rules)
--no-images Skip image extraction from bounding-box markers
--image-mode MODE Image extraction mode (auto/snap/bbox/debug)
--image-dpi DPI DPI for page-region rendering (default: 600)
--strip-ai-descriptions Remove AI-generated image descriptions
--no-fix-tables Skip AI-based table regeneration (default: enabled, costs extra tokens)
--no-format Skip markdown formatting (default: format enabled)
--from STEP Skip earlier stages and start from STEP (merge = re-merge from cached chunks;
post-processing steps like table fixing may still call API)
Run without arguments to display help.
Custom Rules
Customize the system prompt sent to Claude by creating a rules file. This lets you replace, extend, or add conversion rules without editing source code.
Auto-discovery: Place a file named .pdf2md.rules next to your PDF and it
will be applied automatically (no --rules flag needed).
Quick Start
# Generate a fully commented template
pdf2md-claude init-rules
# Edit .pdf2md.rules to your needs, then convert
pdf2md-claude convert document.pdf
# Or use an explicit rules file
pdf2md-claude convert document.pdf --rules my_rules.txt
# Preview the merged system prompt
pdf2md-claude show-prompt
pdf2md-claude show-prompt --rules my_rules.txt
Directives
| Directive | Description |
|---|---|
@replace NAME |
Completely replace a built-in rule (or preamble) |
@append NAME |
Add text to the end of a built-in rule (or preamble) |
@add |
New rule appended after all others |
@add after NAME |
New rule inserted after the named rule (or preamble) |
Valid names: preamble, fidelity, formatting, skip, headings,
tables, formulas, images, page_markers
Lines starting with ; are comments (stripped from rule text). Lines starting
with # are preserved (useful for Markdown headings inside rules).
Example Rules File
; Custom rules for IEC standards
@append preamble
The source document is in Chinese. Translate all content to English.
@replace tables
**Tables**: Use Markdown pipe tables for simple tables.
@add
**Code blocks**: Preserve all code listings with fenced blocks.
Use --show-prompt to inspect the final merged prompt before converting.
Environment
| Variable | Description |
|---|---|
ANTHROPIC_API_KEY |
Anthropic API key (required) |
File Structure
pdf2md-claude/
├── pdf2md_claude/ # Main package
│ ├── __init__.py # Package version export
│ ├── __main__.py # python -m pdf2md_claude entry point
│ ├── claude_api.py # Claude API client wrapper with retry and streaming
│ ├── cli.py # CLI argument parsing and orchestration
│ ├── converter.py # Core PDF→Markdown conversion logic
│ ├── formatter.py # Markdown and HTML table formatter
│ ├── images.py # Image extraction, rendering, and injection (pymupdf)
│ ├── markers.py # Centralized marker definitions (MarkerDef)
│ ├── merger.py # Deterministic page-marker merge + table continuation merging
│ ├── models.py # Model configurations, pricing, usage tracking
│ ├── pipeline.py # Single-document orchestration (convert → merge → validate → write)
│ ├── prompt.py # Prompts for Claude PDF conversion
│ ├── rules.py # Custom rules file parsing and prompt customization
│ ├── table_fixer.py # AI-based table regeneration (FixTablesStep)
│ ├── validator.py # Content validation (page markers, tables, fabrication, etc.)
│ └── workdir.py # Chunk persistence, resume, and work directory management
├── tests/ # Unit tests
│ ├── __init__.py
│ ├── conftest.py # Shared test fixtures
│ ├── test_claude_api.py
│ ├── test_cli.py
│ ├── test_converter.py
│ ├── test_formatter.py
│ ├── test_images.py
│ ├── test_markers.py
│ ├── test_models.py
│ ├── test_pipeline.py
│ ├── test_rules.py
│ ├── test_table_fixer.py
│ ├── test_table_merger.py
│ ├── test_validator.py
│ └── test_workdir.py
├── scripts/
│ └── setup-dev.sh # Dev environment setup (.venv + hooks)
├── .githooks/
│ └── pre-commit # Runs tests before commit
├── pyproject.toml # Project metadata and dependencies
├── .gitignore
└── README.md
Development
Setup
One command sets up everything (.venv, dependencies, git hooks):
git clone https://github.com/hacker-cb/pdf2md-claude.git
cd pdf2md-claude
bash scripts/setup-dev.sh
To recreate the .venv from scratch:
bash scripts/setup-dev.sh --force
Running Tests
./.venv/bin/python -m pytest tests/ -v
Debugging
Enable verbose logging:
pdf2md-claude convert -v document.pdf
Use --cache to avoid re-paying for PDF content on repeated runs during
prompt/pipeline development:
pdf2md-claude convert --cache document.pdf --max-pages 5
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pdf2md_claude-0.2.0.tar.gz.
File metadata
- Download URL: pdf2md_claude-0.2.0.tar.gz
- Upload date:
- Size: 135.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e5b241243306f8b1c6787705c044b1c38fc56f4553c03aa1513b066354e3c96
|
|
| MD5 |
d77f7648b08861966998fad6193a54d6
|
|
| BLAKE2b-256 |
772c759d80c33bb6f23948244ea7ec7c01aa47ded4fa45181ca61efe4e40e9f6
|
Provenance
The following attestation bundles were made for pdf2md_claude-0.2.0.tar.gz:
Publisher:
publish.yml on hacker-cb/pdf2md-claude
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pdf2md_claude-0.2.0.tar.gz -
Subject digest:
5e5b241243306f8b1c6787705c044b1c38fc56f4553c03aa1513b066354e3c96 - Sigstore transparency entry: 954656128
- Sigstore integration time:
-
Permalink:
hacker-cb/pdf2md-claude@d6fe6dc5a22fc2215a955a4c09d3e71a461a7376 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/hacker-cb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d6fe6dc5a22fc2215a955a4c09d3e71a461a7376 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pdf2md_claude-0.2.0-py3-none-any.whl.
File metadata
- Download URL: pdf2md_claude-0.2.0-py3-none-any.whl
- Upload date:
- Size: 89.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1667f79a6e64dd3f5a3e927ffcc0642b015d43cecdd4b127f6b3220793a6a93
|
|
| MD5 |
bdc788a8907285e57c245c870ffb78b9
|
|
| BLAKE2b-256 |
19596b7fd340d2f250a49f489836d48652f9e0959f5f874fa5d29e63bfc4fcb6
|
Provenance
The following attestation bundles were made for pdf2md_claude-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on hacker-cb/pdf2md-claude
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pdf2md_claude-0.2.0-py3-none-any.whl -
Subject digest:
a1667f79a6e64dd3f5a3e927ffcc0642b015d43cecdd4b127f6b3220793a6a93 - Sigstore transparency entry: 954656148
- Sigstore integration time:
-
Permalink:
hacker-cb/pdf2md-claude@d6fe6dc5a22fc2215a955a4c09d3e71a461a7376 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/hacker-cb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d6fe6dc5a22fc2215a955a4c09d3e71a461a7376 -
Trigger Event:
push
-
Statement type: