使用 BeautifulSoup,我想选择所有具有“main”类的表,这些表尚未被选为相同元素的后代。在 lxml 中,以下代码有效:
root.xpath('//table[@class="main" and not(ancestor::table[@class="main"])]')
但是我怎么能在 BeautifulSoup 中做到这一点?
谢谢你的帮助!:)
使用 BeautifulSoup,我想选择所有具有“main”类的表,这些表尚未被选为相同元素的后代。在 lxml 中,以下代码有效:
root.xpath('//table[@class="main" and not(ancestor::table[@class="main"])]')
但是我怎么能在 BeautifulSoup 中做到这一点?
谢谢你的帮助!:)