假设我有以下xml文件:
<test_suite>
<test_case active="0">
<platform name="octa2">
<sn>123456</sn>
</platform>
<fw_config>octa3</fw_config>
</test_case>
</test_suite>
我喜欢使用所有标签和元素及其值来获取字典:
mydic = {"active":"0","platform_name":"octa2","sn":"123456", "fw_config":"octa3"}
在python中有一种有效的方法吗?
答案 0 :(得分:1)
即使我是新来的,我也尝试过解决你的问题
import xmltodict
x = """
<test_suite>
<test_case active="0">
<platform name="octa2">
<sn>123456</sn>
</platform>
<fw_config>octa3</fw_config>
</test_case>
</test_suite>
"""
print xmltodict.parse(x)
O / P将是一个带标签作为键的OrderedDict。
答案 1 :(得分:0)
使用xml.etree.ElementTree
:
>>> import xml.etree.ElementTree as ET
>>>
>>> root = ET.fromstring('''
... <test_suite>
... <test_case active="0">
... <platform name="octa2">
... <sn>123456</sn>
... </platform>
... <fw_config>octa3</fw_config>
... </test_case>
... </test_suite>
... ''')
>>>
>>> [{
... 'active': test_case.get('active'),
... 'platform_name': test_case.find('platform').get('name'),
... 'sn': test_case.find('platform/sn').text,
... 'fw_config': test_case.find('fw_config').text,
... } for test_case in root.iterfind('.//test_case')]
[{'platform_name': 'octa2', 'sn': '123456', 'active': '0', 'fw_config': 'octa3'}]