在ElementTree/Python中使用多个属性查找引用

2024-04-25 01:49:20 发布

您现在位置:Python中文网/ 问答频道 /正文

我有以下XML。

<?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="10" failures="0" disabled="0" errors="0" time="0.001" name="AllTests">
  <testsuite name="TestOne" tests="5" failures="0" disabled="0" errors="0" time="0.001">
    <testcase name="DefaultConstructor" status="run" time="0" classname="TestOne" />
    <testcase name="DefaultDestructor" status="run" time="0" classname="TestOne" />
    <testcase name="VHDL_EMIT_Passthrough" status="run" time="0" classname="TestOne" />
    <testcase name="VHDL_BUILD_Passthrough" status="run" time="0" classname="TestOne" />
    <testcase name="VHDL_SIMULATE_Passthrough" status="run" time="0.001" classname="TestOne" />
</testsuite>
</testsuites>

问:如何找到节点<testcase name="VHDL_BUILD_Passthrough" status="run" time="0" classname="TestOne" />?我找到了函数tree.find(),但是这个函数的参数似乎是元素名。

我需要根据属性找到节点:name = "VHDL_BUILD_Passthrough" AND classname="TestOne"


Tags: runnamebuildtimestatusteststestcasevhdl
2条回答

这取决于你使用的是什么版本。如果您有ElementTree 1.3+(包括在Python 2.7标准库中),那么可以使用基本的xpath表达式,如described in the docs,如[@attrib='value']

x = ElmentTree(file='testdata.xml')
cases = x.findall(".//testcase[@name='VHDL_BUILD_Passthrough'][@classname='TestOne']")

不幸的是,如果您使用的是ElementTree的早期版本(1.2,包含在python 2.5和2.6的标准库中),那么您就不能使用这种方便,需要对自己进行过滤。

x = ElmentTree(file='testdata.xml')
allcases = x12.findall(".//testcase")
cases = [c for c in allcases if c.get('classname') == 'TestOne' and c.get('name') == 'VHDL_BUILD_Passthrough']

您必须遍历您拥有的<testcase />元素,如下所示:

from xml.etree import cElementTree as ET

# assume xmlstr contains the xml string as above
# (after being fixed and validated)
testsuites = ET.fromstring(xmlstr)
testsuite = testsuites.find('testsuite')
for testcase in testsuite.findall('testcase'):
    if testcase.get('name') == 'VHDL_BUILD_Passthrough':
        # do what you will with `testcase`, now it is the element
        # with the sought-after attribute
        print repr(testcase)

相关问题 更多 >