Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
读取和编辑 Word、PDF、Excel 文档。使用 python-docx、pdfplumber、openpyxl
读取和编辑 Word、PDF、Excel 文档。使用 python-docx、pdfplumber、openpyxl
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
功能命令读取 Wordpython3 -m doc_handler read docx 文件读取 PDFpython3 -m doc_handler read pdf 文件读取 Excelpython3 -m doc_handler read xlsx 文件写入 Wordpython3 -m doc_handler write docx 文件 "内容"
# 读取 Word 文档 python3 -c "from docx import Document; d = Document('file.docx'); print('\\n'.join([p.text for p in d.paragraphs]))" # 读取 PDF python3 -c "import pdfplumber; with pdfplumber.open('file.pdf') as pdf: print(pdf.pages[0].extract_text())" # 读取 Excel python3 -c "import pandas; df = pandas.read_excel('file.xlsx'); print(df)"
python-docx pdfplumber openpyxl pandas
Long-tail utilities that do not fit the current primary taxonomy cleanly.
Largest current source with strong distribution and engagement signals.