Python urllib 如何添加进度显示
code: remote = urllib.urlopen(remote_file) local_file = open(local_path_name, "wb") local_file.write(remote.read()) 问题: 用这种方式可以很好的下载远程文件, 现在需要加入一个进度显示的功能, 类似于下载软件一样, 显示出下载的百分比, 请问怎么做?
恐怕不行!你可以查一下urllib相关文档,如果有与进度有关的回调函数或属性说明urllib已经实现了汇报进度的功能,否则,无法实现,需要修改urllib代码。 个人观点,仅供参考。 定一个标识,下载完后修改标识,图形自己做。引用 Python code >>> def report_hook(count, block_size, total_size): ... print '%02d%%'%(100.0 * count * block_size/ total_size) ... >>> urllib.urlretrieve("http://sports.sina.com.cn/", reportho…… 呵呵,看来是实现了的. yes, 下午我仔细翻阅了文档 也发现了这个方法, 并使用lambda作了些改进 code: def my_reporthook(blocknum, blocksize, totalsize, url = None): ... urllib.urlretrieve(remote_file, local_path + eachName, lambda nb, bs, fs, remote_file = remote_file:my_reporthook(nb, bs, fs, remote_file)) 很好的解决了问题. 谢谢大家 不过分还是要给3F的
相关问答:
已知Python 中: s = unicode("测试", "gb2312") s = u'\u6d4b\u8bd5' print s 测试 在Delphi里面如何将\u6d4b\u8bd5这样的还原成Gb2312的汉字呢? 找到个方法 ......
大家好,我是一个新手,刚开始学python,但是刚开始的helloworld都没法打印,让我很无奈。 我的python安装路径为f:\python31。在path中也设置对了,在windows下运行是这样显示的,希望各位前辈指点一下。谢谢 Pyth ......
在list中添加一个类的局部变量 这样做是否合法 请看下面例子: Python code: class A(): def __init__( self ): self.__a = 0 self.__b = 'hello' def get_a( self ): ret ......
在文本文件中匹配项包含中文 如内容为:gamename=中文 key=天下 文本文件的编码的文件为utf-8 python代码如下: # -*- coding:UTF-8 -*- contents=open(from_pa ......
Traceback (most recent call last): File "C:\test.py", line 80, in <module> cur.execute("update userdata set kb=0 where strAccountID='%s'" % name) ......