龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > python编程 >

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

时间:2014-05-15 18:29来源:网络整理 作者:网络 点击:
分享到:
这篇文章主要介绍了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%
...

精彩图集

赞助商链接