5
Próbuję parsować plik xml przy użyciu python-amara.Drukowanie wartości atrybutów w python-amara
doc = amara.parse('h.xml')
assert doc.xml_type == tree.entity.xml_type
m = doc.xml_children[0]
print m
Kiedy to zrobić daje
amara.tree.element at 0x94c864c: name u'HOP', 0 namespaces, 0 attributes, 93 children
Jednak gdy próbuję to:
print doc.HOP.A.D
mówi:
AttributeError: 'amara.tree.entity' object has no attribute 'HOP'
jakiś pomysł?