使用python解析* .nfo文件

时间:2015-12-03 16:06:29

标签: python elementtree msinfo32

我尝试解析nfo文件并以html代码样式(表格)打印 我尝试使用xml.etree,但我只获得了2个元素:MetadataCategory 这就是.nfo的样子:

<?xml version="1.0"?>
<MsInfo>
<Metadata>
<Version>8.0</Version>
<CreationUTC>12/02/15 10:45:25</CreationUTC>
</Metadata>
<Category name="System Summary">
<Data>
<Item><![CDATA[OS Name]]></Item>
<Value><![CDATA[Microsoft Windows 8.1 Pro]]></Value>
</Data>
</Category>
</MsInfo>

我的代码如下:

tree = ET.parse(File)
root = tree.getroot()

for element in root.findall('Category'):
    value = element.find('Data')
    print element.attrib

但只打印Category element,我的问题是我如何从Data获取价值? 谢谢!

2 个答案:

答案 0 :(得分:2)

这有效:

for element in root.findall('Category'):
    value = element.find('Data')
    for child in value:
        print child.tag,":",child.text

输出是:

Item : OS Name
Value : Microsoft Windows 8.1 Pro

答案 1 :(得分:1)

我猜您可能正在解析MSINFO32的.nfo输出。下面的代码是我发现解析整个文件并提供可用对象的最直接的方法。

for element in root.iter('Data'):
out = []
for n in range(len(element)):
    out.append('{0}'.format(element[n].text))
print(out)

输出看起来像:

['OS Name', 'Microsoft Windows 10 Enterprise Evaluation']
['Version', '10.0.15063 Build 15063']
['Other OS Description ', 'Not Available']
['OS Manufacturer', 'Microsoft Corporation']
['System Name', 'WIN10BLANK']
['System Manufacturer', 'Microsoft Corporation']
['System Model', 'Virtual Machine']
['System Type', 'x64-based PC']
['System SKU', 'Unsupported']