python--下載圖片

下載圖片url

  下載圖片須要導入requests模塊,用requests的content方法來獲取圖片spa

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()
相關文章
相關標籤/搜索