irregular-excel-parsing

Installation
SKILL.md

Irregular Excel File Parsing

Use this skill when you encounter Excel files where standard pandas.read_excel() fails due to:

  • Headers not in row 0 (6-9+ header rows common)
  • Merged cells in header area
  • Unknown or inconsistent header row positions
  • Multiple title/metadata rows before actual data

Step-by-Step Instructions

Step 1: Read Excel Without Headers

First, read the entire sheet with header=None to get raw data:

import pandas as pd
Installs
1
Repository
hkuds/openspace
GitHub Stars
6.7K
First Seen
Jun 1, 2026
irregular-excel-parsing — hkuds/openspace