欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-11-02 20:32:20
复制代码 代码如下: def report_hook(count, block_size, total_size):...   &n...

复制代码 代码如下:

 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%
...