원클릭으로
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.