Skip to main content

Blackletter

A reference to blackletter law, this tool removes potentially copyrighted material from legal case law PDFs. This fulfills our goal of respecting any intellectual property rights others may have while making it possible to digitize and publish case law. This is essential to our mission of making case law accessible to all — a prerequisite for meaningful participation in our democracy.

Proprietary annotations removed from judicial opinions include headnotes, captions, and key cites.

Installation

pip install blackletter

The base install covers opinion pairing, redaction, margin and page-number helpers, and OCR — everything that runs without a detection/OCR model. The heavy inference frameworks live in optional extras, so a consumer that offloads detection (e.g. to a remote GPU worker) can keep a lean install:

Install Adds Use for
blackletter base pipeline: pairing, redaction, margins, validation, OCR pairing/redaction when detection is offloaded (pass skip_doctr=True)
blackletter[detect] local YOLO detection (ultralytics + torch, huggingface_hub) running detect() and the draw CLI locally
blackletter[refine] docTR line-level headnote refinement redaction without skip_doctr=True; the process CLI
blackletter[analyze] the analyze pipeline: PaddleOCR (paddlepaddle, paddleocr) plus detect analyze_pdf() / page-number validation
blackletter[analyze,refine] everything above the full local pipeline

Notes:

  • [analyze] includes [detect] — the analyze pipeline runs YOLO in addition to PaddleOCR.
  • Without [refine], docTR headnote refinement is unavailable, so redaction helpers must be called with skip_doctr=True. [refine] is kept separate from [detect]/[analyze] so consumers that skip refinement (e.g. a web/daemon image) save ~200 MB of dependencies.
  • The process and draw CLI commands run YOLO and require [detect]; process also runs the refinement pass and requires [refine].

Or install from source:

git clone https://github.com/freelawproject/blackletter
cd blackletter
pip install -e '.[analyze,refine]'

Quick Start

Command line:

blackletter process path/to/volume.pdf --reporter f3d --volume 952 --first-page 1 --output output/

Python:

from blackletter import process

process(
    "path/to/volume.pdf",
    "output/",
    reporter="f3d",
    volume="952",
    first_page=1,
)

This runs the full pipeline: YOLO detection, page number extraction, opinion splitting, and redaction, all in one pass. No text layer is added: the geometry measures the page's ink directly. Pass --text-layer if you want the delivered PDFs to be searchable.

How It Works

The process command runs a single-pass pipeline:

  1. Detection: Runs a YOLO model to identify proprietary elements (headnotes, captions, key cites, brackets, etc.) and structural elements (page numbers, dividers, footnotes)
  2. Page Numbers: Extracts and validates page numbers using OCR on detected regions
  3. Opinion Pairing: Matches case captions to key icons to identify opinion boundaries
  4. Splitting & Redaction: Produces per-opinion variants and an optional per-page LLM split:
    • Unredacted (opt-in, via --unredacted): Raw opinion pages extracted from the source
    • Redacted: Per-opinion PDFs with potentially copyrighted content (headnotes, brackets, key icons) blacked out
    • LLM (opt-in, via --llm): One PDF per source page, sliced from the fully redacted document, with an invisible <--CASEEND--> marker stamped on every redacted Key-icon location so downstream LLM passes can detect opinion boundaries

A searchable text layer is optional and comes last, over the files that have already been redacted and masked (--text-layer on the CLI, or api.add_text_layer from Python). Doing it this way avoids spending OCR time on content that is about to be blacked out. To OCR the source before detection instead, pass --ocr.

Additionally produces:

  • A full redacted copy of the entire document
  • Extracted case law images (charts, photos, etc.) as PNGs
  • A detections.json export of all YOLO detections for review tooling

Models

Blackletter uses three YOLO models, selected via CLI flags:

Flag File Classes Description
(default) small.pt 14 Fast, handles most cases
--medium medium.pt 17 Better structural detection
--large large.pt 21 Highest accuracy, detects additional elements (editorial, judges, docket, court, citation, date)

The models are hosted at freelawproject/blackletter-weights and are downloaded automatically to blackletter/weights/ on first use, keeping the package itself small.

Command Line Options

Process Command

blackletter process PDF [OPTIONS]

Positional Arguments:
  pdf                       Path to the source PDF

Options:
  --reporter STR            Reporter abbreviation (e.g. f3d, a3d)
  --volume STR              Volume number
  --first-page INT          Page number of the first page in the PDF (default: 1)
  -o, --output PATH         Base output directory (required)
  --model PATH              Path to custom YOLO model weights
  --medium                  Use the medium model (17 classes)
  --large                   Use the large model (21 classes)
  --footnotes               Extract footnotes into separate PDFs
  --unredacted              Also generate unredacted opinion PDFs
  --llm                     Also generate per-page LLM PDFs with <--CASEEND--> stamps
  --no-shrink               Skip downsampling (default: shrink to ~148 KB/page)
  --optimize {0,1,2,3}      ocrmypdf optimization level (default: 1)
  --bitonal                 Convert to 1-bit B&W before processing (for already-bitonal scans)
  --detect-only             Stop after detection and pairing — no PDFs written (Phase 1 only)
  --text-layer              Add a searchable text layer to the generated PDFs, after redaction
  --ocr                     OCR the source before detection (rarely needed; prefer --text-layer)

Validate Command

QA tool that checks a PDF's page number sequence for missing, duplicate, or misnumbered pages. Uses YOLO to locate page number regions, then PaddleOCR to read them, with Tesseract and GLM-OCR as fallbacks.

