將 XPath 與 BeautifulSoup 結合使用
BeautifulSoup 是一個流行的 Python 庫,用於解析和操作 HTML 文件。但是,它本身並不支援 XPath 表達式。
替代方案:lxml
名為 lxml 的替代程式庫提供完整的 XPath 1.0 支援。它還具有 BeautifulSoup 相容模式,可以像 BeautifulSoup 一樣解析損壞的 HTML。要將XPath 與lxml 結合使用:
from lxml import etree from urllib import request url = "http://www.example.com/servlet/av/ResultTemplate=AVResult.html" response = request.urlopen(url) tree = etree.parse(response, etree.HTMLParser()) result_list = tree.xpath("/html/body/div/table/tbody/tr[1]/td[1]")
將CSS 選擇器與lxml 結合使用
lxml 也具有CSSSelector 支持,可以將CSSSS 語句轉換為XPath表達式。例如,要尋找類別empformbody 的td 元素:
from lxml.cssselect import CSSSelector css_selector = CSSSelector('td.empformbody') result_list = css_selector(tree)
BeautifulSoup 中的CSS 選擇器
有趣的是,BeautifulSoup 有自己的CSS 選擇器支援:
有趣的是,BeautifulSoup 有自己的CSS 選擇器soup = BeautifulSoup(html, "html.parser") result_list = soup.select('table#foobar td.empformbody')
以上是如何將 XPath 與 BeautifulSoup 一起使用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!