python下载文件
程序员文章站
2022-03-02 12:45:19
...
import urllib
def percentage(a,b,c):
'''''
a:已经下载的数据块
b:数据块的大小
c:远程文件的大小
'''
per = 100.0 * a * b / c
if per > 100 :
per = 100
print '%.2f%%' % per
print "downloading with urllib"
url = 'http://www.pythontab.com/test/demo.zip'
urllib.request.urlretrieve(url, "demo.zip", percentage) # 在python2 中使用时,删除.request
print('download done.')
参考链接:python下载文件的三种方法
Python提示错误’urllib’ has no attribute ‘urlretrieve’