CSV import from Web

Hi,

I need to get csv files from web.
I am wondering if I can import those csv files into Easymorph.

[URL format]
https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_daily_reports/04-13-2020.csv

Only date part (‘04-13-2020’) is changed everyday.

Thank you.

Hi Seogoo,

You have to download that CSV file locally with the “Download file” action. Switch the URL option to the “It’s an expression” mode and set it to something like this:

"https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_daily_reports/" & format(today(), "MM-dd-yyyy") & ".csv"

Then you’ll be able to import that local file with the “Import from delimited text file” action.

Here is an example project:
ImportCsvFromDynamicUrl.morph (2.1 KB)

The project uses today()-1 because the file for the current date is not yet available.