欢迎光临
感谢一路有你

python 采集斗图啦xpath

如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
 

<code class="">import requests;
import re;
import os;
import parsel;
# 1.请求网页
header = {
    "user-agent":'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'
}
response = requests.get('https://www.doutula.com/photo/list/',headers=header)
html =  response.text
# 2.解析网页
selector = parsel.Selector(html)
# print(selector)

dir_name = 'doutu_list'
if not os.path.exists(dir_name):
    os.mkdir(dir_name)

result_list = selector.xpath('//a[@class="col-xs-6 col-sm-3"]')
for result in result_list:
    title = result.xpath('./img/@alt').get()
    img_url = result.xpath('./img/@data-original').get()
    ext = img_url.split('.')[-1]
    file_name = title+'.'+ext
    print(title,img_url)
    # 保存
    response = requests.get(img_url,headers=header)
    with open(dir_name+'/'+file_name,'wb') as f:
        f.write(response.content)

</code>
赞(1) 打赏
未经允许不得转载:王明昌博客 » python 采集斗图啦xpath
分享到: 更多 (0)

相关推荐

  • 暂无文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

×
订阅图标按钮