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 dy9759/specskillsforclaudecode

Installs
GitHub Stars
5
First Seen