Python's urllib module shows an example of the download progress

  • 2020-04-02 13:22:48
  • OfStack


 def report_hook(count, block_size, total_size):
...     print '%02d%%'%(100.0 * count * block_size/ total_size)
... 
urllib.urlretrieve("http://sports.sina.com.cn/", reporthook= report_hook)
00%
01%
03%
...


Related articles: