(中文)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
from pypdf import PdfReader, PdfWriter
# Read a PDF
reader = PdfReader("document.pdf")
print(f"Pages: {len(reader.pages)}")
# Extract text
text = ""
for page in reader.pages:
text += page.extract_text()
More from jackiexiao/jackie-skills-everyday
docx
QUERY LENGTH LIMIT EXCEEDED. MAX ALLOWED QUERY : 500 CHARS
48pptx
QUERY LENGTH LIMIT EXCEEDED. MAX ALLOWED QUERY : 500 CHARS
9xlsx
QUERY LENGTH LIMIT EXCEEDED. MAX ALLOWED QUERY : 500 CHARS
9agent-browser
AI代理的浏览器自动化CLI。在用户需要与网站交互时使用,包括导航页面、填写表单、单击按钮、截屏、提取数据、测试Web应用或自动执行任何浏览器任务。触发器包括“打开网站”、“填写表单”、“单击按钮”、“截屏”、“从页面中抓取数据”、“测试此Web应用”、“登录到网站”、“自动浏览器操作”或任何需要编程Web交互的任务。
9find-skills
当用户提出诸如“我如何做X”、“为X找到技能”、“是否有可以……的技能”或表示有兴趣扩展功能等问题时,帮助他们发现并安装代理技能。当用户正在寻找可能作为可安装技能存在的功能时,应使用此技能。
8writing-plans
(中文)Use when you have a spec or requirements for a multi-step task, before touching code
8