gpt4 book ai didi

python - BeautifulSoup : Get specific text that has no specific class

转载 作者:行者123 更新时间:2023-12-01 03:10:47 26 4
gpt4 key购买 nike

我正在尝试获取下面突出显示的文本“frei ab 01.05.2017”。然而问题是,“section_content iw_right”类在该网站上出现了 19 次。我会执行 find_all 并仅从那里返回第 11 个元素,但是在我想要抓取的某些网站上,该类的数量不同,因此我可能并不总能捕获正确的元素。有任何想法吗?谢谢!

enter image description here

最佳答案

获取所需元素的一种方法是使用前面的标签 - 使用“Erdgeschoss”文本和 find the next strong sibling 定位 span 元素。 :

label = soup.find("span", text="Erdgeschoss")
print(label.find_next_sibling("strong").get_text())

关于python - BeautifulSoup : Get specific text that has no specific class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42907916/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com