python+requests——读取二进制文件并保存在本地——一个视频文件作为示例

import requests

url = 'http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4'

resp = requests.get(url)

with open('C:\\Users\\del\\Desktop\\新建文件夹\\3.mp4','wb') as f:
    f.write(resp.content)

 

 

 

 

posted @ 2020-02-23 20:44  小白龙白龙马  阅读(1543)  评论(0编辑  收藏  举报