I need to parse a large (>800MB) XML file from Jython. The XML is not deeply nested, containing about a million relevant elements. I need to convert these elements into real objects.

I've used nu.xom.* successfully before, but now that I've switched from Java to Jython, the library fails with the following message:

The parser has encountered more than "64,000" entity expansions in this document; this is the limit imposed by the application.

I have not found a way to fix this, so I probably have to look for another XML library. It could be either Java or Jython-compatible Python and should be efficient. Pythonic would be great, nu.xom.* is simple but not very pythonic. Do you have any suggestions?

link|improve this question

I was going to suggest BeautifulSoup, but this appears to run inexplicably slowly under Jython. – Chinmay Kanchi Feb 24 '11 at 23:41
feedback

4 Answers

Try using the SAX parser, it is great for streaming large XML files.

link|improve this answer
You mean xml.sax (docs.python.org/library/xml.sax.html)? – cls Feb 23 '11 at 18:36
I have tried xml.sax, now I am running into the following error: xml.sax._exceptions.SAXParseException: <unknown>:1:1: The parser has encountered more than "64,000" entity expansions in this document; this is the limit imposed by the application. – cls Feb 23 '11 at 21:10
@clstaudt: Why accept an answer that gives you such an error message? – John Machin Feb 24 '11 at 21:26
Because the suggestion itself is reasonable, and the error message is a separate issue. Of course, there are other reasonable suggestions now, and there is probably not a single answer to my question. – cls Feb 25 '11 at 10:35
feedback

Does jython support xml.etree.ElementTree? If so, use the iterparse method to keep your memory size down. Read this and use elem.clear() as described.

link|improve this answer
It appears Jython does not support etree. There is a project here to address this, not sure how current it is. – scorpiodawg Apr 11 at 23:30
feedback

Sax is the best way to parse large documents.

Sounds like you're hitting the default expansion limit. See this note:

http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4843787

You need to set System property "entityExpansionLimit" to change the default.

(added) see also the answer to this question.

link|improve this answer
feedback

there is a lxml python library, that can parse large files, without loading data to memory. but i don't know if i jython compatible

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.