Python Lxml(objectify):检查标记是否存在

2024-10-02 08:27:55 发布

您现在位置:Python中文网/ 问答频道 /正文

我需要检查xml文件中是否存在某个标记。

例如,我想查看此代码段中是否存在标记:

 <main>
       <elem1/>
       <elem2>Hi</elem2>
       <elem3/>
       ...
 </main>

目前,我正在使用一个带有错误检查的丑陋黑客,如下所示:

try:
   if root.elem1.tag:
      foo = elem1
except AttributeError:
   foo = "error finding elem1"

如果字符串找不到节点(即“找不到-tagname-”),我还想自定义它。

我必须检查一长串变量,我不想重复代码100次。

有什么建议吗?

编辑:

下面是实际xml文件的一个片段:

<main>
 <asset name="Virtual Dvaered Unpresence">
  <virtual/>
  <presence>
   <faction>Dvaered</faction>
   <value>-1000.000000</value>
   <range>0</range>
  </presence>
 </asset>
 <asset name="Virtual Empire Small">
  <virtual/>
  <presence>
   <faction>Empire</faction>
   <value>100.000000</value>
   <range>2</range>
  </presence>
 </asset>
</main>

我想检查这个标签是否存在,如果存在的话,我想获取内容。

编辑编辑: 好吧,我要把两个答案合并起来,但我只能投一个。对不起的。

编辑3:关于XPath的相关问题:Python lxml (objectify): Xpath troubles


Tags: 文件name标记编辑foovaluemainvirtual
3条回答

假设您想得到elem2的值,可以使用xpath来查找它。

tree = etree.parse(StringIO(htmlString), etree.HTMLParser()).getroot()
youWantValue = tree.xpath('/main/elem2')[0].text

hasattr()适用于:

if hasattr(root, 'elem1'):
    foo = root.elem1

编辑:更新了示例文件的答案。

我假设你想搜索每个资产的特定标签。如果是这样的话,以下几点对我有效:

import lxml.objectify

# Parse the file.
tree = lxml.objectify.parse('sample.xml')
root = tree.getroot()

# Which elements to find.
to_find = set(['presence/faction', 'presence/value', 'fake'])

# Go through each asset in the document.
for asset in root.findall('asset'):
    # Check for each element. 
    for name in to_find:
        node = asset.find(name)
        if node is not None:
            print 'Found %s, its value is %s' % (name, node)
        else:
            print 'Unable to find %s' % name

结果是:

Found presence/value, its value is -1000.0
Found presence/faction, its value is Dvaered
Unable to find fake
Found presence/value, its value is 100.0
Found presence/faction, its value is Empire
Unable to find fake

相关问题 更多 >

    热门问题