lxml findall() 问题

发布于 2024-11-03 10:53:33 字数 455 浏览 4 评论 0原文

只是尝试编写一个简单的程序来获取维基百科的最新更改并解析该 XML 文件。

我陷入了 findall() 不起作用的地步。我做错了什么?

import urllib2
from lxml import etree as ET

result = urllib2.urlopen('http://en.wikipedia.org/w/api.php?action=query&format=xml&list=recentchanges&rcprop=title|ids|sizes|flags|user|timestamp').read()

xml=ET.fromstring (result)

print xml[0][0][0].attrib # that works!

print xml.findall ('api/query/recentchanges/rc') # that don't!

Just trying to make a simple program to get wikipedia's recentchanges and parse that XML file.

I stuck at the point where findall() not working. What I'm doing wrong?

import urllib2
from lxml import etree as ET

result = urllib2.urlopen('http://en.wikipedia.org/w/api.php?action=query&format=xml&list=recentchanges&rcprop=title|ids|sizes|flags|user|timestamp').read()

xml=ET.fromstring (result)

print xml[0][0][0].attrib # that works!

print xml.findall ('api/query/recentchanges/rc') # that don't!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满身野味 2024-11-10 10:53:33

我怀疑根节点是主题节点,因此它在根节点内寻找名为“api”的节点。如果是这样,以下两项都将起作用:

query/recentchanges/rc

/api/query/recentchanges/rc

I suspect the root node is the topic node, so it's looking for a node named "api" inside of the root node. If so, both of the following will work:

query/recentchanges/rc

/api/query/recentchanges/rc
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文