π¦ ClawHub
by @wu-uk
Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs...
π‘ Examples
from pypdf import PdfReader, PdfWriterRead a PDF
reader = PdfReader("document.pdf")
print(f"Pages: {len(reader.pages)}")Extract text
text = ""
for page in reader.pages:
text += page.extract_text()
TERMINAL
clawhub install latex-formula-extraction-pdf