App-Engine Parse a UrlFetch UTF-8 encoded stream
- by Davidrd91
I am trying to parse an XML from a URL using the xml.sax parser. I know there are other libraries to use but coming from Java this is the one I am most familiar with and seems the least complicated to me.
The code I'm using to parse is as follows:
parser = xml.sax.make_parser()
handler = MangaHandler()
parser.setContentHandler(handler)
url =…