Re: Retrieving and saving images from internet address

2005-07-25 Thread user
rock69 wrote: > Hi all :) > > I got this address: > > http://www.infomedia.it/immagini/riviste/covers/cp/cp137.jpg > > and I would like to download that image and save it to a local file. > How do you do that in Python? I'd use urllib.urlretrieve, "Copy a network object denoted by a URL to a l

Re: Retrieving and saving images from internet address

2005-07-25 Thread Wolfram Kraus
rock69 wrote: > Hi all :) > > I got this address: > > http://www.infomedia.it/immagini/riviste/covers/cp/cp137.jpg > > and I would like to download that image and save it to a local file. > How do you do that in Python? > Use urllib2: http://docs.python.org/lib/module-urllib2.html http://docs.

Re: Retrieving and saving images from internet address

2005-07-25 Thread Paul Rubin
"rock69" <[EMAIL PROTECTED]> writes: > http://www.infomedia.it/immagini/riviste/covers/cp/cp137.jpg > > and I would like to download that image and save it to a local file. > How do you do that in Python? See the docs for the urllib module. -- http://mail.python.org/mailman/listinfo/python-list

Retrieving and saving images from internet address

2005-07-25 Thread rock69
Hi all :) I got this address: http://www.infomedia.it/immagini/riviste/covers/cp/cp137.jpg and I would like to download that image and save it to a local file. How do you do that in Python? -- http://mail.python.org/mailman/listinfo/python-list