获取图片地址并下载图片

#获取图片地址
import requests
from lxml import etree
a=requests.get('http://www.xiaohuar.com/hua/')         #....get('网页地址')
b=a.content
c=etree.HTML(b)
img_src=c.xpath('//img/@src')
print(img_src)

#存储图片
from urllib.request import urlretrieve
urlretrieve('https://www.dxsabc.com/api/xiaohua/upload/min_img/20190110/20190110AdOgzcLVqR.jpg', 'd:/1.jpg')     #利用print(img_src)输出的其中一个图片地址即可
#urlretrieve('图片地址','存储地址')  

 

你可能感兴趣的:(python)