I'm trying to do some exploratory data analysis on the data that is provided by CSSE at Johns Hopkins University. They have it on Github at this link https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data/csse_covid_19_daily_reports
I'm trying to download the entire file using python that will save it to my current directory. That way I'll have all the up to date, data and can reload it to use. I'm using two functions fetch_covid_daily_data()
that will go to the website and download all the CSV files. Then ill have a load_covid_daily_data()
that will go in the current repo and read the data so I can process it with pandas.
I'm doing this way because if I go back to my code I can call the function fetch_covid_daily_data()
and it will download all the new changes made such as another daily CSV added.