File size: 214 Bytes
6e079c7
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import pandas as pd
import os

def load_data(file_path: str)->pd.DataFrame:
    if not os.path.exists(file_path):
        raise FileNotFoundError(f"File not found {file_path}")

    return pd.read_csv(file_path)