Hi I am very new to python programming and I want a solution where I can download csv files from a website that requires you to log in using a username and password.
The code I have used to download csvs from non log in websites is the following:
import urllib
url = "http://www.football-data.co.uk/mmz4281/1617/E0.csv"
get = urllib.retrieve(url , "data.csv")
get
How would I need to change this code to download a csv from a log in website? The website I want to download the data from is an email service provider http://www.247emaildelivery.co.uk/index.php.
Any help would be really appreciated
Thanks