解析 bit.ly 的 XML 响应

发布于 2024-09-09 19:35:21 字数 336 浏览 5 评论 0原文

我正在尝试使用 bit.ly api 进行缩短并让它工作。它向我的脚本返回一个 xml 文档。我想提取标签,但似乎无法正确解析它。

askfor = urllib2.Request(full_url)
response = urllib2.urlopen(askfor)
the_page = response.read()

所以 the_page 包含 xml 文档。我尝试过:

from xml.dom.minidom import parse
doc = parse(the_page)

这会导致错误。我做错了什么?

I was trying out the bit.ly api for shorterning and got it to work. It returns to my script an xml document. I wanted to extract out the tag but cant seem to parse it properly.

askfor = urllib2.Request(full_url)
response = urllib2.urlopen(askfor)
the_page = response.read()

So the_page contains the xml document. I tried:

from xml.dom.minidom import parse
doc = parse(the_page)

this causes an error. what am I doing wrong?

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

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

发布评论

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

评论(2

甜点 2024-09-16 19:35:21

您没有提供错误消息,因此我无法确定这是唯一的错误。但是,xml.minidom.parse 不接受字符串。来自 parse 的文档字符串:

通过文件名或文件对象将文件解析为 DOM。

您应该尝试:

response = urllib2.urlopen(askfor)
doc = parse(response)

因为 response 的行为类似于文件对象。或者您可以使用 minidom 中的 parseString 方法(然后将 the_page 作为参数传递)。

编辑:要提取 URL,您需要执行以下操作:

url_nodes = doc.getElementsByTagName('url')
url = url_nodes[0]
print url.childNodes[0].data

getElementsByTagName 的结果是所有匹配节点的列表(在本例中只有一个)。正如您所注意到的,url 是一个元素,其中包含一个子文本节点,其中包含您需要的数据。

You don't provide an error message so I can't be sure this is the only error. But, xml.minidom.parse does not take a string. From the docstring for parse:

Parse a file into a DOM by filename or file object.

You should try:

response = urllib2.urlopen(askfor)
doc = parse(response)

since response will behave like a file object. Or you could use the parseString method in minidom instead (and then pass the_page as the argument).

EDIT: to extract the URL, you'll need to do:

url_nodes = doc.getElementsByTagName('url')
url = url_nodes[0]
print url.childNodes[0].data

The result of getElementsByTagName is a list of all nodes matching (just one in this case). url is an Element as you noticed, which contains a child Text node, which contains the data you need.

烟织青萝梦 2024-09-16 19:35:21
from xml.dom.minidom import parseString
doc = parseString(the_page)

请参阅 xml.dom.minidom

from xml.dom.minidom import parseString
doc = parseString(the_page)

See the documentation for xml.dom.minidom.

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