Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For:

<foo>
 <bar key="value">text</bar>
</foo>

How do I get "value"?

xml.findtext("./bar[@key]")

Throws an error.

share|improve this question
What's the error message? – keegan3d Jan 1 '11 at 5:38

2 Answers

up vote 4 down vote accepted
In [52]: import xml.etree.ElementTree as ET

In [53]: xml=ET.fromstring(contents)

In [54]: xml.find('./bar').attrib['key']
Out[54]: 'value'
share|improve this answer

Your expression:

./bar[@key]

It means: bar children having key attribute

If you want to select the attribute, use this relative expression:

bar/@key

It means: the key attribute of bar children

Of course, you need to consider to use a full complain XPath engine like lxml: http://codespeak.net/lxml/xpathxslt.html

share|improve this answer
Not sure if it's ElementTree or Google App Engine but the use of '@' raises SyntaxError("unsupported path syntax (%s)" % op) SyntaxError: unsupported path syntax (@) – Will Merydith Jan 1 '11 at 17:06
@Will Merydith: Please, read my last sentence. Basic ElementTree API it's not a full complain XPath engine... – user357812 Jan 1 '11 at 17:09
OK. I'll see if I can find a module that will work on GAE/Py2.5.5. – Will Merydith Jan 1 '11 at 17:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.