爬虫6 使用xpath语法,解析HTML
2021-03-14 17:32
标签:get 属性 print head beautiful color dom rank 爬取 简述:BeautifulSoup 外, python常用的解析HTML、XML的第三方库:lxml, lxml中语法为xpath 1. 使用爬取的页面数据,来定义一个对象。 2. 使用xpath来解析这个对象中的标签树。 爬虫6 使用xpath语法,解析HTML 标签:get 属性 print head beautiful color dom rank 爬取 原文地址:https://www.cnblogs.com/leafchen/p/12809770.html"""lxml使用xpath语法,来解析HTML"""
from lxml import etree
import requests
from fake_useragent import UserAgent
url = "https://www.qidian.com/rank/yuepiao?page=1"
headers = {
‘User-Agent‘: UserAgent().random
}
r = requests.get(url, headers=headers)
print(‘---返回值: ‘, r.status_code, ‘---响应编码: ‘, r.encoding)
print(‘返回数据: ‘, r.text)
# 定义etree的HTML对象
e = etree.HTML(r.text)
# 使用.xpath语法,编写逻辑
# ‘//h4/a/text()‘: 某h4标签下的a标签中的内容
# ‘//p[@class="author"]/a[1]/text()‘: 某p标签,class属性为“author”,下面的第一个a标签,下的内容
book_names = e.xpath(‘//h4/a/text()‘)
authors = e.xpath(‘//p[@class="author"]/a[1]/text()‘)
print(book_names)
print(authors)
上一篇:php中使用redis实现秒杀
下一篇:雷林鹏分享:jsp 表单处理
文章标题:爬虫6 使用xpath语法,解析HTML
文章链接:http://soscw.com/index.php/essay/64638.html