I have a csv file with multiple dates, eg. Example of dates
I want to download multiple zip files for each date in the csv file.
In the specific example below the date is given as 20151117. Is there a way to download for each date in the csv instead, maybe by including the csv file in the code below?
download.file("https://www.quandl.com/api/v3/databases/OSMV/download?download_type=20151117&api_key=my_api_key", destfile = "/Users/anders/Documents/Juni 2019/DATA/datatest.zip", mode="wb", method="libcurl")
I hope my question make sense.
Thank you