I'm trying to parse XML files using minidom. This is simple in simple cases (doc = xml.dom.minidom.parse(fileName)). But I have XML containing named entities (e. g. ü, à and similar, some are special and non-standard).
I think I still can use minidom but have to pass a proprietary parser (containing an entity resolver) when calling xml.dom.minidom.parse(source, parser) as second argument. I cannot find any example for this. Does anybody have a link or a small example for me which does this?
&blah;) myself. Is there such an option? – Alfe Jul 17 '12 at 10:41