AttributeError:'元素'对象没有属性' findAll'

时间:2015-04-10 15:17:48

标签: python xml namespaces attributeerror findall

我正在尝试使用命名空间解析XML, XML看起来像

<DATA xmlns="http://example.com/nspace/DATA/1.0"  xmlns:UP="http://example.com/nspace/UP/1.1" col_time_us="14245034321452862">
<UP:IN>...</UP:IN>
<UP:ROW>
     <sampleField>...</sampleField>                
</UP:ROW>
<UP:ROW>
     <sampleField>...</sampleField>                
</UP:ROW>
.
. 
.
</DATA>

当我使用以下代码解析XML

tree=ET.parse(fileToParse);
root=tree.getRoot();
namespaces = {'UP':'http://example.com/nspace/DATA/1.0'}
for data in root.findAll('UP:ROW',namespaces):
        hour+=1

我收到以下错误:

AttributeError: 'Element' object has no attribute 'findAll'

当我尝试遍历root的子项并打印标记时,我得到{http://example.com/nspace/DATA/1.0}ROW作为标记而不仅仅是ROWS。

我想找到ROW元素并提取sampleField标记的值。有人可以指导一下我可能做错了吗?

1 个答案:

答案 0 :(得分:1)

ElementTree Element对象确实没有findAll()方法。正确的使用方法是Element.findall(),全部小写。

您还使用了UP命名空间的错误名称空间URI。根元素定义两个命名空间,您需要选择第二个:

<DATA xmlns="http://example.com/nspace/DATA/1.0"  
      xmlns:UP="http://example.com/nspace/UP/1.1" ...>

请注意xmlns:UP,因此请使用该URI:

>>> namespaces = {'UP': 'http://example.com/nspace/UP/1.1'}
>>> root.findall('UP:ROW', namespaces)
[<Element {http://example.com/nspace/UP/1.1}ROW at 0x102eea248>, <Element {http://example.com/nspace/UP/1.1}ROW at 0x102eead88>]