gpt4 book ai didi

python - 使用 XPath 检索 span 类中的文本

转载 作者:太空宇宙 更新时间:2023-11-03 18:11:49 26 4
gpt4 key购买 nike

我正在使用 python 从网站检索各种指标(例如,喜欢、Twitter 分享等)。虽然 XPath 检索文本效果很好,但我在处理这些指标(范围内的文本)时遇到了问题。

<span class="pluginCountTextDisconnected">78</span>

现在我需要获取“78”,但是当我向 Python 提供 XPath 时,Python 不会返回任何内容。

这是 XPath,以防万一:

//*[@id="u_0_2"]/span[2]

Python 代码:

from lxml import html
import urllib2
from unicsv import CsvUnicodeReader

req=urllib2.Request("http://www.nu.nl/binnenland/3866370/reddingsbrigade-redt-369-mensen-zomer-.html")
tree = html.fromstring(urllib2.urlopen(req).read())
fb_likes = tree.xpath('//*[@id="u_0_2"]/span[2]')
print fb_likes

最佳答案

/text() 添加到 xpath:

//*[@id="u_0_2"]/span[2]/text()

关于python - 使用 XPath 检索 span 类中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25795308/

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