python urllib模块用于显示下载进度的例子

发布时间:2020-08-12编辑:脚本学堂
python urllib模块的例子,python使用urllib模块模拟显示下载进度,效果不错。

代码:
 

复制代码 代码示例:
#python/urllib/ target=_blank class=infotextkey>python urllib模块显示下载进度
 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%
 

...