python--下载图片
下载图片
下载图片需要导入requests模块,用requests的content方法来获取图片
1 import requests 2 url = 'http://editerupload.eepw.com.cn/201411/48601416902987.jpg' 3 4 res = requests.get(url).content #content获取的信息是bytes类型,故下面保存时需要以wb方式保存 5 fw = open('a.jpg','wb') 6 fw.write(res) 7 fw.close()