python - Google app engine parsing xml more then 1 mb -


hi need parse xml file more 1 mb in size, know gae can handle request , response 10 mb need use sax parser api , api gae has limit of 1 mb there way can parse file more 1 mb ways.

the 1mb limit doesn't apply parsing; however, can't fetch more 1mb urlfetch; you'll first 1mb api.

it's not going possible xml application using urlfetch api. if data smaller 10mb, can arrange external process post application , process it. if it's between 10mb , 2gb, you'd need use blobstore api upload it, read in application in 1mb chunks, , process concatenation of chunks.


Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -