Python3解析xml

时间:2017-04-24 13:41:56

标签: xml python-3.x xml-parsing

我尝试使用不同的python3模块和来自互联网的不同文章来解析XML,但没有成功。

我有这个XML:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:cwmp="urn:dslforum-org:cwmp-1-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Header/>
<SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">

<cwmp:GetParameterValuesResponse>
    <ParameterList SOAP-ENC:arrayType="cwmp:ParameterValueStruct[3]">
        <ParameterValueStruct>
            <Name>SOME_NAME_1_HERE</Name>
            <Value>2</Value>
        </ParameterValueStruct>
        <ParameterValueStruct>
            <Name>SOME_NAME_2_HERE</Name>
            <Value>180</Value>
        </ParameterValueStruct>
        <ParameterValueStruct>
            <Name>SOME_NAME_3_HERE</Name>
            <Value>1800</Value>
        </ParameterValueStruct>
    </ParameterList>
</cwmp:GetParameterValuesResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

我需要从XML标签中获取数据:名称和值 它应该是这样的:

SOME_NAME_1_HERE 2
SOME_NAME_2_HERE 180
SOME_NAME_3_HERE 1800

如何使用Python3获取此值(使用python默认模块 - 而不是bs4会很好)?

由于

2 个答案:

答案 0 :(得分:3)

使用xml.etree,你可以执行简单的XPath表达式.//element_name来查找给定上下文元素中任何位置的元素:

from xml.etree import ElementTree as ET
tree = ET.parse('path_to_your_xml.xml')
root = tree.getroot()

for p in root.findall('.//ParameterValueStruct'):
    print("%s | %s" % (p.find('Name').text, p.find('Value').text))

答案 1 :(得分:1)

您可以尝试这样的事情:

import xml.etree.ElementTree
e = xml.etree.ElementTree.parse('Newfile.xml').getroot()

print(e)
for atype in e.findall('.//ParameterValueStruct'):
    print("%s | %s" % (atype.find('Name').text, atype.find('Value').text))