[Web-SIG] Looking for an efficient Python script to download and save a .zip file programmatically

Senthil Kumaran orsenthil at gmail.com
Thu Jan 15 20:46:02 CET 2009


On Sat, Jan 10, 2009 at 05:16:54PM +0000, David Shi wrote:
> 
>     I am looking for an efficient Python script to download and save a .zip
>     file programmatically (from http or https call).
> 

Does not 
import urllib
zipfile = urllib.urlopen(url_to_zip_file_name).read() 

do that?

-- 
Senthil




More information about the Web-SIG mailing list