gpt4 book ai didi

python - 使用 namespace 和 Python (lxml) 从 XML 中获取 XML 属性

转载 作者:太空宇宙 更新时间:2023-11-04 04:39:32 32 4
gpt4 key购买 nike

我试图从下面的 XML 中获取“id”和“href”属性。到目前为止,我似乎无法理解命名空间方面的问题。使用没有命名空间引用的 XML,我可以很容易地得到东西。但这让我很困惑。任何想法将不胜感激!

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<ns3:searchResult total="1" xmlns:ns5="ers.ise.cisco.com" xmlns:ers-v2="ers- v2" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ns3="v2.ers.ise.cisco.com">
<ns3:resources>
<ns5:resource id="d28b5080-587a-11e8-b043-d8b1906198a4"name="00:1B:4F:32:27:50">
<link rel="self" href="https://ho-lab-ise1:9060/ers/config/endpoint/d28b5080-587a-11e8-b043-d8b1906198a4"type="application/xml"/>
</ns5:resource>
</ns3:resources>

最佳答案

您可以使用xpath 函数来搜索所有资源并对其进行迭代。该函数有一个命名空间 关键字参数。可以使用它来声明命名空间前缀和命名空间 URL 之间的映射。

思路是这样的:

from lxml import etree

NS = {
"ns5": "ers.ise.cisco.com",
"ns3": "v2.ers.ise.cisco.com"
}

tree = etree.parse('your.xml')

resources = tree.xpath('//ns5:resource', namespaces=NS)

for resource in resources:
print(resource.attrib['id'])
links = resource.xpath('link')
for link in links:
print(link.attrib['href'])

抱歉,这没有经过测试

这是 documentation about xpath .

关于python - 使用 namespace 和 Python (lxml) 从 XML 中获取 XML 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50977217/

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