pdf-extractor

Installation
SKILL.md

PDF Extraction Instructions

Overview

This skill extracts text and data from PDF files using Python libraries.

Usage

Basic Text Extraction

import pdfplumber

with pdfplumber.open("document.pdf") as pdf:
    for page in pdf.pages:
        text = page.extract_text()
        print(text)
Installs
1
GitHub Stars
1
First Seen
Mar 29, 2026
pdf-extractor — liushuang393/serverlessaiagents