使用lxml和Python解析XML

时间:2013-06-28 22:15:44

标签: python xml parsing lxml

我有以下XML:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <LogonResponse xmlns="http://schemas.navitaire.com/ClientServices/Common/SessionManagerClient">
      <LogonResult>
        <LastName xmlns="http://schemas.navitaire.com/Messages/Session/Response">Mont</LastName>
        <FirstName xmlns="http://schemas.navitaire.com/Messages/Session/Response">Paul</FirstName>
        <PersonID xmlns="http://schemas.navitaire.com/Messages/Session/Response">123</PersonID>
        <CultureCode xmlns="http://schemas.navitaire.com/Messages/Session/Response">en-US</CultureCode>
        <CurrencyCode xmlns="http://schemas.navitaire.com/Messages/Session/Response">Dollar</CurrencyCode>
        <LastLogon xmlns="http://schemas.navitaire.com/Messages/Session/Response">0001-01-01T00:00:00</LastLogon>
        <SessionContext xmlns="http://schemas.navitaire.com/Common">
          <SessionControl>OneOnly</SessionControl>
          <SystemType>Default</SystemType>
          <SessionID>0</SessionID>
          <SequenceNumber>0</SequenceNumber>
          <MessageVersion>0</MessageVersion>
          <Signature>00000000-0000-0000-0000-000000000000</Signature>
          <ChannelType>Default</ChannelType>
          <InTransaction>false</InTransaction>
          <TransactionDepth>0</TransactionDepth>
          <TransactionCount>0</TransactionCount>
          <SecureToken>kFBOdZGqP6s=|/TftALE31236mSppQoFpArBizzz=</SecureToken>
        </SessionContext>
      </LogonResult>
    </LogonResponse>
  </s:Body>
</s:Envelope>

这个想法是将SecureToken,Signature和MessageVersion转换为变量,我正在尝试使用下面的代码:

SecureToken = tree.find('.//SecureToken').text

但没有运气,我需要使用所有命名空间或其他东西来实现这个目标吗?

请记住,此XML是来自请求的返回,我无法对其进行编辑。

1 个答案:

答案 0 :(得分:1)

如果你想避免必须完全处理名称空间,你可以做类似

的事情
tree.xpath("//*[local-name() = 'SecureToken']")[0].text

这可以解决这个特殊问题,但有其自身的局限性,在大多数情况下,我宁愿选择稍微更详细的命名空间感知搜索。