name: pdf-parsing-utils description: Extracting structured text tables and content blocks from PDF files using PyPDF or pdfplumber. allowed-tools: Read Write Edit Bash license: MIT license metadata: skill-author: Lord1Egypt
Pdf Parsing Utils
Overview
PDF parsing translates visual PDF files into machine-readable text and clean data structures.
When to Use This Skill
Use to parse text parameters out of uploaded financial statements or text reports.
Quick Start (with runnable code examples)
import pypdf
def extract_pdf_text(pdf_path):
reader = pypdf.PdfReader(pdf_path)
text = ""
for page in reader.pages:
text += page.extract_text() + "\n"
return text
Advanced Usage
Extract tabular tables using pdfplumber, extract metadata headers, decrypt passwords, and manage page rotations.
Key References
Dependencies
- pypdf>=3.0.0
Related skills
Prompt Engineering
Data & AI
Prompt engineering best practices and templates to maximize AI outputs.
claudeCursorWindsurf+1beginner
289
78
866
Data Visualization
Data & AI
Generates data visualizations and charts tailored to your data.
claudeCursorWindsurfintermediate
198
56
696
RAG Architecture Setup
Data & AI
Setup guide for RAG (Retrieval-Augmented Generation) architectures.
claudeCursorWindsurfadvanced
167
51
659