PDF Processing

Originally from89jobrien/steve
Installation
SKILL.md

PDF Processing

Quick start

Use pdfplumber to extract text from PDFs:

import pdfplumber

with pdfplumber.open("document.pdf") as pdf:
    text = pdf.pages[0].extract_text()
    print(text)

Extracting tables

Extract tables from PDFs with automatic detection:

Installs
GitHub Stars
30.0K
First Seen
PDF Processing — davila7/claude-code-templates