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

More from davila7/claude-code-templates

Installs
GitHub Stars
27.2K
First Seen