GMane Python wrote:
> Hello All.
> Using a network camera with built-in webserver, I'd like to have a python
> program download .jpg files on a local lan. the location is
> http:///jpg/image.jpg.
>
> Currently, I'm importing urllib and using urlopen to the address, then
> read()-ing it, savin
On Thu, 2005-01-06 at 13:49, GMane Python wrote:
> Hello All.
> Using a network camera with built-in webserver, I'd like to have a python
> program download .jpg files on a local lan. the location is
> http:///jpg/image.jpg.
>
> Currently, I'm importing urllib and using urlopen to the address
You could try using: urlllib.urlretrieve ...it may be faster.
--
http://mail.python.org/mailman/listinfo/python-list
GMane Python wrote:
Using a network camera with built-in webserver
The first thing that might be worth investigating
is this webserver. What kind of throughput is it
capable of? How does it handle repeated
requests etc.
Your program won't be faster than the server
that provides it with the data.