gpt4 book ai didi

python - 读取 XML 文件并在 Python 中获取其属性值

转载 作者:数据小太阳 更新时间:2023-10-29 01:59:35 33 4
gpt4 key购买 nike

我有这个 XML 文件:

<domain type='kmc' id='007'>
<name>virtual bug</name>
<uuid>66523dfdf555dfd</uuid>
<os>
<type arch='xintel' machine='ubuntu'>hvm</type>
<boot dev='hd'/>
<boot dev='cdrom'/>
</os>
<memory unit='KiB'>524288</memory>
<currentMemory unit='KiB'>270336</currentMemory>
<vcpu placement='static'>10</vcpu>

现在,我想解析它并获取它的属性值。例如,我想获取 uuid 字段。那么在 Python 中获取它的正确方法应该是什么?

最佳答案

这是一个 lxml 提取属性 和元素文本 的代码片段(您的问题对于您需要哪一个有点模棱两可,所以我将两者都包括在内):

from lxml import etree
doc = etree.parse(filename)

memoryElem = doc.find('memory')
print memoryElem.text # element text
print memoryElem.get('unit') # attribute

您问(在对 Ali Afshar 的回答的评论中)minidom(2.x3.x)是否是一个好的选择。这是使用 minidom 的等效代码;自己判断哪个更好:

import xml.dom.minidom as minidom
doc = minidom.parse(filename)

memoryElem = doc.getElementsByTagName('memory')[0]
print ''.join( [node.data for node in memoryElem.childNodes] )
print memoryElem.getAttribute('unit')

lxml 对我来说似乎是赢家。

关于python - 读取 XML 文件并在 Python 中获取其属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12290091/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com