Deterministic PDF/DOCX parser for RAG — Rust core, Python & TS bindings
Project description
English · 中文
▶ Live playground — drag a PDF, watch it parse in your browser (nothing is uploaded)
Deterministic PDF/DOCX parser for RAG / LLMs — one Rust core, with Python, Node & WASM bindings that produce byte-identical output.
pdfmuse is a precision pre-layer for AI/RAG: it extracts everything a file actually contains — text with exact coordinates, fonts, vector rules, tables, links — fast, robustly, and identically across every binding. It stops cleanly at the ML boundary: OCR and visual layout inference are left to a pluggable backend, so the core stays deterministic with zero ML dependencies. It is not another probabilistic vision model.
Why pdfmuse
| Complete | Keeps the finest-grained chars + coordinates; never silently drops content. |
| Fast | Zero-copy streaming Rust core with a custom O(1) object parser + content tokenizer and per-page parallelism. |
| Robust | A broken page/object never sinks the doc — returns structured errors, never panics (fuzz-tested). |
| Deterministic | Same input → same output. No probabilistic models, no time/RNG in the core path. |
| Consistent | Python / Node / WASM call one Rust core; output is byte-identical (CI-enforced). |
| CJK first-class | CID/Type0 fonts + CMap/ToUnicode in the main path; compatibility codepoints NFKC-normalized for clean search. |
Performance
Two things matter for a RAG pre-layer: speed, and whether it keeps the content. Both are measured on a public, reproducible corpus — 61 arXiv papers across 8 fields (large, dense PDFs — a deliberately hard case), so you can rerun the exact benchmark:
python benches/fetch_corpus.py --out /tmp/corpus # the same PDFs, from a fixed manifest
pip install "pdfmuse==0.1.10" "pymupdf==1.28.0" "pdfplumber==0.11.10"
python benches/compare.py --dir /tmp/corpus
Text extraction (to_text, median of 7 runs after warm-up; PyMuPDF 1.28 / MuPDF 1.29, pdfplumber 0.11, macOS arm64, 65 papers):
| vs | speedup (geomean) | win rate | worst case |
|---|---|---|---|
| PyMuPDF | ~7.7× faster | 65 / 65 (100%) | still 2.5× faster |
| pdfplumber | ~150× faster | 65 / 65 (100%) | 69× |
pdfmuse is faster on every file in this corpus — including a 22 MB paper (9× faster) and a plot-heavy one that draws 18k marker glyphs. Content is preserved: median 100% of PyMuPDF's non-whitespace characters (n=65).
to_text() / to_markdown() return a string straight from the Rust core (no full-IR deserialization). The full parse() — chars + bboxes + tables, far more than text — costs only ~2.3× the to_text time, still under PyMuPDF on most files. The native Node binding is ~as fast as the Rust core; WASM ~1.7×.
Honest limit — reading order: extraction is complete (100% of chars) and deterministic, but flattening a 2-D page to 1-D text is where the hard cases live. Single-column, tables, and clean two-column read correctly; dense two-column academic PDFs with very tight gutters can still interleave the columns (a known geometric edge — see docs/ / issue tracker). Eyeball any file with examples/visual_check.py.
Install
# Rust
cargo add pdfmuse-core
# Python (abi3 wheels)
pip install pdfmuse
# Node
npm install @pdfmuse/node # native binding
# WASM (browser)
npm install @pdfmuse/core # or build: wasm-pack build crates/pdfmuse-wasm --target web
Usage
CLI (debug/inspection):
pdfmuse parse report.pdf --format md # structured Markdown (headings, tables)
pdfmuse parse report.pdf --format json # full IR (chars, bboxes, blocks, warnings)
Rust:
let data = std::fs::read("report.pdf")?;
let doc = pdfmuse_core::parse(&data, None)?; // auto-detect PDF/DOCX
for page in &doc.pages {
for ch in &page.chars { /* ch.text, ch.bbox {x0,y0,x1,y1}, ch.size */ }
}
let md = pdfmuse_core::to_markdown(&doc);
let chunks = pdfmuse_core::chunk(&doc); // RAG chunks + {page, bbox, heading_path}
Python:
import pdfmuse
data = open("report.pdf", "rb").read()
text = pdfmuse.to_text(data) # plain text — fast path (~1.3ms, no full-IR json.loads)
md = pdfmuse.to_markdown(data) # structured Markdown — headings (PDF & DOCX) + tables
doc = pdfmuse.parse(data) # full IR: doc.pages[i].chars/blocks with bboxes
clean = pdfmuse.to_text(data, drop_boilerplate=True) # strip running headers/footers
Node:
const { toText, toMarkdown, parse } = require("@pdfmuse/node");
const data = fs.readFileSync("report.pdf");
const text = toText(data); // plain text — fast path
const clean = toText(data, undefined, true); // strip running headers/footers
const doc = parse(data); // full IR (typed Document)
WASM (browser — digital PDFs; scanned pages return a NeedsOcr warning to hand off server-side):
import init, { to_text, parse } from "@pdfmuse/core";
await init();
const text = to_text(new Uint8Array(bytes)); // plain text
const doc = JSON.parse(parse(new Uint8Array(bytes))); // full IR
Integrations
-
LangChain —
langchain-pdfmuse: aPdfmuseLoaderwithsingle/page/elementsmodes. Inelementsmode each chunk carries section-aware metadata (heading_path,bbox,category) — reproducible chunks for RAG.from langchain_pdfmuse import PdfmuseLoader docs = PdfmuseLoader("report.pdf", mode="elements").load()
-
LlamaIndex —
llama-index-readers-pdfmuse: aPdfmuseReaderwith the same modes and section-aware metadata.from llama_index.readers.pdfmuse import PdfmuseReader docs = PdfmuseReader(mode="elements").load_data("report.pdf")
-
Haystack —
pdfmuse-haystack: aPdfmuseConvertercomponent (text/markdown) for Haystack 2.x pipelines.from pdfmuse_haystack import PdfmuseConverter docs = PdfmuseConverter(mode="markdown").run(sources=["report.pdf"])["documents"]
Scope boundary
In the core (deterministic): text + coordinates/font/size/color · vector rules & rects · line/paragraph/column clustering · heading detection (font-size + numbering) · running header/footer detection + opt-in removal · ruled & whitespace-aligned table reconstruction · full DOCX structure · JSON / Markdown / RAG-chunk output.
Out of the core (pluggable VisionBackend): scanned-page OCR · borderless-table structure recognition · heading/body/caption classification. Text-less (scanned/image) pages are flagged NeedsOcr and left for a backend — see docs/adr/0001-pdf-engine-strategy.md.
Guarding this boundary is what keeps pdfmuse fast, stable, and distinct from vision models.
Layout
crates/
pdfmuse-core/ pure-Rust core: PDF/DOCX → unified IR (parser, tokenizer, layout, output)
pdfmuse-python/ PyO3 (abi3) binding
pdfmuse-node/ napi-rs binding
pdfmuse-wasm/ wasm-bindgen binding
pdfmuse-cli/ debug CLI (`pdfmuse`)
tests/{corpus,snapshots} golden corpus + insta snapshots
tests/parity/ cross-binding byte-identical gate (Python == Node == WASM)
examples/visual_check.py render original ↔ coordinate reconstruction for QA
fuzz/ cargo-fuzz targets (never-panic)
Testing gates
- Snapshot tests (
insta+tests/corpus) - Cross-binding parity CI — Python/Node/WASM output byte-identical (a red gate blocks merge)
- Robustness — mutated/garbage input never panics (
tests/robustness.rs+fuzz/) - CJK correctness suite
Status
Core is feature-complete (milestones M0–M4 + real-world hardening M4.5): PDF + DOCX → unified IR → JSON / Markdown / RAG chunks, three byte-identical bindings, encryption, CJK. Currently in M5 · polish & release. Roadmap and tasks live in Linear (project pdfmuse).
License
Dual-licensed under MIT or Apache-2.0, at your option.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
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 pdfmuse-0.1.10-cp38-abi3-win_amd64.whl.
File metadata
- Download URL: pdfmuse-0.1.10-cp38-abi3-win_amd64.whl
- Upload date:
- Size: 788.4 kB
- Tags: CPython 3.8+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2a9b4986bbcd8334d48a414cd271302c5d0c206be46e2c9a13d969e9db6a8a7
|
|
| MD5 |
fa65e38cb58b4acaf6d88d1c478e1be5
|
|
| BLAKE2b-256 |
d8e7607bd3dcc5602632d76c5bf2c37a18225e67e7e1c179c20bc872f95f17b5
|
Provenance
The following attestation bundles were made for pdfmuse-0.1.10-cp38-abi3-win_amd64.whl:
Publisher:
release.yml on casperkwok/pdfmuse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pdfmuse-0.1.10-cp38-abi3-win_amd64.whl -
Subject digest:
e2a9b4986bbcd8334d48a414cd271302c5d0c206be46e2c9a13d969e9db6a8a7 - Sigstore transparency entry: 2069848308
- Sigstore integration time:
-
Permalink:
casperkwok/pdfmuse@ebcd5592858649fe5fc5e923d17345f2120d38ed -
Branch / Tag:
refs/tags/v0.1.10 - Owner: https://github.com/casperkwok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ebcd5592858649fe5fc5e923d17345f2120d38ed -
Trigger Event:
push
-
Statement type:
File details
Details for the file pdfmuse-0.1.10-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pdfmuse-0.1.10-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 950.5 kB
- Tags: CPython 3.8+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88a250b385afc3814b5ae006732e1c8d246b3a5b47300d8fd67b77b1a24bfb4a
|
|
| MD5 |
8cc7704b742b19c9df8da512d504ba97
|
|
| BLAKE2b-256 |
b500b54cb117f8668d83eec593003c628b89966f51db2df020eb5372a44592a8
|
Provenance
The following attestation bundles were made for pdfmuse-0.1.10-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on casperkwok/pdfmuse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pdfmuse-0.1.10-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
88a250b385afc3814b5ae006732e1c8d246b3a5b47300d8fd67b77b1a24bfb4a - Sigstore transparency entry: 2069848691
- Sigstore integration time:
-
Permalink:
casperkwok/pdfmuse@ebcd5592858649fe5fc5e923d17345f2120d38ed -
Branch / Tag:
refs/tags/v0.1.10 - Owner: https://github.com/casperkwok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ebcd5592858649fe5fc5e923d17345f2120d38ed -
Trigger Event:
push
-
Statement type:
File details
Details for the file pdfmuse-0.1.10-cp38-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pdfmuse-0.1.10-cp38-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 838.3 kB
- Tags: CPython 3.8+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4634847c2d8c2bf95ac512ea2834ad548a1ca8fcf083fe770ad1a0b584fd30c9
|
|
| MD5 |
e8be08c987442c168965601b631e89e1
|
|
| BLAKE2b-256 |
a4f0cd096745a4f5f9d598e259eb317273a3e358b06d55ec06ec070658115a94
|
Provenance
The following attestation bundles were made for pdfmuse-0.1.10-cp38-abi3-macosx_11_0_arm64.whl:
Publisher:
release.yml on casperkwok/pdfmuse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pdfmuse-0.1.10-cp38-abi3-macosx_11_0_arm64.whl -
Subject digest:
4634847c2d8c2bf95ac512ea2834ad548a1ca8fcf083fe770ad1a0b584fd30c9 - Sigstore transparency entry: 2069848490
- Sigstore integration time:
-
Permalink:
casperkwok/pdfmuse@ebcd5592858649fe5fc5e923d17345f2120d38ed -
Branch / Tag:
refs/tags/v0.1.10 - Owner: https://github.com/casperkwok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ebcd5592858649fe5fc5e923d17345f2120d38ed -
Trigger Event:
push
-
Statement type: