show/hide this revision's text 2 Improved based on comments

Registering callbacks slows down the parsing tremendously. [EDIT]This is because the (fast) C code has to invoke the python interpreter which is just not as fast as C. Basically, you're using the C code to read the file (fast) and then build the DOM in Python (slow).[/EDIT]

Try to use xml.etree.ElementTree which is implemented 100% in C and which can parse XML without any callbacks to python code.

After the document has been parsed, you can filter it to get what you want.

If that's still too slow and you don't need a DOM another option is to read the file into a string and use simple string operations to process it.

show/hide this revision's text 1

Registering callbacks slows down the parsing tremendously. Try to use xml.etree.ElementTree which is implemented 100% in C and which can parse XML without any callbacks.

After the document has been parsed, you can filter it to get what you want.

If that's too slow and you don't need a DOM another option is to read the file into a string and use simple string operations to process it.