Re: [Tutor] downloading remote files
Ed Hotchkiss wrote: > is there a method in the stdlib of downloading a remote file via HTTP? > or do i need sockets ... for simple needs, you can use urllib: import urllib data = urllib.urlopen('http://www.google.com').read() For more control, see urllib2. As suggested recently, Dive into Python
[Tutor] downloading remote files
is there a method in the stdlib of downloading a remote file via HTTP? or do i need sockets ...-- edward hotchkiss ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor