简体   繁体   中英

lxml error : lxml.etree.XPathEvalError: Invalid expression with descendant

As I'm new to python and lxml also, not able to understand this error. Below is my xml text.

<node id="n25::n1">
  <data key="d5" xml:space="preserve"><![CDATA[ronin_sanity]]></data>
  <data key="d6">
    <ShapeNode>
      <Geometry height="86.25" width="182.0" x="3164.9136178770227" y="1045.403736953325"/>
      <Fill color="#C0C0C0" transparent="false"/>
      <BorderStyle color="#000000" raised="false" type="line" width="1.0"/>
      <NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.701171875" horizontalTextPosition="center" iconTextGap="4" modelName="internal" modelPosition="c" textColor="#000000" verticalTextPosition="bottom" visible="true" width="83.376953125" x="49.3115234375" xml:space="preserve" y="33.7744140625">Messages App</NodeLabel>
      <Shape type="ellipse"/>
    </ShapeNode>
  </data>
</node>

This is my xpath query. I want to search element with text Fill color ="#C0C0C0" .

etree.xpath(/node/descendant::Fill[@color='#C0C0C0'])

You can simply use proper xpath to find the element as shown below,

In [1]: import lxml.etree as ET
In [2]: cat myxml.xml
        <node id="n25::n1">
          <data key="d5" xml:space="preserve"><![CDATA[ronin_sanity]]></data>
          <data key="d6">
            <ShapeNode>
              <Geometry height="86.25" width="182.0" x="3164.9136178770227" y="1045.403736953325"/>
              <Fill color="#C0C0C0" transparent="false"/>
              <BorderStyle color="#000000" raised="false" type="line" width="1.0"/>
              <NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.701171875" horizontalTextPosition="center" iconTextGap="4" modelName="internal" modelPosition="c" textColor="#000000" verticalTextPosition="bottom" visible="true" width="83.376953125" x="49.3115234375" xml:space="preserve" y="33.7744140625">Messages App</NodeLabel>
              <Shape type="ellipse"/>
            </ShapeNode>
          </data>
        </node>

In [3]: tree = ET.parse('myxml.xml')

In [4]: root = tree.getroot()

In [5]: elem = root.xpath('//Fill[@color="#C0C0C0"]')

In [6]: elem
Out[6]: [<Element Fill at 0x7efe04280098>]

if the node is not matching then you will get a empty list as output

In [7]: elem = root.xpath('//Fill[@color="#C0C0C0ABC"]')

In [8]: elem
Out[8]: []

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM