import pandas as pd

file_path = "aisc-shapes-database-v16.0.xlsx"
try:
    df = pd.read_excel(file_path, sheet_name="Database v16.0")
    print("Columns:", list(df.columns))
    print("First 5 rows:")
    print(df.head())
except Exception as e:
    print(f"Error reading excel: {e}")
