Python 获取下载文件大小
程序员文章站
2022-03-02 12:40:49
...
import requests
# 构造请求头
headers={
"Accept-Encoding": "identity",
'session':'JSESSIONID',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36'
}
url='https://qd.myapp.com/myapp/qqteam/pcqq/PCQQ2019.exe'
r=requests.get(url,stream=True,headers=headers)
file_size_str=r.headers['Content-Length'] #提取出来的是个数字str
file_size=int(file_size_str)/1024/1024 #把提取出数字str转为int或者float进行运算
print(file_size,'M')
stream=True 意味着,当函数返回时,仅响应标头被下载,响应主体不会
参考:
1.Accept-Encoding学习
2.Python爬虫库requests获取响应内容、响应状态码、响应头
3.Python——爬虫【Requests设置请求头Headers】
4.使用python-requests获取文件大小,而只获取标题
5.使用requests.get下载大文件-Python
发现个好点的
python获取网络文件大小