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


_______________________________________________
Web-SIG mailing list
Web-SIG@python.org
Web SIG: http://www.python.org/sigs/web-sig
Unsubscribe: 
http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Reply via email to