15

我需要从 Python 中的子元素中获取属性值列表。

用一个例子来解释是最容易的。

给定一些这样的 XML:

<elements>
    <parent name="CategoryA">
        <child value="a1"/>
        <child value="a2"/>
        <child value="a3"/>
    </parent>
    <parent name="CategoryB">
        <child value="b1"/>
        <child value="b2"/>
        <child value="b3"/>
    </parent>
</elements>

我希望能够做类似的事情:

>>> getValues("CategoryA")
['a1', 'a2', 'a3']
>>> getValues("CategoryB")
['b1', 'b2', 'b3']

它看起来像是 XPath 的工作,但我愿意接受所有建议。我还想听听您最喜欢的 Python XML 库。

4

7 回答 7

7

我在 Python 方面并不是真正的老手,但这里有一个使用 libxml2 的 XPath 解决方案。

import libxml2

DOC = """<elements>
    <parent name="CategoryA">
        <child value="a1"/>
        <child value="a2"/>
        <child value="a3"/>
    </parent>
    <parent name="CategoryB">
        <child value="b1"/>
        <child value="b2"/>
        <child value="b3"/>
    </parent>
</elements>"""

doc = libxml2.parseDoc(DOC)

def getValues(cat):
    return [attr.content for attr in doc.xpathEval("/elements/parent[@name='%s']/child/@value" % (cat))]

print getValues("CategoryA")

结果...

['a1', 'a2', 'a3']
于 2008-09-17T21:00:32.977 回答
7

ElementTree 1.3(不幸的是不是 Python 中包含的 1.2)支持这样的 XPath

import elementtree.ElementTree as xml

def getValues(tree, category):
    parent = tree.find(".//parent[@name='%s']" % category)
    return [child.get('value') for child in parent]

然后你可以做

>>> tree = xml.parse('data.xml')
>>> getValues(tree, 'CategoryA')
['a1', 'a2', 'a3']
>>> getValues(tree, 'CategoryB')
['b1', 'b2', 'b3']

lxml.etree(它也提供 ElementTree 接口)也将以相同的方式工作。

于 2008-09-17T21:05:38.537 回答
4

你可以用BeautifulSoup做到这一点

>>> from BeautifulSoup import BeautifulStoneSoup
>>> soup = BeautifulStoneSoup(xml)
>>> def getValues(name):
. . .      return [child['value'] for child in soup.find('parent', attrs={'name': name}).findAll('child')]

如果您正在使用 HTML/XML,我建议您看看 BeautifulSoup。它类似于 DOM 树,但包含更多功能。

于 2008-09-17T20:50:51.113 回答
4

使用标准的 W3 DOM,例如 stdlib 的 minidom 或 pxdom:

def getValues(category):
    for parent in document.getElementsByTagName('parent'):
        if parent.getAttribute('name')==category:
            return [
                el.getAttribute('value')
                for el in parent.getElementsByTagName('child')
            ]
    raise ValueError('parent not found')
于 2008-09-17T21:04:42.017 回答
4

我首选的 python xml 库是lxml,它包装了 libxml2。
Xpath 似乎确实是这里的路,所以我会把它写成这样:

from lxml import etree

def getValues(xml, category):
    return [x.attrib['value'] for x in 
            xml.findall('/parent[@name="%s"]/*' % category)]

xml = etree.parse(open('filename.xml'))

>>> print getValues(xml, 'CategoryA')
['a1', 'a2', 'a3']
>>> print getValues(xml, 'CategoryB')
['b1', 'b2', 'b3]
于 2008-09-17T21:12:16.507 回答
3

在 Python 3.x 中,获取属性列表是使用成员的简单任务items()

使用ElementTree, 下面的代码片段显示了一种获取属性列表的方法。请注意,此示例不考虑命名空间,如果存在,则需要考虑。

    import xml.etree.ElementTree as ET

    flName = 'test.xml'
    tree = ET.parse(flName)
    root = tree.getroot()
    for element in root.findall('<child-node-of-root>'):
        attrList = element.items()
        print(len(attrList), " : [", attrList, "]" )

参考:

Element.items()
将元素属性作为 (name, value) 对的序列返回。
属性以任意顺序返回。

Python 手册

于 2016-12-29T10:56:10.170 回答
2

我必须承认我是xmltramp的粉丝,因为它易于使用。

访问上述内容变为:

  import xmltramp

  values = xmltramp.parse('''...''')

  def getValues( values, category ):
    cat = [ parent for parent in values['parent':] if parent(name) == category ]
    cat_values = [ child(value) for child in parent['child':] for parent in cat ]
    return cat_values

  getValues( values, "CategoryA" )
  getValues( values, "CategoryB" )
于 2008-09-17T20:47:15.723 回答