Just wondering if there is a way to pass the other arguments than path for the pd.read_csv dynamically ?
filepath='c:\works\abcd.csv'
args = {"delimiter":"|","index_col":"None"}
df=pd.read_csv(filepath,args)
my requirement is to pass multiple parameters like that dynamically.