I want to write a program that automatically downloads all the csv files on a webpage and then enter the data in those csv files into SQL Server. I have written the macro to enter the data from csv to SQL server. I just want you guys to help me in automatically downloading the files from a website everyday. is it similar to webscraping? I am new to web programming. So please guide me which languages to go through to do this
Share
I recommend Python, as usual.
After you figure out how to work with it, here are the modules I would use:
csv– for parsing CSV files.urllib2– for downloading files.