如何从Google App Engine应用程序解析XML?任何例子?
自从问到这个问题以来,谷歌已经将pyexpat列入白名单,其中包括minidom,因此您可以使用以下代码而无需上传任何库:
from xml.dom import minidom dom = minidom.parseString('example text ')
更多信息:http: //docs.python.org/library/xml.dom.minidom.html
看看XML和Python的现有答案.
像这样的东西可以工作:
from cStringIO import StringIO from xml.etree import cElementTree as etree xml = "aaabbb" for event, elem in etree.iterparse(StringIO(xml)): print elem.text
它打印:
bbb aaa