当前位置:  开发笔记 > 编程语言 > 正文

如何从Google App Engine应用程序解析XML?

如何解决《如何从GoogleAppEngine应用程序解析XML?》经验,为你挑选了2个好方法。

如何从Google App Engine应用程序解析XML?任何例子?



1> Richard Wats..:

自从问到这个问题以来,谷歌已经将pyexpat列入白名单,其中包括minidom,因此您可以使用以下代码而无需上传任何库:

from xml.dom import minidom

dom = minidom.parseString('example text')

更多信息:http: //docs.python.org/library/xml.dom.minidom.html



2> jfs..:

看看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

推荐阅读
地之南_816
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有