Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
246 views

How to parse this huge XML file with nested elements using lxml the efficient way?

I tried parsing this huge XML document using XML minidom. While it worked fine on a sample file, it choked the system when trying to process the real file (about 400 MB). I tried adapting code (it ...
5
votes
2answers
95 views

lxml.etree.iterparse closes input file handler?

filterous is using iterparse to parse a simple XML StringIO object in a unit test. However, when trying to access the StringIO object afterwards, Python exits with a "ValueError: I/O operation on ...
2
votes
4answers
111 views

Iteratively parsing HTML (with lxml?)

I'm currently trying to iteratively parse a very large HTML document (I know.. yuck) to reduce the amount of memory used. The problem I'm having is that I'm getting XML syntax errors such as: ...
2
votes
2answers
103 views

lxml iterparse in python can't handle namespaces

from lxml import etree import StringIO data= StringIO.StringIO('<root xmlns="http://some.random.schema"><a>One</a><a>Two</a><a>Three</a></root>') docs ...
2
votes
2answers
224 views

Parsing of a huge xml file with `pythons etree.iterparse()` does not work right. Is there a logic error in the code?

I want to parse a huge file xml-file. The records in this huge file do look for example like this. And in general the file looks like this <?xml version="1.0" encoding="ISO-8859-1"?> ...
1
vote
4answers
88 views

Ignore encoding errors in Python (iterparse)?

I've been fighting with this for an hour now. I'm parsing an XML-string with iterparse. However, the data is not encoded properly, and I am not the provider of it, so I can't fix the encoding. Here's ...
0
votes
1answer
282 views

Parsing Large XML file with Python lxml and Iterparse

I'm attempting to write a parser using lxml and the iterparse method to step through a very large xml file containing many items. My file is of the format: <item> <title>Item ...