[google-appengine] Re: what xml lib use

2010-10-14 Thread alf
yes we are using python. ths On Oct 14, 9:28 am, alf wrote: > hi gloogers > > we are starting to use a xml in ours gae enviroment we need choose one > external library to manage xml object we can user sax, minidom and > probably more. I would like start learning libray that google use > internal

[google-appengine] Re: what xml lib use

2010-10-14 Thread Tim Hoffman
Also you should note in appengine the only way you have to talk to any remote service is via urlfetch (or urllib2 which is layered over urlfetch) or the xmpp service. You can't open sockets etc or use any non http(s) based protocol in appengine. Rgds Tim On Oct 14, 4:30 pm, Tim Hoffman wrote:

[google-appengine] Re: what xml lib use

2010-10-14 Thread Tim Hoffman
Hi I am going to assume your using python. You should look at elementtree. Its already in the standard python distribution and for many tasks its the simplest to use if it's all your own code. If you using some other tools then they may have dependencies on other specific parsers. If you have