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
Post a Comment