-
-
Save harisris/d6684afaeefedfbf77d817540f28b69b to your computer and use it in GitHub Desktop.
File download & progressbar with Python's urllib2 #python #fileIO #os #web #requests #urllib
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# source: | |
# http://stackoverflow.com/questions/5783517/downloading-progress-bar-urllib2-python | |
import urllib2, sys | |
def chunk_report(bytes_so_far, chunk_size, total_size): | |
percent = float(bytes_so_far) / total_size | |
percent = round(percent*100, 2) | |
sys.stdout.write("Downloaded %d of %d bytes (%0.2f%%)\r" % | |
(bytes_so_far, total_size, percent)) | |
if bytes_so_far >= total_size: | |
sys.stdout.write('\n') | |
def chunk_read(response, chunk_size=8192, report_hook=None): | |
total_size = response.info().getheader('Content-Length').strip() | |
total_size = int(total_size) | |
bytes_so_far = 0 | |
data = [] | |
while 1: | |
chunk = response.read(chunk_size) | |
bytes_so_far += len(chunk) | |
if not chunk: | |
break | |
data += chunk | |
if report_hook: | |
report_hook(bytes_so_far, chunk_size, total_size) | |
return "".join(data) | |
if __name__ == '__main__': | |
response = urllib2.urlopen('http://www.ebay.com'); | |
chunk_read(response, report_hook=chunk_report) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment