#引入我们的requests库
import requests
#我们获取的链接放在url当中
url=; ;
#将我们的保存路径放在我们的path当中
path=; ;
#使用requests库当中的get方法去获取
r=requests.get(url,headers)
r.encoding=r.apparent_encoding
#使用我们的with open方法向我们的文件当中写入
with open (path,;wb;)as f:
f.write(r.content)