url = "http://example.com/file.xml"
data = urllib2.urlopen(url)
data.read()
The question is, when exactly will the file be downloaded from the internet? When i do urlopen or .read()? On my network interface I see high traffic both times.
|
|
The question is, when exactly will the file be downloaded from the internet? When i do urlopen or .read()? On my network interface I see high traffic both times.
|
|||
|
|
|
|
Witout looking at the code, I'd expect that the following happens:
Naturally, if the reply is short enough, or if the |
||||||
|
|
|
I agree with ddaa. However, if you want to understand this sort of thing, you can set up a dummy server using something like In one terminal, run Run Python in another terminal and enter your code, i.e.
The call to Now type something into the terminal that is running So it should be noted that |
||
|
|