import pandas as pd# 데이터를 엑셀에 맞게 평탄화 (date, title, content)flattened_data = []for item in data: date = item["date"] for section in item["sections"]: flattened_data.append({ "Date": date, "Section Title": section["title"], "Section Content": section["content"] })# DataFrame으로 변환df = pd.DataFrame(flattened_data)# 엑셀로 저장df.to_excel("crawled_data...