2 :mod:`xml.etree.ElementTree` --- The ElementTree XML API
3 ========================================================
5 .. module:: xml.etree.ElementTree
6 :synopsis: Implementation of the ElementTree API.
7 .. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com>
12 The Element type is a flexible container object, designed to store hierarchical
13 data structures in memory. The type can be described as a cross between a list
16 Each element has a number of properties associated with it:
18 * a tag which is a string identifying what kind of data this element represents
19 (the element type, in other words).
21 * a number of attributes, stored in a Python dictionary.
25 * an optional tail string.
27 * a number of child elements, stored in a Python sequence
29 To create an element instance, use the Element or SubElement factory functions.
31 The :class:`ElementTree` class can be used to wrap an element structure, and
32 convert it from and to XML.
34 A C implementation of this API is available as :mod:`xml.etree.cElementTree`.
36 See http://effbot.org/zone/element-index.htm for tutorials and links to other
37 docs. Fredrik Lundh's page is also the location of the development version of the
38 xml.etree.ElementTree.
40 .. _elementtree-functions:
46 .. function:: Comment([text])
48 Comment element factory. This factory function creates a special element that
49 will be serialized as an XML comment. The comment string can be either an 8-bit
50 ASCII string or a Unicode string. *text* is a string containing the comment
51 string. Returns an element instance representing a comment.
54 .. function:: dump(elem)
56 Writes an element tree or element structure to sys.stdout. This function should
57 be used for debugging only.
59 The exact output format is implementation dependent. In this version, it's
60 written as an ordinary XML file.
62 *elem* is an element tree or an individual element.
65 .. function:: Element(tag[, attrib][, **extra])
67 Element factory. This function returns an object implementing the standard
68 Element interface. The exact class or type of that object is implementation
69 dependent, but it will always be compatible with the _ElementInterface class in
72 The element name, attribute names, and attribute values can be either 8-bit
73 ASCII strings or Unicode strings. *tag* is the element name. *attrib* is an
74 optional dictionary, containing element attributes. *extra* contains additional
75 attributes, given as keyword arguments. Returns an element instance.
78 .. function:: fromstring(text)
80 Parses an XML section from a string constant. Same as XML. *text* is a string
81 containing XML data. Returns an Element instance.
84 .. function:: iselement(element)
86 Checks if an object appears to be a valid element object. *element* is an
87 element instance. Returns a true value if this is an element object.
90 .. function:: iterparse(source[, events])
92 Parses an XML section into an element tree incrementally, and reports what's
93 going on to the user. *source* is a filename or file object containing XML data.
94 *events* is a list of events to report back. If omitted, only "end" events are
95 reported. Returns an :term:`iterator` providing ``(event, elem)`` pairs.
98 .. function:: parse(source[, parser])
100 Parses an XML section into an element tree. *source* is a filename or file
101 object containing XML data. *parser* is an optional parser instance. If not
102 given, the standard XMLTreeBuilder parser is used. Returns an ElementTree
106 .. function:: ProcessingInstruction(target[, text])
108 PI element factory. This factory function creates a special element that will
109 be serialized as an XML processing instruction. *target* is a string containing
110 the PI target. *text* is a string containing the PI contents, if given. Returns
111 an element instance, representing a processing instruction.
114 .. function:: SubElement(parent, tag[, attrib[, **extra]])
116 Subelement factory. This function creates an element instance, and appends it
117 to an existing element.
119 The element name, attribute names, and attribute values can be either 8-bit
120 ASCII strings or Unicode strings. *parent* is the parent element. *tag* is the
121 subelement name. *attrib* is an optional dictionary, containing element
122 attributes. *extra* contains additional attributes, given as keyword arguments.
123 Returns an element instance.
126 .. function:: tostring(element[, encoding])
128 Generates a string representation of an XML element, including all subelements.
129 *element* is an Element instance. *encoding* is the output encoding (default is
130 US-ASCII). Returns an encoded string containing the XML data.
133 .. function:: XML(text)
135 Parses an XML section from a string constant. This function can be used to
136 embed "XML literals" in Python code. *text* is a string containing XML data.
137 Returns an Element instance.
140 .. function:: XMLID(text)
142 Parses an XML section from a string constant, and also returns a dictionary
143 which maps from element id:s to elements. *text* is a string containing XML
144 data. Returns a tuple containing an Element instance and a dictionary.
147 .. _elementtree-element-interface:
149 The Element Interface
150 ---------------------
152 Element objects returned by Element or SubElement have the following methods
156 .. attribute:: Element.tag
158 A string identifying what kind of data this element represents (the element
159 type, in other words).
162 .. attribute:: Element.text
164 The *text* attribute can be used to hold additional data associated with the
165 element. As the name implies this attribute is usually a string but may be any
166 application-specific object. If the element is created from an XML file the
167 attribute will contain any text found between the element tags.
170 .. attribute:: Element.tail
172 The *tail* attribute can be used to hold additional data associated with the
173 element. This attribute is usually a string but may be any application-specific
174 object. If the element is created from an XML file the attribute will contain
175 any text found after the element's end tag and before the next tag.
178 .. attribute:: Element.attrib
180 A dictionary containing the element's attributes. Note that while the *attrib*
181 value is always a real mutable Python dictionary, an ElementTree implementation
182 may choose to use another internal representation, and create the dictionary
183 only if someone asks for it. To take advantage of such implementations, use the
184 dictionary methods below whenever possible.
186 The following dictionary-like methods work on the element attributes.
189 .. method:: Element.clear()
191 Resets an element. This function removes all subelements, clears all
192 attributes, and sets the text and tail attributes to None.
195 .. method:: Element.get(key[, default=None])
197 Gets the element attribute named *key*.
199 Returns the attribute value, or *default* if the attribute was not found.
202 .. method:: Element.items()
204 Returns the element attributes as a sequence of (name, value) pairs. The
205 attributes are returned in an arbitrary order.
208 .. method:: Element.keys()
210 Returns the elements attribute names as a list. The names are returned in an
214 .. method:: Element.set(key, value)
216 Set the attribute *key* on the element to *value*.
218 The following methods work on the element's children (subelements).
221 .. method:: Element.append(subelement)
223 Adds the element *subelement* to the end of this elements internal list of
227 .. method:: Element.find(match)
229 Finds the first subelement matching *match*. *match* may be a tag name or path.
230 Returns an element instance or ``None``.
233 .. method:: Element.findall(match)
235 Finds all subelements matching *match*. *match* may be a tag name or path.
236 Returns an iterable yielding all matching elements in document order.
239 .. method:: Element.findtext(condition[, default=None])
241 Finds text for the first subelement matching *condition*. *condition* may be a
242 tag name or path. Returns the text content of the first matching element, or
243 *default* if no element was found. Note that if the matching element has no
244 text content an empty string is returned.
247 .. method:: Element.getchildren()
249 Returns all subelements. The elements are returned in document order.
252 .. method:: Element.getiterator([tag=None])
254 Creates a tree iterator with the current element as the root. The iterator
255 iterates over this element and all elements below it that match the given tag.
256 If tag is ``None`` or ``'*'`` then all elements are iterated over. Returns an
257 iterable that provides element objects in document (depth first) order.
260 .. method:: Element.insert(index, element)
262 Inserts a subelement at the given position in this element.
265 .. method:: Element.makeelement(tag, attrib)
267 Creates a new element object of the same type as this element. Do not call this
268 method, use the SubElement factory function instead.
271 .. method:: Element.remove(subelement)
273 Removes *subelement* from the element. Unlike the findXYZ methods this method
274 compares elements based on the instance identity, not on tag value or contents.
276 Element objects also support the following sequence type methods for working
277 with subelements: :meth:`__delitem__`, :meth:`__getitem__`, :meth:`__setitem__`,
280 Caution: Because Element objects do not define a :meth:`__nonzero__` method,
281 elements with no subelements will test as ``False``. ::
283 element = root.find('foo')
285 if not element: # careful!
286 print "element not found, or element has no subelements"
289 print "element not found"
292 .. _elementtree-elementtree-objects:
298 .. class:: ElementTree([element,] [file])
300 ElementTree wrapper class. This class represents an entire element hierarchy,
301 and adds some extra support for serialization to and from standard XML.
303 *element* is the root element. The tree is initialized with the contents of the
307 .. method:: ElementTree._setroot(element)
309 Replaces the root element for this tree. This discards the current contents of
310 the tree, and replaces it with the given element. Use with care. *element* is
314 .. method:: ElementTree.find(path)
316 Finds the first toplevel element with given tag. Same as getroot().find(path).
317 *path* is the element to look for. Returns the first matching element, or
318 ``None`` if no element was found.
321 .. method:: ElementTree.findall(path)
323 Finds all toplevel elements with the given tag. Same as getroot().findall(path).
324 *path* is the element to look for. Returns a list or :term:`iterator` containing all
325 matching elements, in document order.
328 .. method:: ElementTree.findtext(path[, default])
330 Finds the element text for the first toplevel element with given tag. Same as
331 getroot().findtext(path). *path* is the toplevel element to look for. *default*
332 is the value to return if the element was not found. Returns the text content of
333 the first matching element, or the default value no element was found. Note
334 that if the element has is found, but has no text content, this method returns
338 .. method:: ElementTree.getiterator([tag])
340 Creates and returns a tree iterator for the root element. The iterator loops
341 over all elements in this tree, in section order. *tag* is the tag to look for
342 (default is to return all elements)
345 .. method:: ElementTree.getroot()
347 Returns the root element for this tree.
350 .. method:: ElementTree.parse(source[, parser])
352 Loads an external XML section into this element tree. *source* is a file name or
353 file object. *parser* is an optional parser instance. If not given, the
354 standard XMLTreeBuilder parser is used. Returns the section root element.
357 .. method:: ElementTree.write(file[, encoding])
359 Writes the element tree to a file, as XML. *file* is a file name, or a file
360 object opened for writing. *encoding* is the output encoding (default is
363 This is the XML file that is going to be manipulated::
367 <title>Example page</title>
370 <p>Moved to <a href="http://example.org/">example.org</a>
371 or <a href="http://example.com/">example.com</a>.</p>
375 Example of changing the attribute "target" of every link in first paragraph::
377 >>> from xml.etree.ElementTree import ElementTree
378 >>> tree = ElementTree()
379 >>> tree.parse("index.xhtml")
380 <Element html at b7d3f1ec>
381 >>> p = tree.find("body/p") # Finds first occurrence of tag p in body
383 <Element p at 8416e0c>
384 >>> links = p.getiterator("a") # Returns list of all links
386 [<Element a at b7d4f9ec>, <Element a at b7d4fb0c>]
387 >>> for i in links: # Iterates through all found links
388 ... i.attrib["target"] = "blank"
389 >>> tree.write("output.xhtml")
391 .. _elementtree-qname-objects:
397 .. class:: QName(text_or_uri[, tag])
399 QName wrapper. This can be used to wrap a QName attribute value, in order to
400 get proper namespace handling on output. *text_or_uri* is a string containing
401 the QName value, in the form {uri}local, or, if the tag argument is given, the
402 URI part of a QName. If *tag* is given, the first argument is interpreted as an
403 URI, and this argument is interpreted as a local name. :class:`QName` instances
407 .. _elementtree-treebuilder-objects:
413 .. class:: TreeBuilder([element_factory])
415 Generic element structure builder. This builder converts a sequence of start,
416 data, and end method calls to a well-formed element structure. You can use this
417 class to build an element structure using a custom XML parser, or a parser for
418 some other XML-like format. The *element_factory* is called to create new
419 Element instances when given.
422 .. method:: TreeBuilder.close()
424 Flushes the parser buffers, and returns the toplevel documen element. Returns an
428 .. method:: TreeBuilder.data(data)
430 Adds text to the current element. *data* is a string. This should be either an
431 8-bit string containing ASCII text, or a Unicode string.
434 .. method:: TreeBuilder.end(tag)
436 Closes the current element. *tag* is the element name. Returns the closed
440 .. method:: TreeBuilder.start(tag, attrs)
442 Opens a new element. *tag* is the element name. *attrs* is a dictionary
443 containing element attributes. Returns the opened element.
446 .. _elementtree-xmltreebuilder-objects:
448 XMLTreeBuilder Objects
449 ----------------------
452 .. class:: XMLTreeBuilder([html,] [target])
454 Element structure builder for XML source data, based on the expat parser. *html*
455 are predefined HTML entities. This flag is not supported by the current
456 implementation. *target* is the target object. If omitted, the builder uses an
457 instance of the standard TreeBuilder class.
460 .. method:: XMLTreeBuilder.close()
462 Finishes feeding data to the parser. Returns an element structure.
465 .. method:: XMLTreeBuilder.doctype(name, pubid, system)
467 Handles a doctype declaration. *name* is the doctype name. *pubid* is the public
468 identifier. *system* is the system identifier.
471 .. method:: XMLTreeBuilder.feed(data)
473 Feeds data to the parser. *data* is encoded data.
475 :meth:`XMLTreeBuilder.feed` calls *target*\'s :meth:`start` method
476 for each opening tag, its :meth:`end` method for each closing tag,
477 and data is processed by method :meth:`data`. :meth:`XMLTreeBuilder.close`
478 calls *target*\'s method :meth:`close`.
479 :class:`XMLTreeBuilder` can be used not only for building a tree structure.
480 This is an example of counting the maximum depth of an XML file::
482 >>> from xml.etree.ElementTree import XMLTreeBuilder
483 >>> class MaxDepth: # The target object of the parser
486 ... def start(self, tag, attrib): # Called for each opening tag.
488 ... if self.depth > self.maxDepth:
489 ... self.maxDepth = self.depth
490 ... def end(self, tag): # Called for each closing tag.
492 ... def data(self, data):
493 ... pass # We do not need to do anything with data.
494 ... def close(self): # Called when all data has been parsed.
495 ... return self.maxDepth
497 >>> target = MaxDepth()
498 >>> parser = XMLTreeBuilder(target=target)
510 >>> parser.feed(exampleXml)