使用Python 2按XML在属性中查找所有节点

时间:2015-01-07 03:04:02

标签: python xml python-2.7 xml-parsing

我有一个XML文件,它有许多具有相同属性的不同节点。

我想知道是否可以使用Python和任何其他软件包(如minidom或ElementTree)找到所有这些节点。

2 个答案:

答案 0 :(得分:7)

您可以使用内置的xml.etree.ElementTree模块。

如果您想要所有具有特定属性的元素而不考虑属性值,则可以使用 xpath表达式

//tag[@attr]

或者,如果你关心价值观:

//tag[@attr="value"]

示例(使用findall() method):

import xml.etree.ElementTree as ET

data = """
<parent>
    <child attr="test">1</child>
    <child attr="something else">2</child>
    <child other_attr="other">3</child>
    <child>4</child>
    <child attr="test">5</child>
</parent>
"""

parent = ET.fromstring(data)
print [child.text for child in parent.findall('.//child[@attr]')]
print [child.text for child in parent.findall('.//child[@attr="test"]')]

打印:

['1', '2', '5']
['1', '5']

答案 1 :(得分:2)

这是一个使用的好示例/启动脚本:

# -*- coding: utf-8 -*-
from lxml import etree
fp = open("xml.xml")
tree = etree.parse(fp)
for el in tree.findall('//node[@attr="something"]'):
    print(el.text)