Python XML解析问题

时间:2016-08-30 15:25:27

标签: python xml minidom

我在下面附带了一个XML,并使用python minidom来解析build.xml。我正在尝试下面的python代码来解析和检索" name"和"价值"标签。我正在尝试检索" SE_CONFIG"," SE_ARCH"," PREBUILDID"它们各自具有值install-csu,macosx,prebuild_7701。

遇到以下挑战。

  1. 检索相应名称和值对的更好的pythonic方法是什么
  2. 如果没有"值"

    ,我应该如何捕获异常
    <?xml version='1.0' encoding='UTF-8'?>
    <build>
      <actions>
        <hudson.model.ParametersAction>
          <parameters>
            <hudson.model.StringParameterValue>
              <name>StartFrom</name>
              <description>&lt;h3&gt;: Trigger downstreamfor this platform&lt;br&gt;</description>
              <value>Fetch_Source</value>
            </hudson.model.StringParameterValue>
            <hudson.model.StringParameterValue>
              <name>SE_CONFIG</name>
              <description></description>
              <value>install-csu</value>
            </hudson.model.StringParameterValue>
            <hudson.model.StringParameterValue>
              <name>EMAIL_RCPT</name>
              <description>Please enter your email address.</description>
              <value></value>
            </hudson.model.StringParameterValue>
            <hudson.model.StringParameterValue>
              <name>SE_ARCH</name>
              <description></description>
              <value>macosx</value>
            </hudson.model.StringParameterValue>
            <hudson.model.StringParameterValue>
              <name>PREBUILDID</name>
              <description></description>
              <value>prebuild_7701</value>
            </hudson.model.StringParameterValue>
            <hudson.model.StringParameterValue>
              <name>RE_DESCRIPTION</name>
              <description></description>
              <value></value>
            </hudson.model.StringParameterValue>
            <hudson.model.StringParameterValue>
              <name>BUILD_PRODUCT</name>
              <description></description>
              <value>release</value>
            </hudson.model.StringParameterValue>
          </parameters>
        </hudson.model.ParametersAction>  
      </actions>
      <number>8065</number>
      <result>SUCCESS</result>
      <duration>3652965</duration>
      <charset>US-ASCII</charset>
      <keepLog>false</keepLog>
      <workspace>/Users/someuser/workspace/build-mac</workspace>
      <hudsonVersion>3.2.1</hudsonVersion>
      <scm class="hudson.scm.NullChangeLogParser"/>
      <culprits/>
    </build>
    
  3.     import xml.dom.minidom
        DOMTree=xml.dom.minidom.parse("build.xml")
        collection=DOMTree.documentElement
        string_par=collection.getElementsByTagName("hudson.model.StringParameterValue")
        for each_node in string_par:
           print each_node.getElementsByTagName('name')[0].childNodes[0].nodeValue
           print each_node.getElementsByTagName('value')[0].childNodes[0].nodeValue
    
        StartFrom
        Fetch_Source
        SE_CONFIG
        install-csu
        EMAIL_RCPT
        Traceback (most recent call last):
        File "<stdin>", line 3, in <module
        IndexError: list index out of range
    

2 个答案:

答案 0 :(得分:3)

由于您询问是否有其他方式,您可以尝试使用 xml.etree.ElementTree

以下链接中有一个很酷的例子,标签可以在for循环中定义:

http://chimera.labs.oreilly.com/books/1230000000393/ch06.html#_solution_96

我希望它有所帮助。

答案 1 :(得分:1)

通过ElementTree

完成
    doc =xml.etree.ElementTree.parse('build.xml')
    for node in doc.iter('hudson.model.StringParameterValue'):
        print str(node.find('name').text) + '\t' + str(node.find('value').text)