I want to automatically save a file from a website. I don't know how to bypass the Download File prompt in python and save it directly to my c: drive.
Any help is appreciated, Elliott
I want to automatically save a file from a website. I don't know how to bypass the Download File prompt in python and save it directly to my c: drive.
Any help is appreciated, Elliott
Modules like urllib2
and urlgrabber
don't have a "Download File" prompt.
One idea is to use a module like mechanize to automate the query and the download. Here you can find some documentation.