Tagged Questions
ElementTree is a Python library for creating and parsing XML.
23
votes
3answers
6k views
XML parsing - ElementTree vs SAX and DOM
Python has several ways to parse XML...
I understand the very basics of parsing with SAX. It functions as a stream parser, with an event-driven API.
I understand the DOM parser also. It reads the ...
20
votes
2answers
6k views
ElementTree XPath - Select Element based on attribute [closed]
I am having trouble using the attribute XPath Selector in ElementTree, which I should be able to do according to the Documentation
Here's some sample code
XML
<root>
<target name="1">
...
14
votes
3answers
4k views
Need Help using XPath in ElementTree
I am having a heck of a time using ElementTree 1.3 in Python. Essentially, ElementTree does absolutely nothing.
My XML file looks like the following:
<?xml version="1.0"?>
...
11
votes
7answers
4k views
Comparing XML in a unit test in Python
I have an object that can build itself from an XML string, and write itself out to an XML string. I'd like to write a unit test to test round tripping through XML, but I'm having trouble comparing the ...
8
votes
2answers
6k views
Parsing XML in Python using ElementTree example
I'm having a hard time finding a good, basic example of how to parse XML in python using Element Tree. From what I can find, this appears to be the easiest library to use for parsing XML. Here is a ...
7
votes
1answer
182 views
Why is Python running out of memory?
A simplified version of my XML parsing function is here:
import xml.etree.cElementTree as ET
def analyze(xml):
it = ET.iterparse(file(xml))
count = 0
for (ev, el) in it:
count ...
6
votes
2answers
129 views
Is there a way to get a line number from an ElementTree Element
So I'm parsing some XML files using Python 3.2.1's cElementTree, and during the parsing I noticed that some of the tags were missing attribute information. I was wondering if there is any easy way of ...
5
votes
3answers
984 views
Remove whitespaces in XML string
How can I remove the whitespaces and line breaks in an XML string in Python 2.6? I tried the following packages:
etree: This snippet keeps the original whitespaces:
xmlStr = '''<root>
...
5
votes
2answers
3k views
Alter namespace prefixing with ElementTree in Python
By default, when you call ElementTree.parse(someXMLfile) the Python ElementTree library prefixes every parsed node with it's namespace URI in Clark's Notation:
...
4
votes
2answers
588 views
How to find XML Elements via XPath in Python in a namespace-agnostic way?
since I had this annoying issue for the 2nd time, I thought that asking would help.
Sometimes I have to get Elements from XML documents, but the ways to do this are awkward.
I’d like to know a ...
4
votes
2answers
562 views
Python and ElementTree: return “inner XML” excluding parent element
In Python 2.6 using ElementTree, what's a good way to fetch the XML (as a string) inside a particular element, like what you can do in HTML and javascript with innerHTML?
Here's a simplified sample ...
4
votes
1answer
661 views
access ElementTree node parent node
I am using the builtin Python ElementTree module. It is straightforward to access children, but what about parent nor sibling nodes? - can this be done efficiently without traversing the entire tree?
4
votes
4answers
4k views
Alternative XML parser for ElementTree to ease UTF-8 woes?
I am parsing some XML with the elementtree.parse() function. It works, except for some utf-8 characters(single byte character above 128). I see that the default parser is XMLTreeBuilder which is ...
3
votes
2answers
194 views
XML Parsing: Element Tree (etree) vs. minidom
I've been using minidom to parse XML for years. Now I've suddenly learned about Element Tree. My question which is better for parsing? That is:
Which is faster?
Which uses less memory?
Does either ...
3
votes
3answers
179 views
Can't dump or write an ElementTree element
I'm having a problem outputting even the simplest Element(Tree) instances. If I try the following code in Python 2.7.1
>>> from xml.etree.ElementTree import Element, SubElement, tostring
...
3
votes
2answers
79 views
Confused by which XML processing option to use
I'm fairly new to Python, and I've just started working with XML parsing. I am getting a bit overwhelmed by all the options for working with XML, and I'm hoping an experienced person can give me some ...
3
votes
1answer
130 views
ElementTree.write doesn't pretty_print on second pass
I'm having an issue with formatting xml when writing to an xml file. The issue is, the first time I write to the xml file, the xml is formatted properly using pretty_print=True. Any subsequent ...
3
votes
6answers
211 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 ...
3
votes
1answer
199 views
ElementTree XPath strange behaviour
Hi
I'm using ElementTree (1.3) with Python 2.7 and enjoy XPath functionality,
however one of search results surprised me.
My XML example:
<OTF>
<FECS state="disabled" ...
3
votes
1answer
141 views
Python's xml.etree.ElementTree equivalent to C++ XML library
I found xml.etree.ElementTree library very versatile and handy XML processor. How about C++? I found some C++ XML tools (Xerces-C++, TinyXml), but it's more like a xml.dom.
3
votes
1answer
929 views
Iterating multiple (parent,child) nodes using Python ElementTree
The standard implementation of ElementTree for Python (2.6) does not provide pointers to parents from child nodes. Therefore, if parents are needed, it is suggested to loop over parents rather than ...
3
votes
2answers
1k views
How to parse xml in Python on Google App Engine
For this following xml, how do I fetch the xml and then parse it to get out the value for <age>?
<boardgames>
<boardgame objectid="13">
...
3
votes
3answers
128 views
How to use “class” the word as parameter function calls in python
I am writing an XML generator per my manager's request. For less typings' sake, I decided using ElementTree as parser and SimpleXMLWriter as writer.
The result XML require attributes named "class". ...
3
votes
2answers
859 views
Does Python 2.5 include a package to natively transform an XML document?
In my Python app, I have an XML document that I'd like to transform using my XSL file. I'm currently using xml.etree to generate the XML document, but I haven't found anything within Python 2.5 that ...
2
votes
1answer
24 views
Is there any way to know how much memory an ElementTree DOM consumes?
Suppose you do the following:
dom = ElementTree()
dom.parse(some_file_path)
I'd like to log the rough amount of memory that this dom is now using in my process. I don't need something precise, ...
2
votes
2answers
78 views
How to create <!DOCTYPE> with Python's cElementTree
I have tried to use the answer in this question, but can't make it work: How to create "virtual root" with Python's ElementTree?
Here's my code:
import xml.etree.cElementTree as ...
2
votes
2answers
60 views
How can i do replace a child element(s) in ElementTree
I want to replace child elements from one tree to another , based on some criteria. I can do this using Comprehension ? But how do we replace element in ElementTree?
2
votes
3answers
106 views
Node.toprettyxml() adds newlines to DOCTYPE in Python
When using prettify my DOCTYPE is broken into three lines. How can I keep it on one line?
The "broken" output:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE smil
PUBLIC '-//W3C//DTD ...
2
votes
1answer
53 views
SQLAlchemy TypeDecorator doesn't work
I'm using xml in my postgresql database and I need a custom type could handle xml data in SQLAlchemy.
So I made XMLType class communicating with xml.etree, but It doesn't work as I wished.
here`s ...
2
votes
2answers
90 views
Using ElementTree to parse an XML string with a namespace
I have Googled my pants off to no avail. What I am trying to do is very simple: I'd like to access the UniqueID value in the following XML contained in a string using ElementTree.
from ...
2
votes
2answers
101 views
xml.etree.ElementTree and unicode findtext
I am trying to parse Medline xml documents using iterparse in the xml.etree.ElementTree module. All is working well except that some of the text includes non-ascii characters. I do not see a way of ...
2
votes
1answer
105 views
Converting xml to dictionary using ElementTree
I'm looking for an xml to dictionary parser using ElementTree, I already found some but they are excluding the attributes, and in my case I have a lot of attributes.
2
votes
1answer
144 views
python ElementTree write function
I am using python ElementTree to read and modify some content of my html files. When I am done with changes and use ElementTree.write function,
1) it adds extra html: infront of all the tags. How ...
2
votes
1answer
94 views
Creating xml doc with python/ElementTree and namespaces
I'm trying to create an in-memory xml document such that the root's child nodes all require a name space.
The final document should look something like this:
<Feed>
<FeedEntity ...
2
votes
1answer
103 views
Build/Parse an XML document from a socketstream in Python
I have an issue parsing a continuous stream of (multiple) xml documents sent by a third party over a socket. A sample of the xml stream sent over the socket is:
<?xml ...
2
votes
2answers
540 views
python - search/replace content of xml
I've been successful using xml.etree.ElementTree to parse an xml, search for content, then write this to a different xml. However, I just worked with text, inside of a singe tag.
import os, sys, ...
2
votes
1answer
555 views
Python - ElementTree- cannot use absolute path on element
I'm getting this error in ElementTree when I try to run the code below:
SyntaxError: cannot use absolute path on element
My XML document looks like this:
...
2
votes
1answer
242 views
How to prevent xml.ElementTree fromstring from dropping commentnode
I have tho following code fragment:
from xml.etree.ElementTree import fromstring,tostring
mathml = fromstring(input)
for elem in mathml.getiterator():
elem.tag = 'm:' + elem.tag
...
2
votes
2answers
1k views
Parsing an XML file using Element Tree
I have a large number of .xml files (about 70) and i need to extract some co-ordinates from them.
Apparently the best way to do this is to parse the xml file using element tree. I am new to python ...
2
votes
1answer
279 views
How to keep comments while parsing XML using Python / ElementTree
Currently using Python 2.4.3, and not allowed to upgrade
I want to change the values of a given attribute in one or more tags, together with XML-comments in the updated file.
I have managed to ...
2
votes
1answer
233 views
Read dynamic xml using element tree
Environment: Windows,Python,wxpython and Element tree as xml parser.
I am developing a stand alone where it reads the xml and creates a tree.
My application reads the xml and creates tree but when ...
2
votes
2answers
3k views
Python 2.5.4 - ImportError: No module named etree.ElementTree
I'm running Python 2.5.4 on Windows and I keep getting an error when trying to import the ElementTree or cElementTree modules. The code is very simple (I'm following a tutorial):
import ...
2
votes
2answers
725 views
Python + Expat: Error on � entities
I have written a small function, which uses ElementTree and xpath to extract the text contents of certain elements in an xml file:
#!/usr/bin/env python2.5
import doctest
from xml.etree import ...
2
votes
2answers
116 views
How to update the text of a tag in XML using Elementree
Using elementree, the easiest way to read the text of a tag is to do the following:
import elementtree.ElementTree as ET
sKeyMap = ET.parse("KeyMaps/KeyMap_Checklist.xml")
host = ...
2
votes
3answers
597 views
Can ElementTree be told to preserve the order of attributes?
I've written a fairly simple filter in python using ElementTree to munge the contexts of some xml files. And it works, more or less.
But it reorders the attributes of various tags, and I'd like it ...
2
votes
1answer
343 views
Read XML with multiple top-level items using Python ElementTree?
How can I read an XML file using Python ElementTree, if the XML has multiple top-level items?
I have an XML file that I would like to read using Python ElementTree.
Unfortunately, it has multiple ...
2
votes
1answer
709 views
Accessing XMLNS attribute with Python Elementree?
How can one access NS attributes through using ElementTree?
With the following:
<data xmlns="http://www.foo.net/a" xmlns:a="http://www.foo.net/a" book="1" category="ABS" date="2009-12-22">
...
2
votes
3answers
1k views
How to extract the first hit elements from an XML NCBI BLAST file?
Im trying to extract only the first hit from an NCBI xml BLAST file. next I would like to get only the first HSP. at the final stage I would like to get these based on best score.
to make things clear ...
2
votes
4answers
703 views
HTML inside node using ElementTree
I am using ElementTree to parse a XML file. In some fields, there will be HTML data. For example, consider a declaration as follows:
<Course>
<Description>Line 1<br />Line ...
2
votes
2answers
397 views
How to create “virtual root” with Python's ElementTree?
I am trying to use Python's ElementTree to generate an XHTML file.
However, the ElementTree.Element() just lets me create a single tag (e.g., HTML).
I need to create some sort of a virtual root or ...