python的urllib模块显示下载进度示例
这篇文章主要介绍了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%
...
- 上一篇:vc6编写python扩展的方法分享
- 下一篇:Python中for循环详解
精彩图集
精彩文章