blackletter validate path/to/volume.pdf
blackletter validate path/to/volume.pdf --first-page 100 --last-page 500
blackletter validate path/to/volume.pdf --json

If the filename follows the convention reporter.volume.first.last.pdf (e.g. sct.143.1.888.pdf), the expected page range is inferred automatically.

Features:

  • Parallel OCR across multiple workers
  • Auto-correction of consistent OCR misreadings (e.g. systematic off-by-800 errors)
  • Detection of gaps, duplicates, backwards jumps, and page ranges (e.g. "31-32")
  • Structural checks for blank pages and orientation changes

Requires optional dependencies: pip install blackletter[analyze]

Draw Command

Visualize YOLO detections on a PDF — useful for debugging model output:

blackletter draw path/to/volume.pdf --output annotated.pdf
blackletter draw path/to/volume.pdf --output annotated.pdf --labels CASE_CAPTION KEY_ICON HEADNOTE
blackletter draw path/to/volume.pdf --output annotated.pdf --large

Output Structure

output/<reporter>/<volume>/<first-page>/
    <reporter>.<volume>.<first>.<last>.pdf   # OCR'd/processed source PDF
    <reporter>.<volume>.redacted.pdf         # Full redacted document

    detections.json       # All YOLO detections (label, bbox, confidence per page)
    pages_meta.json       # Column bounds and midpoints per page
    opinions.json         # Opinion pairs with outside-opinion rects
    redaction_rects.json  # Precomputed redaction rectangles (used by review UI)
    margin_rects.json     # Margin cleanup rectangles

    images/               # Extracted case law images (PNGs)
    unredacted/           # Individual opinion PDFs (raw, no redaction) — only if --unredacted
    redacted/             # Individual opinion PDFs (copyrighted content redacted)
    llm/                  # Per-page fully-redacted PDFs with invisible <--CASEEND-->
                          # stamps on each Key-icon location — only if --llm

The JSON files are designed for use with a review UI — they allow manual inspection and adjustment of detections and redaction boundaries before final output is committed.

Detection Labels

Labels detected across all models (availability depends on model size):

Label Models Description
KEY_ICON all West key cite icons
DIVIDER all Opinion section dividers
PAGE_HEADER all Running headers
CASE_CAPTION all Opinion title/parties
FOOTNOTES all Footnote sections
HEADNOTE_BRACKET all Bracketed headnote markers
CASE_METADATA all Court, date, counsel info
CASE_SEQUENCE all Docket/case sequence numbers
PAGE_NUMBER all Page numbers
STATE_ABBREVIATION all State abbreviation markers
IMAGE all Photos, charts, diagrams
HEADNOTE all Headnote text
BACKGROUND all Background/procedural history region
SYLLABUS all Supreme Court syllabus sections
EDITORIAL medium, large Editorial notes
JUDGES medium, large Judge name blocks
TEXT_COLUMN medium, large Column boundaries
DOCKET large Docket number regions
DATE large Decision date regions
COURT large Court name regions
CITATION large Reporter citation regions

Margin Cleanup

After redaction, Blackletter automatically white-outs scan artifacts in page margins using the PDF text layer to find content boundaries. Pages with narrow text spans (appendices, image pages) are skipped automatically.

Requirements

  • Python 3.12+
  • Tesseract OCR (for image-only PDFs)
  • libgl1 (Linux only): the base install uses non-headless opencv-python, which loads libGL.so.1 when cv2 is imported. Minimal images (e.g. python:3.12-slim, distroless) don't ship it by default.

Install tesseract:

# macOS
brew install tesseract

# Ubuntu/Debian
sudo apt install tesseract-ocr

Install libgl1 (Linux):

# Ubuntu/Debian
sudo apt install libgl1

License

GNU Affero General Public License v3

Contributing

Contributions welcome!

Download files

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

Source Distribution

blackletter-0.2.0.tar.gz (170.9 kB view details)

Uploaded Source

Built Distribution

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

blackletter-0.2.0-py3-none-any.whl (130.8 kB view details)

Uploaded Python 3

File details

Details for the file blackletter-0.2.0.tar.gz.

File metadata

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

File hashes

Hashes for blackletter-0.2.0.tar.gz
Algorithm Hash digest
SHA256 85a0d08edda53567f92b39bb1d2bc8378ed5a979882cb1a44a7fb1a0b01c01be
MD5 a2e3932938c97c83fd0122d679e4f07c
BLAKE2b-256 ab8aa744ed3dbe5b00716a91f9b8b9933b125d7aa0b54710ebf4428621bcbf5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blackletter-0.2.0.tar.gz:

Publisher: pypi.yml on freelawproject/blackletter

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

File details

Details for the file blackletter-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: blackletter-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 130.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for blackletter-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e909a0f2b96807de7287470874e75dbf1500ae7a7081196c3938c52d1b4f90b5
MD5 e52ebd00f982d7727cef4f483baca81d
BLAKE2b-256 1961db2868191379fadb08cea86cc8a6f3b2b897a045cb35a00b27147ad63ed9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blackletter-0.2.0-py3-none-any.whl:

Publisher: pypi.yml on freelawproject/blackletter

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

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

0.1.1

2 files

0.1.0

2 files

0.0.13

2 files

0.0.12

2 files

0.0.11

2 files

0.0.10

2 files

0.0.9

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

Supported by

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