import requests
res = requests.get(‘http://www.xx.xx/xxxx/xx.dat’)
res.raise_for_status()
newfile = open(‘/home/xx/xx.dat’, ‘wb’) # 本地文件
for chunk in res.iter_content(10240):
newfile.write(chunk)
newfile.close()
首页 >
import requests
res = requests.get(‘http://www.xx.xx/xxxx/xx.dat’)
res.raise_for_status()
newfile = open(‘/home/xx/xx.dat’, ‘wb’) # 本地文件
for chunk in res.iter_content(10240):
newfile.write(chunk)
newfile.close()
怎样在媒体发布广告 - python - 前端,python list 占用内存 | 怎样在媒体发布广告 - python - 前端,python list 占用内存 ...
推荐一本python入门书 - python - 前端,python 的range | 推荐一本python入门书 - python - 前端,python 的range ...
python运行py文件的几种方法 - python - 前端,reticulated python | python运行py文件的几种方法 - python - 前端,reticulated python ...