Most memory efficient way to save binary file from the web with Python 2.6? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T11:29:20Zhttp://stackoverflow.com/feeds/question/874988http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/874988/most-memory-efficient-way-to-save-binary-file-from-the-web-with-python-2-60Most memory efficient way to save binary file from the web with Python 2.6?unknown (yahoo)2009-05-17T16:56:17Z2009-05-17T17:08:33Z
<p>I'm trying to download (and save) a binary file from the web using Python 2.6 and urllib.</p>
<p>As I understand it, read(), readline() and readlines() are the 3 ways to read a file-like object.
Since the binary files aren't really broken into newlines, read() and readlines() read teh whole file into memory.</p>
<p>Is choosing a random read() buffer size the most efficient way to limit memory usage during this process?</p>
<p>i.e.</p>
<pre><code>import urllib
import os
title = 'MyFile'
downloadurl = 'http://somedomain.com/myfile.avi'
webFile = urllib.urlopen(downloadurl)
mydirpath = os.path.join('c:', os.sep,'mydirectory',\
downloadurl.split('/')[-1])
if not os.path.exists(mydirpath):
print "Downloading...%s" % title
localFile = open(mydirpath, 'wb')
data = webFile.read(1000000) #1MB at a time
while data:
localFile.write(data)
data = webFile.read(1000000) #1MB at a time
webFile.close()
localFile.close()
print "Finished downloading: %s" % title
else:
print "%s already exists." % mydirypath
</code></pre>
<p>I chose read(1000000) arbitrarily because it worked and kept RAM usage down. I assume if I was working with a raw network buffer choosing a random amount would be bad since the buffer might run dry if the transfer rate was too low. But it seems urllib is already handling lower level buffering for me.</p>
<p>With that in mind, is choosing an arbitrary number fine? Is there a better way?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/874988/most-memory-efficient-way-to-save-binary-file-from-the-web-with-python-2-6/875006#8750061Answer by Paolo Bergantino for Most memory efficient way to save binary file from the web with Python 2.6?Paolo Bergantino2009-05-17T17:05:56Z2009-05-17T17:05:56Z<p>You should use <a href="http://docs.python.org/library/urllib.html#urllib.urlretrieve" rel="nofollow"><code>urllib.urlretrieve</code></a> for this. It will handle everything for you.</p>
http://stackoverflow.com/questions/874988/most-memory-efficient-way-to-save-binary-file-from-the-web-with-python-2-6/875014#8750140Answer by Dingo for Most memory efficient way to save binary file from the web with Python 2.6?Dingo2009-05-17T17:08:33Z2009-05-17T17:08:33Z<p>Instead of using your own read-write loop, you should probably check out the <code>shutil</code> module. The <code>copyfileobj</code> method will let you define the buffering. The most efficient method varies from situation to situation. Even copying the same source file to the same destination may vary due to network issues.</p>