File size: 179 Bytes
010071f
 
414568a
010071f
414568a
1
2
3
4
5
6
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()}"