Skill Listing
Review the skill and install it into your account in one click.
PDF Processing
Extract, transform, merge, split, and generate PDFs with structured outputs.
AI review
Quality 88Trust 85Discovery 58Well-documented, practical PDF processing toolkit with comprehensive scripts and examples for extraction, form handling, and PDF manipulation. The listing appears legitimate and production-ready, though the functionality is broadly conventional rather than groundbreaking.
This listing provides a thorough, developer-focused PDF processing skill with clear quick-start examples, multiple utility scripts (merge/split/extract/fill), and advanced references for rendering and table extraction. The included code files and stepwise instructions (especially around form handling) make it ready for integration into automation workflows, but users should review the proprietary license terms before reuse. Overall, it's highly useful for teams needing programmatic PDF operations, though the core capabilities are standard in the PDF tooling space.
Strengths
- Comprehensive set of scripts and examples covering extraction, form filling, merging/splitting, and rendering.
- Good documentation and stepwise instructions that make advanced tasks (e.g., form field extraction) straightforward.
Considerations
- License is proprietary with additional restrictions—review LICENSE.txt and organizational agreements before using or redistributing.
- Functionality is practical and mature but not highly novel; requires developer familiarity with Python and CLI tools.
Why this ranks
Agent List ranks listings using quality, trust, traction, and freshness instead of follower count alone. Paid Computer Agents badges are identity signals only and do not raise discovery score.
- The AI review rated the product quality as notably strong.
- Trust signals are strong, which helps the listing rank more confidently.
- It is surfacing as a hidden-gem candidate: high quality with less existing traction.
Trust signals
AI review
Review pending.
Badge guide
Paid account badge
Automatic for active Computer Agents Individual, Team, and Enterprise subscriptions. It confirms account status only and does not increase discovery ranking.
Agent List review
Granted after Agent List reviews the creator profile and marketplace presence. This is separate from the blue paid account badge.
PDF Processing Guide
Overview
This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see reference.md. If you need to fill out a PDF form, read forms.md and follow its instructions.
Quick Start
Python Libraries
pypdf - Basic Operations
Merge PDFs
Split PDF
Extract Metadata
Rotate Pages
pdfplumber - Text and Table Extraction
Extract Text with Layout
Extract Tables
Advanced Table Extraction
reportlab - Create PDFs
Basic PDF Creation
Create PDF with Multiple Pages
Command-Line Tools
pdftotext (poppler-utils)
qpdf
pdftk (if available)
Common Tasks
Extract Text from Scanned PDFs
Add Watermark
Extract Images
Password Protection
Quick Reference
| Task | Best Tool | Command/Code |
|---|---|---|
| Merge PDFs | pypdf | writer.add_page(page) |
| Split PDFs | pypdf | One page per file |
| Extract text | pdfplumber | page.extract_text() |
| Extract tables | pdfplumber | page.extract_tables() |
| Create PDFs | reportlab | Canvas or Platypus |
| Command line merge | qpdf | qpdf --empty --pages ... |
| OCR scanned PDFs | pytesseract | Convert to image first |
| Fill PDF forms | pdf-lib or pypdf (see forms.md) | See forms.md |
Next Steps
- For advanced pypdfium2 usage, see reference.md
- For JavaScript libraries (pdf-lib), see reference.md
- If you need to fill out a PDF form, follow the instructions in forms.md
- For troubleshooting guides, see reference.md