Reputation: 1
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
Upvotes: 0
Views: 4840
Reputation: 8940
One idea is to use a module like mechanize to automate the query and the download. Here you can find some documentation.
Upvotes: 0
Reputation: 798526
Modules like urllib2
and urlgrabber
don't have a "Download File" prompt.
Upvotes: 3