PDF Processing

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:

Related skills
Installs
Repository
89jobrien/steve
GitHub Stars
4
First Seen