File size: 177 Bytes
758f9f6
010071f
 
414568a
010071f
758f9f6
1
2
3
4
5
6
7

import pandas as pd

def parse_csv_tool(file_path: str) -> str:
    df = pd.read_csv(file_path)
    return f"Schema: {list(df.columns)}\n\nStats:\n{df.describe().to_string()}"