How to download automatically csv file through python code

dear sirs in my project I want to use CSV file in python code, but CSV should be loaded automatically in my program. what should I do

Dear Nitin
The command for loading CSV file in python program is
first import pandas

import pandas
df=pandas.read_csv(‘your file location’)
print(df)

df here is data frame.

I hope you got the relevant answer.

@cen.nitin This should be helpful.

thank you sir for your valuable suggestion

thank you, sir, for your reply