just do 5

This commit is contained in:
Jun-te Kim 2026-02-13 14:08:09 +00:00
parent 5770e0f066
commit da79ccf759

View file

@ -211,7 +211,8 @@ def handler(event, context):
csv_data = read_csv_from_s3_dict(bucket, key)
df = pd.DataFrame(csv_data)
df = df.head(1983)
# df = df.head(1983)
df = df.head(5)
logger.info(f"CSV loaded: {len(df)} rows, {len(df.columns)} columns")