I am trying to retrieve a 500mb file using Python, and I have a script which uses urllib.urlretrieve(). There seems to some network problem between me and the download site, as this call consistently hangs and fails to complete. However, using wget to retrieve the file tends to work without problems. What is the difference between urlretrieve() and wget that could cause this difference?
| |||
|
feedback
|
|
The answer is quite simple. Python's Another way to state this is that cURL does one thing only and it does it better than any other software because it has had much more development and refinement. Python's Also, cURL has numerous options to tune the reliability behavior including retry counts, timeout values, etc. | ||||
|
feedback
|
|
If you are using:
you are creating a 500mb string which may well tax your machine, make it slow, and cause the connection to timeout. If so, you should be using:
which won't tax the interpreter. It is worth noting urllib.retrieve() uses urllib.urlopen() which is now deprecated. | |||
feedback
|