Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
210 views

How to obtain the root of a tree without parsing the entire file?

I'm making an xml parser to parse xml reports from different tools, and each tool generates different reports with different tags. For example: Arachni generates an xml report with ...
2
votes
3answers
150 views

Which Python XML library should I use?

I am going to handle XML files for a project. I had earlier decided to use lxml but after reading the requirements, I think ElemenTree would be better for my purpose. The XML files that have to be ...
2
votes
1answer
1k views

parsing XML file in python with cElementTree: dealing with errors and line number in the file

I am using the cElementTree library to parse XML files in Python. Everything is working fine But I would like to provide full error messages for the user when a value in the XML is not correct. For ...
2
votes
2answers
1k views

How to retrieve the parent node using cElementTree?

for the xml <grandparent> <parent1> <child>data1</child> </parent1> <parent2> <child>data2</child> </parent2> ...
0
votes
1answer
467 views

Parsing XML using xml.etree.cElementTree

I have the following XML in a string named 'xml': <?xml version="1.0" encoding="ISO-8859-1"?> <Book> <Page> <Text>Blah</Text> </Page> </Book> I'm ...
0
votes
3answers
1k views

Django soaplib error

I'm trying to make a little "Hello World" webservice with Django following a few tutorials, but I'm hitting the same barrier over and over. I've defined a view.py and soaplib_handler.py: view.py: ...
0
votes
2answers
893 views

Find all nodes from an XML using cElementTree

Is there a way to find all nodes in a xml tree using cElementTree? The findall method works only for specified tags.