excel-threshold-analysis-and-styling

Installation
SKILL.md

Excel Threshold Analysis and Styling

Note: This sub-skill covers one step of the Excel analysis workflow. For the full pipeline (file reading, row counting, large-file optimization, export), see the parent workflow SKILL.md.

Step1 读取 Excel 文件中所有工作表的行数并汇总,用于评估数据规模。

import pandas as pd

file_path = 'input_file.xlsx'

# 读取所有 sheet 名称并统计总行数
xls = pd.ExcelFile(file_path)
sheet_names = xls.sheet_names
total_rows = 0
Installs
2
GitHub Stars
4.9K
First Seen
Jul 3, 2026
excel-threshold-analysis-and-styling — opensensenova/sensenova-skills