在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用xlsx
星标548
分支53
更新时间2026年6月26日 17:35
Extract data from Excel and CSV files
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
4 个文件SKILL.md
readonly菜单
Extract data from Excel and CSV files
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Extract text from PDF documents
Extract text from Microsoft Word documents
Extract text from images using a vision LLM
Ingest Markdown and plain text files
Extract text from Microsoft PowerPoint presentations
Fetch and extract text from web URLs
| name | xlsx |
| version | 1.0 |
| description | Extract data from Excel and CSV files |
| entry | {"script":"scripts/main.py","class":"XlsxSkill"} |
| triggers | {"extensions":[".xlsx",".csv"],"intents":["spreadsheet","excel","csv"]} |
| requires | ["openpyxl"] |
| author | axoviq.com |
| license | AGPL-3.0-or-later |
Reads .xlsx files using openpyxl and .csv files using the stdlib csv
module, returning all rows as comma-separated text.
pip install openpyxl
.csv files use only the Python standard library — no additional install required.
import asyncio
from synthadoc.skills.xlsx.scripts.main import XlsxSkill
skill = XlsxSkill()
async def main():
result = await skill.extract("/path/to/data.xlsx")
print(result.text) # all rows as comma-separated text
print(result.metadata) # {"rows": N, "sheets": N} (xlsx only)
asyncio.run(main())
.xlsx or .csvspreadsheet, excel, csv