一键导入
xlsx
Create, read, and modify Excel (.xlsx) spreadsheets using Python libraries openpyxl and pandas.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create, read, and modify Excel (.xlsx) spreadsheets using Python libraries openpyxl and pandas.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage Git repositories within the workspace. Check status, commit changes, view diffs, and create branches.
Create, modify, and analyze PowerPoint presentations (.pptx) using standard Python libraries.
Create animated GIFs optimized for Slack (small file size, loop, transparency) using Python libraries like imageio and Pillow.
Generate structured JSON theme configurations for UI components, presentations, or documents. Supports color palettes, typography, and spacing.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends AI capabilities with specialized knowledge, workflows, or tool integrations.
Suite of tools for creating elaborate, multi-component AnyCowork HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
| name | xlsx |
| description | Create, read, and modify Excel (.xlsx) spreadsheets using Python libraries openpyxl and pandas. |
| license | Apache 2.0 |
This skill provides capabilities to work with Excel spreadsheets (.xlsx) using Python.
This skill relies on openpyxl and pandas.
pip install openpyxl pandas
Use openpyxl to create a new workbook.
from openpyxl import Workbook
wb = Workbook()
ws = wb.active
ws.title = "My Sheet"
# Add data
ws['A1'] = "Name"
ws['B1'] = "Value"
ws.append(["Alice", 100])
ws.append(["Bob", 200])
wb.save("output.xlsx")
To easily read an Excel file into a DataFrame:
import pandas as pd
df = pd.read_excel("data.xlsx", sheet_name="Sheet1")
print(df.head())
To edit an existing file:
from openpyxl import load_workbook
wb = load_workbook("existing.xlsx")
ws = wb.active
# Update a cell
ws['B2'] = 999
# save
wb.save("updated.xlsx")
pandas for heavy data reading/analysis. Use openpyxl for formatting, styles, and precise cell manipulation.openpyxl handles save/close explicitly).openpyxl's read_only=True mode or processing in chunks with pandas.