blob: f4bccf6609810ee05814d0ce5a0eac1654f197f5 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`xml.etree.ElementTree` --- The ElementTree XML API
2========================================================
3
4.. module:: xml.etree.ElementTree
5 :synopsis: Implementation of the ElementTree API.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Georg Brandl116aa622007-08-15 14:28:22 +00007.. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com>
8
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04009**Source code:** :source:`Lib/xml/etree/ElementTree.py`
10
11--------------
12
Eli Benderskyc1d98692012-03-30 11:44:15 +030013The :mod:`xml.etree.ElementTree` module implements a simple and efficient API
14for parsing and creating XML data.
Florent Xiclunaf15351d2010-03-13 23:24:31 +000015
Florent Xiclunaa72a98f2012-02-13 11:03:30 +010016.. versionchanged:: 3.3
17 This module will use a fast implementation whenever available.
Serhiy Storchakaec88e1b2020-06-10 18:39:12 +030018
19.. deprecated:: 3.3
Florent Xiclunaa72a98f2012-02-13 11:03:30 +010020 The :mod:`xml.etree.cElementTree` module is deprecated.
21
Christian Heimes7380a672013-03-26 17:35:55 +010022
23.. warning::
24
25 The :mod:`xml.etree.ElementTree` module is not secure against
26 maliciously constructed data. If you need to parse untrusted or
27 unauthenticated data see :ref:`xml-vulnerabilities`.
28
Eli Benderskyc1d98692012-03-30 11:44:15 +030029Tutorial
30--------
Georg Brandl116aa622007-08-15 14:28:22 +000031
Eli Benderskyc1d98692012-03-30 11:44:15 +030032This is a short tutorial for using :mod:`xml.etree.ElementTree` (``ET`` in
33short). The goal is to demonstrate some of the building blocks and basic
34concepts of the module.
Eli Bendersky3a4875e2012-03-26 20:43:32 +020035
Eli Benderskyc1d98692012-03-30 11:44:15 +030036XML tree and elements
37^^^^^^^^^^^^^^^^^^^^^
Eli Bendersky3a4875e2012-03-26 20:43:32 +020038
Eli Benderskyc1d98692012-03-30 11:44:15 +030039XML is an inherently hierarchical data format, and the most natural way to
40represent it is with a tree. ``ET`` has two classes for this purpose -
41:class:`ElementTree` represents the whole XML document as a tree, and
42:class:`Element` represents a single node in this tree. Interactions with
43the whole document (reading and writing to/from files) are usually done
44on the :class:`ElementTree` level. Interactions with a single XML element
45and its sub-elements are done on the :class:`Element` level.
Eli Bendersky3a4875e2012-03-26 20:43:32 +020046
Eli Benderskyc1d98692012-03-30 11:44:15 +030047.. _elementtree-parsing-xml:
Eli Bendersky3a4875e2012-03-26 20:43:32 +020048
Eli Benderskyc1d98692012-03-30 11:44:15 +030049Parsing XML
50^^^^^^^^^^^
Eli Bendersky3a4875e2012-03-26 20:43:32 +020051
Eli Bendersky0f4e9342012-08-14 07:19:33 +030052We'll be using the following XML document as the sample data for this section:
Eli Bendersky3a4875e2012-03-26 20:43:32 +020053
Eli Bendersky0f4e9342012-08-14 07:19:33 +030054.. code-block:: xml
55
56 <?xml version="1.0"?>
Eli Bendersky3a4875e2012-03-26 20:43:32 +020057 <data>
Eli Bendersky3115f0d2012-08-15 14:26:30 +030058 <country name="Liechtenstein">
Eli Bendersky3a4875e2012-03-26 20:43:32 +020059 <rank>1</rank>
60 <year>2008</year>
61 <gdppc>141100</gdppc>
62 <neighbor name="Austria" direction="E"/>
63 <neighbor name="Switzerland" direction="W"/>
64 </country>
65 <country name="Singapore">
66 <rank>4</rank>
67 <year>2011</year>
68 <gdppc>59900</gdppc>
69 <neighbor name="Malaysia" direction="N"/>
70 </country>
71 <country name="Panama">
72 <rank>68</rank>
73 <year>2011</year>
74 <gdppc>13600</gdppc>
75 <neighbor name="Costa Rica" direction="W"/>
76 <neighbor name="Colombia" direction="E"/>
77 </country>
78 </data>
Eli Bendersky3a4875e2012-03-26 20:43:32 +020079
Eli Bendersky0f4e9342012-08-14 07:19:33 +030080We can import this data by reading from a file::
Eli Benderskyc1d98692012-03-30 11:44:15 +030081
82 import xml.etree.ElementTree as ET
Eli Bendersky0f4e9342012-08-14 07:19:33 +030083 tree = ET.parse('country_data.xml')
84 root = tree.getroot()
Eli Benderskyc1d98692012-03-30 11:44:15 +030085
Eli Bendersky0f4e9342012-08-14 07:19:33 +030086Or directly from a string::
87
88 root = ET.fromstring(country_data_as_string)
Eli Benderskyc1d98692012-03-30 11:44:15 +030089
90:func:`fromstring` parses XML from a string directly into an :class:`Element`,
91which is the root element of the parsed tree. Other parsing functions may
Eli Bendersky0f4e9342012-08-14 07:19:33 +030092create an :class:`ElementTree`. Check the documentation to be sure.
Eli Benderskyc1d98692012-03-30 11:44:15 +030093
94As an :class:`Element`, ``root`` has a tag and a dictionary of attributes::
95
96 >>> root.tag
97 'data'
98 >>> root.attrib
99 {}
100
101It also has children nodes over which we can iterate::
102
103 >>> for child in root:
Serhiy Storchakadba90392016-05-10 12:01:23 +0300104 ... print(child.tag, child.attrib)
Eli Benderskyc1d98692012-03-30 11:44:15 +0300105 ...
Eli Bendersky3115f0d2012-08-15 14:26:30 +0300106 country {'name': 'Liechtenstein'}
Eli Benderskyc1d98692012-03-30 11:44:15 +0300107 country {'name': 'Singapore'}
108 country {'name': 'Panama'}
109
110Children are nested, and we can access specific child nodes by index::
111
112 >>> root[0][1].text
113 '2008'
114
R David Murray410d3202014-01-04 23:52:50 -0500115
Eli Bendersky0bd22d42014-04-03 06:14:38 -0700116.. note::
117
118 Not all elements of the XML input will end up as elements of the
119 parsed tree. Currently, this module skips over any XML comments,
120 processing instructions, and document type declarations in the
121 input. Nevertheless, trees built using this module's API rather
122 than parsing from XML text can have comments and processing
123 instructions in them; they will be included when generating XML
124 output. A document type declaration may be accessed by passing a
125 custom :class:`TreeBuilder` instance to the :class:`XMLParser`
126 constructor.
127
128
R David Murray410d3202014-01-04 23:52:50 -0500129.. _elementtree-pull-parsing:
130
Eli Bendersky2c68e302013-08-31 07:37:23 -0700131Pull API for non-blocking parsing
Eli Benderskyb5869342013-08-30 05:51:20 -0700132^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Eli Bendersky3bdead12013-04-20 09:06:27 -0700133
R David Murray410d3202014-01-04 23:52:50 -0500134Most parsing functions provided by this module require the whole document
135to be read at once before returning any result. It is possible to use an
136:class:`XMLParser` and feed data into it incrementally, but it is a push API that
Eli Benderskyb5869342013-08-30 05:51:20 -0700137calls methods on a callback target, which is too low-level and inconvenient for
138most needs. Sometimes what the user really wants is to be able to parse XML
139incrementally, without blocking operations, while enjoying the convenience of
140fully constructed :class:`Element` objects.
Eli Bendersky3bdead12013-04-20 09:06:27 -0700141
Eli Benderskyb5869342013-08-30 05:51:20 -0700142The most powerful tool for doing this is :class:`XMLPullParser`. It does not
143require a blocking read to obtain the XML data, and is instead fed with data
144incrementally with :meth:`XMLPullParser.feed` calls. To get the parsed XML
R David Murray410d3202014-01-04 23:52:50 -0500145elements, call :meth:`XMLPullParser.read_events`. Here is an example::
Eli Benderskyb5869342013-08-30 05:51:20 -0700146
Eli Bendersky2c68e302013-08-31 07:37:23 -0700147 >>> parser = ET.XMLPullParser(['start', 'end'])
148 >>> parser.feed('<mytag>sometext')
149 >>> list(parser.read_events())
Eli Benderskyb5869342013-08-30 05:51:20 -0700150 [('start', <Element 'mytag' at 0x7fa66db2be58>)]
Eli Bendersky2c68e302013-08-31 07:37:23 -0700151 >>> parser.feed(' more text</mytag>')
152 >>> for event, elem in parser.read_events():
Serhiy Storchakadba90392016-05-10 12:01:23 +0300153 ... print(event)
154 ... print(elem.tag, 'text=', elem.text)
Eli Benderskyb5869342013-08-30 05:51:20 -0700155 ...
156 end
Eli Bendersky3bdead12013-04-20 09:06:27 -0700157
Eli Bendersky2c68e302013-08-31 07:37:23 -0700158The obvious use case is applications that operate in a non-blocking fashion
Eli Bendersky3bdead12013-04-20 09:06:27 -0700159where the XML data is being received from a socket or read incrementally from
160some storage device. In such cases, blocking reads are unacceptable.
161
Eli Benderskyb5869342013-08-30 05:51:20 -0700162Because it's so flexible, :class:`XMLPullParser` can be inconvenient to use for
163simpler use-cases. If you don't mind your application blocking on reading XML
164data but would still like to have incremental parsing capabilities, take a look
165at :func:`iterparse`. It can be useful when you're reading a large XML document
166and don't want to hold it wholly in memory.
Eli Bendersky3bdead12013-04-20 09:06:27 -0700167
Eli Benderskyc1d98692012-03-30 11:44:15 +0300168Finding interesting elements
169^^^^^^^^^^^^^^^^^^^^^^^^^^^^
170
171:class:`Element` has some useful methods that help iterate recursively over all
172the sub-tree below it (its children, their children, and so on). For example,
173:meth:`Element.iter`::
174
175 >>> for neighbor in root.iter('neighbor'):
Serhiy Storchakadba90392016-05-10 12:01:23 +0300176 ... print(neighbor.attrib)
Eli Benderskyc1d98692012-03-30 11:44:15 +0300177 ...
178 {'name': 'Austria', 'direction': 'E'}
179 {'name': 'Switzerland', 'direction': 'W'}
180 {'name': 'Malaysia', 'direction': 'N'}
181 {'name': 'Costa Rica', 'direction': 'W'}
182 {'name': 'Colombia', 'direction': 'E'}
183
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300184:meth:`Element.findall` finds only elements with a tag which are direct
185children of the current element. :meth:`Element.find` finds the *first* child
Georg Brandlbdaee3a2013-10-06 09:23:03 +0200186with a particular tag, and :attr:`Element.text` accesses the element's text
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300187content. :meth:`Element.get` accesses the element's attributes::
188
189 >>> for country in root.findall('country'):
Serhiy Storchakadba90392016-05-10 12:01:23 +0300190 ... rank = country.find('rank').text
191 ... name = country.get('name')
192 ... print(name, rank)
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300193 ...
Eli Bendersky3115f0d2012-08-15 14:26:30 +0300194 Liechtenstein 1
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300195 Singapore 4
196 Panama 68
197
Eli Benderskyc1d98692012-03-30 11:44:15 +0300198More sophisticated specification of which elements to look for is possible by
199using :ref:`XPath <elementtree-xpath>`.
200
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300201Modifying an XML File
202^^^^^^^^^^^^^^^^^^^^^
Eli Benderskyc1d98692012-03-30 11:44:15 +0300203
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300204:class:`ElementTree` provides a simple way to build XML documents and write them to files.
Eli Benderskyc1d98692012-03-30 11:44:15 +0300205The :meth:`ElementTree.write` method serves this purpose.
206
207Once created, an :class:`Element` object may be manipulated by directly changing
208its fields (such as :attr:`Element.text`), adding and modifying attributes
209(:meth:`Element.set` method), as well as adding new children (for example
210with :meth:`Element.append`).
211
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300212Let's say we want to add one to each country's rank, and add an ``updated``
213attribute to the rank element::
214
215 >>> for rank in root.iter('rank'):
Serhiy Storchakadba90392016-05-10 12:01:23 +0300216 ... new_rank = int(rank.text) + 1
217 ... rank.text = str(new_rank)
218 ... rank.set('updated', 'yes')
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300219 ...
Eli Benderskya1b0f6d2012-08-18 05:42:22 +0300220 >>> tree.write('output.xml')
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300221
222Our XML now looks like this:
223
224.. code-block:: xml
225
226 <?xml version="1.0"?>
227 <data>
Eli Bendersky3115f0d2012-08-15 14:26:30 +0300228 <country name="Liechtenstein">
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300229 <rank updated="yes">2</rank>
230 <year>2008</year>
231 <gdppc>141100</gdppc>
232 <neighbor name="Austria" direction="E"/>
233 <neighbor name="Switzerland" direction="W"/>
234 </country>
235 <country name="Singapore">
236 <rank updated="yes">5</rank>
237 <year>2011</year>
238 <gdppc>59900</gdppc>
239 <neighbor name="Malaysia" direction="N"/>
240 </country>
241 <country name="Panama">
242 <rank updated="yes">69</rank>
243 <year>2011</year>
244 <gdppc>13600</gdppc>
245 <neighbor name="Costa Rica" direction="W"/>
246 <neighbor name="Colombia" direction="E"/>
247 </country>
248 </data>
249
250We can remove elements using :meth:`Element.remove`. Let's say we want to
251remove all countries with a rank higher than 50::
252
253 >>> for country in root.findall('country'):
scoder40db7982020-10-05 01:13:46 +0200254 ... # using root.findall() to avoid removal during traversal
Serhiy Storchakadba90392016-05-10 12:01:23 +0300255 ... rank = int(country.find('rank').text)
256 ... if rank > 50:
257 ... root.remove(country)
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300258 ...
Eli Benderskya1b0f6d2012-08-18 05:42:22 +0300259 >>> tree.write('output.xml')
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300260
scoder40db7982020-10-05 01:13:46 +0200261Note that concurrent modification while iterating can lead to problems,
262just like when iterating and modifying Python lists or dicts.
263Therefore, the example first collects all matching elements with
264``root.findall()``, and only then iterates over the list of matches.
265
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300266Our XML now looks like this:
267
268.. code-block:: xml
269
270 <?xml version="1.0"?>
271 <data>
Eli Bendersky3115f0d2012-08-15 14:26:30 +0300272 <country name="Liechtenstein">
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300273 <rank updated="yes">2</rank>
274 <year>2008</year>
275 <gdppc>141100</gdppc>
276 <neighbor name="Austria" direction="E"/>
277 <neighbor name="Switzerland" direction="W"/>
278 </country>
279 <country name="Singapore">
280 <rank updated="yes">5</rank>
281 <year>2011</year>
282 <gdppc>59900</gdppc>
283 <neighbor name="Malaysia" direction="N"/>
284 </country>
285 </data>
286
287Building XML documents
288^^^^^^^^^^^^^^^^^^^^^^
289
Eli Benderskyc1d98692012-03-30 11:44:15 +0300290The :func:`SubElement` function also provides a convenient way to create new
291sub-elements for a given element::
292
293 >>> a = ET.Element('a')
294 >>> b = ET.SubElement(a, 'b')
295 >>> c = ET.SubElement(a, 'c')
296 >>> d = ET.SubElement(c, 'd')
297 >>> ET.dump(a)
298 <a><b /><c><d /></c></a>
299
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700300Parsing XML with Namespaces
301^^^^^^^^^^^^^^^^^^^^^^^^^^^
302
303If the XML input has `namespaces
304<https://en.wikipedia.org/wiki/XML_namespace>`__, tags and attributes
305with prefixes in the form ``prefix:sometag`` get expanded to
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700306``{uri}sometag`` where the *prefix* is replaced by the full *URI*.
307Also, if there is a `default namespace
sblondon8d1f2f42018-02-10 23:39:43 +0100308<https://www.w3.org/TR/xml-names/#defaulting>`__,
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700309that full URI gets prepended to all of the non-prefixed tags.
310
311Here is an XML example that incorporates two namespaces, one with the
312prefix "fictional" and the other serving as the default namespace:
313
314.. code-block:: xml
315
316 <?xml version="1.0"?>
317 <actors xmlns:fictional="http://characters.example.com"
318 xmlns="http://people.example.com">
319 <actor>
320 <name>John Cleese</name>
321 <fictional:character>Lancelot</fictional:character>
322 <fictional:character>Archie Leach</fictional:character>
323 </actor>
324 <actor>
325 <name>Eric Idle</name>
326 <fictional:character>Sir Robin</fictional:character>
327 <fictional:character>Gunther</fictional:character>
328 <fictional:character>Commander Clement</fictional:character>
329 </actor>
330 </actors>
331
332One way to search and explore this XML example is to manually add the
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700333URI to every tag or attribute in the xpath of a
334:meth:`~Element.find` or :meth:`~Element.findall`::
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700335
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700336 root = fromstring(xml_text)
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700337 for actor in root.findall('{http://people.example.com}actor'):
338 name = actor.find('{http://people.example.com}name')
339 print(name.text)
340 for char in actor.findall('{http://characters.example.com}character'):
341 print(' |-->', char.text)
342
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700343A better way to search the namespaced XML example is to create a
344dictionary with your own prefixes and use those in the search functions::
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700345
346 ns = {'real_person': 'http://people.example.com',
347 'role': 'http://characters.example.com'}
348
349 for actor in root.findall('real_person:actor', ns):
350 name = actor.find('real_person:name', ns)
351 print(name.text)
352 for char in actor.findall('role:character', ns):
353 print(' |-->', char.text)
354
355These two approaches both output::
356
357 John Cleese
358 |--> Lancelot
359 |--> Archie Leach
360 Eric Idle
361 |--> Sir Robin
362 |--> Gunther
363 |--> Commander Clement
364
365
Eli Benderskyc1d98692012-03-30 11:44:15 +0300366Additional resources
367^^^^^^^^^^^^^^^^^^^^
368
369See http://effbot.org/zone/element-index.htm for tutorials and links to other
370docs.
371
372
373.. _elementtree-xpath:
374
375XPath support
376-------------
377
378This module provides limited support for
Serhiy Storchaka6dff0202016-05-07 10:49:07 +0300379`XPath expressions <https://www.w3.org/TR/xpath>`_ for locating elements in a
Eli Benderskyc1d98692012-03-30 11:44:15 +0300380tree. The goal is to support a small subset of the abbreviated syntax; a full
381XPath engine is outside the scope of the module.
382
383Example
384^^^^^^^
385
386Here's an example that demonstrates some of the XPath capabilities of the
387module. We'll be using the ``countrydata`` XML document from the
388:ref:`Parsing XML <elementtree-parsing-xml>` section::
389
390 import xml.etree.ElementTree as ET
391
392 root = ET.fromstring(countrydata)
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200393
394 # Top-level elements
Eli Benderskyc1d98692012-03-30 11:44:15 +0300395 root.findall(".")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200396
397 # All 'neighbor' grand-children of 'country' children of the top-level
398 # elements
Eli Benderskyc1d98692012-03-30 11:44:15 +0300399 root.findall("./country/neighbor")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200400
401 # Nodes with name='Singapore' that have a 'year' child
Eli Benderskyc1d98692012-03-30 11:44:15 +0300402 root.findall(".//year/..[@name='Singapore']")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200403
404 # 'year' nodes that are children of nodes with name='Singapore'
Eli Benderskyc1d98692012-03-30 11:44:15 +0300405 root.findall(".//*[@name='Singapore']/year")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200406
407 # All 'neighbor' nodes that are the second child of their parent
Eli Benderskyc1d98692012-03-30 11:44:15 +0300408 root.findall(".//neighbor[2]")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200409
Stefan Behnel47541682019-05-03 20:58:16 +0200410For XML with namespaces, use the usual qualified ``{namespace}tag`` notation::
411
412 # All dublin-core "title" tags in the document
413 root.findall(".//{http://purl.org/dc/elements/1.1/}title")
414
415
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200416Supported XPath syntax
417^^^^^^^^^^^^^^^^^^^^^^
418
Georg Brandl44ea77b2013-03-28 13:28:44 +0100419.. tabularcolumns:: |l|L|
420
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200421+-----------------------+------------------------------------------------------+
422| Syntax | Meaning |
423+=======================+======================================================+
424| ``tag`` | Selects all child elements with the given tag. |
425| | For example, ``spam`` selects all child elements |
Raymond Hettinger1e1e6012014-03-29 11:50:08 -0700426| | named ``spam``, and ``spam/egg`` selects all |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200427| | grandchildren named ``egg`` in all children named |
Stefan Behnel47541682019-05-03 20:58:16 +0200428| | ``spam``. ``{namespace}*`` selects all tags in the |
429| | given namespace, ``{*}spam`` selects tags named |
430| | ``spam`` in any (or no) namespace, and ``{}*`` |
431| | only selects tags that are not in a namespace. |
432| | |
433| | .. versionchanged:: 3.8 |
434| | Support for star-wildcards was added. |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200435+-----------------------+------------------------------------------------------+
Stefan Behnel47541682019-05-03 20:58:16 +0200436| ``*`` | Selects all child elements, including comments and |
437| | processing instructions. For example, ``*/egg`` |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200438| | selects all grandchildren named ``egg``. |
439+-----------------------+------------------------------------------------------+
440| ``.`` | Selects the current node. This is mostly useful |
441| | at the beginning of the path, to indicate that it's |
442| | a relative path. |
443+-----------------------+------------------------------------------------------+
444| ``//`` | Selects all subelements, on all levels beneath the |
Eli Benderskyede001a2012-03-27 04:57:23 +0200445| | current element. For example, ``.//egg`` selects |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200446| | all ``egg`` elements in the entire tree. |
447+-----------------------+------------------------------------------------------+
Eli Bendersky323a43a2012-10-09 06:46:33 -0700448| ``..`` | Selects the parent element. Returns ``None`` if the |
449| | path attempts to reach the ancestors of the start |
450| | element (the element ``find`` was called on). |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200451+-----------------------+------------------------------------------------------+
452| ``[@attrib]`` | Selects all elements that have the given attribute. |
453+-----------------------+------------------------------------------------------+
454| ``[@attrib='value']`` | Selects all elements for which the given attribute |
455| | has the given value. The value cannot contain |
456| | quotes. |
457+-----------------------+------------------------------------------------------+
458| ``[tag]`` | Selects all elements that have a child named |
459| | ``tag``. Only immediate children are supported. |
460+-----------------------+------------------------------------------------------+
scoder101a5e82017-09-30 15:35:21 +0200461| ``[.='text']`` | Selects all elements whose complete text content, |
462| | including descendants, equals the given ``text``. |
463| | |
464| | .. versionadded:: 3.7 |
465+-----------------------+------------------------------------------------------+
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700466| ``[tag='text']`` | Selects all elements that have a child named |
467| | ``tag`` whose complete text content, including |
468| | descendants, equals the given ``text``. |
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700469+-----------------------+------------------------------------------------------+
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200470| ``[position]`` | Selects all elements that are located at the given |
471| | position. The position can be either an integer |
472| | (1 is the first position), the expression ``last()`` |
473| | (for the last position), or a position relative to |
474| | the last position (e.g. ``last()-1``). |
475+-----------------------+------------------------------------------------------+
476
477Predicates (expressions within square brackets) must be preceded by a tag
478name, an asterisk, or another predicate. ``position`` predicates must be
479preceded by a tag name.
480
481Reference
482---------
483
Georg Brandl116aa622007-08-15 14:28:22 +0000484.. _elementtree-functions:
485
486Functions
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200487^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000488
Stefan Behnele1d5dd62019-05-01 22:34:13 +0200489.. function:: canonicalize(xml_data=None, *, out=None, from_file=None, **options)
490
491 `C14N 2.0 <https://www.w3.org/TR/xml-c14n2/>`_ transformation function.
492
493 Canonicalization is a way to normalise XML output in a way that allows
494 byte-by-byte comparisons and digital signatures. It reduced the freedom
495 that XML serializers have and instead generates a more constrained XML
496 representation. The main restrictions regard the placement of namespace
497 declarations, the ordering of attributes, and ignorable whitespace.
498
499 This function takes an XML data string (*xml_data*) or a file path or
500 file-like object (*from_file*) as input, converts it to the canonical
501 form, and writes it out using the *out* file(-like) object, if provided,
502 or returns it as a text string if not. The output file receives text,
503 not bytes. It should therefore be opened in text mode with ``utf-8``
504 encoding.
505
506 Typical uses::
507
508 xml_data = "<root>...</root>"
509 print(canonicalize(xml_data))
510
511 with open("c14n_output.xml", mode='w', encoding='utf-8') as out_file:
512 canonicalize(xml_data, out=out_file)
513
514 with open("c14n_output.xml", mode='w', encoding='utf-8') as out_file:
515 canonicalize(from_file="inputfile.xml", out=out_file)
516
517 The configuration *options* are as follows:
518
519 - *with_comments*: set to true to include comments (default: false)
520 - *strip_text*: set to true to strip whitespace before and after text content
521 (default: false)
522 - *rewrite_prefixes*: set to true to replace namespace prefixes by "n{number}"
523 (default: false)
524 - *qname_aware_tags*: a set of qname aware tag names in which prefixes
525 should be replaced in text content (default: empty)
526 - *qname_aware_attrs*: a set of qname aware attribute names in which prefixes
527 should be replaced in text content (default: empty)
528 - *exclude_attrs*: a set of attribute names that should not be serialised
529 - *exclude_tags*: a set of tag names that should not be serialised
530
531 In the option list above, "a set" refers to any collection or iterable of
532 strings, no ordering is expected.
533
534 .. versionadded:: 3.8
535
Georg Brandl116aa622007-08-15 14:28:22 +0000536
Georg Brandl7f01a132009-09-16 15:58:14 +0000537.. function:: Comment(text=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000538
Georg Brandlf6945182008-02-01 11:56:49 +0000539 Comment element factory. This factory function creates a special element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000540 that will be serialized as an XML comment by the standard serializer. The
541 comment string can be either a bytestring or a Unicode string. *text* is a
542 string containing the comment string. Returns an element instance
Georg Brandlf6945182008-02-01 11:56:49 +0000543 representing a comment.
Georg Brandl116aa622007-08-15 14:28:22 +0000544
Eli Bendersky0bd22d42014-04-03 06:14:38 -0700545 Note that :class:`XMLParser` skips over comments in the input
546 instead of creating comment objects for them. An :class:`ElementTree` will
547 only contain comment nodes if they have been inserted into to
548 the tree using one of the :class:`Element` methods.
Georg Brandl116aa622007-08-15 14:28:22 +0000549
550.. function:: dump(elem)
551
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000552 Writes an element tree or element structure to sys.stdout. This function
553 should be used for debugging only.
Georg Brandl116aa622007-08-15 14:28:22 +0000554
555 The exact output format is implementation dependent. In this version, it's
556 written as an ordinary XML file.
557
558 *elem* is an element tree or an individual element.
559
Raymond Hettingere3685fd2018-10-28 11:18:22 -0700560 .. versionchanged:: 3.8
561 The :func:`dump` function now preserves the attribute order specified
562 by the user.
563
Georg Brandl116aa622007-08-15 14:28:22 +0000564
Manjusakae5458bd2019-02-22 08:33:57 +0800565.. function:: fromstring(text, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000566
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000567 Parses an XML section from a string constant. Same as :func:`XML`. *text*
Manjusakae5458bd2019-02-22 08:33:57 +0800568 is a string containing XML data. *parser* is an optional parser instance.
569 If not given, the standard :class:`XMLParser` parser is used.
570 Returns an :class:`Element` instance.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000571
572
573.. function:: fromstringlist(sequence, parser=None)
574
575 Parses an XML document from a sequence of string fragments. *sequence* is a
576 list or other sequence containing XML data fragments. *parser* is an
577 optional parser instance. If not given, the standard :class:`XMLParser`
578 parser is used. Returns an :class:`Element` instance.
579
Ezio Melottif8754a62010-03-21 07:16:43 +0000580 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000581
582
Stefan Behnelb5d3cee2019-08-23 16:44:25 +0200583.. function:: indent(tree, space=" ", level=0)
584
585 Appends whitespace to the subtree to indent the tree visually.
586 This can be used to generate pretty-printed XML output.
587 *tree* can be an Element or ElementTree. *space* is the whitespace
588 string that will be inserted for each indentation level, two space
589 characters by default. For indenting partial subtrees inside of an
590 already indented tree, pass the initial indentation level as *level*.
591
592 .. versionadded:: 3.9
593
594
Georg Brandl116aa622007-08-15 14:28:22 +0000595.. function:: iselement(element)
596
Serhiy Storchaka138ccbb2019-11-12 16:57:03 +0200597 Check if an object appears to be a valid element object. *element* is an
598 element instance. Return ``True`` if this is an element object.
Georg Brandl116aa622007-08-15 14:28:22 +0000599
600
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000601.. function:: iterparse(source, events=None, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000602
603 Parses an XML section into an element tree incrementally, and reports what's
Eli Bendersky604c4ff2012-03-16 08:41:30 +0200604 going on to the user. *source* is a filename or :term:`file object`
Eli Benderskyfb625442013-05-19 09:09:24 -0700605 containing XML data. *events* is a sequence of events to report back. The
Stefan Behnel43851a22019-05-01 21:20:38 +0200606 supported events are the strings ``"start"``, ``"end"``, ``"comment"``,
607 ``"pi"``, ``"start-ns"`` and ``"end-ns"``
608 (the "ns" events are used to get detailed namespace
Eli Bendersky604c4ff2012-03-16 08:41:30 +0200609 information). If *events* is omitted, only ``"end"`` events are reported.
610 *parser* is an optional parser instance. If not given, the standard
Eli Benderskyb5869342013-08-30 05:51:20 -0700611 :class:`XMLParser` parser is used. *parser* must be a subclass of
612 :class:`XMLParser` and can only use the default :class:`TreeBuilder` as a
613 target. Returns an :term:`iterator` providing ``(event, elem)`` pairs.
Georg Brandl116aa622007-08-15 14:28:22 +0000614
Eli Benderskyab2a76c2013-04-20 05:53:50 -0700615 Note that while :func:`iterparse` builds the tree incrementally, it issues
616 blocking reads on *source* (or the file it names). As such, it's unsuitable
Eli Bendersky2c68e302013-08-31 07:37:23 -0700617 for applications where blocking reads can't be made. For fully non-blocking
618 parsing, see :class:`XMLPullParser`.
Eli Benderskyab2a76c2013-04-20 05:53:50 -0700619
Benjamin Peterson75edad02009-01-01 15:05:06 +0000620 .. note::
621
Eli Benderskyb5869342013-08-30 05:51:20 -0700622 :func:`iterparse` only guarantees that it has seen the ">" character of a
623 starting tag when it emits a "start" event, so the attributes are defined,
624 but the contents of the text and tail attributes are undefined at that
625 point. The same applies to the element children; they may or may not be
626 present.
Benjamin Peterson75edad02009-01-01 15:05:06 +0000627
628 If you need a fully populated element, look for "end" events instead.
629
Eli Benderskyb5869342013-08-30 05:51:20 -0700630 .. deprecated:: 3.4
631 The *parser* argument.
632
Stefan Behnel43851a22019-05-01 21:20:38 +0200633 .. versionchanged:: 3.8
634 The ``comment`` and ``pi`` events were added.
635
636
Georg Brandl7f01a132009-09-16 15:58:14 +0000637.. function:: parse(source, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000638
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000639 Parses an XML section into an element tree. *source* is a filename or file
640 object containing XML data. *parser* is an optional parser instance. If
641 not given, the standard :class:`XMLParser` parser is used. Returns an
642 :class:`ElementTree` instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000643
644
Georg Brandl7f01a132009-09-16 15:58:14 +0000645.. function:: ProcessingInstruction(target, text=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000646
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000647 PI element factory. This factory function creates a special element that
648 will be serialized as an XML processing instruction. *target* is a string
649 containing the PI target. *text* is a string containing the PI contents, if
650 given. Returns an element instance, representing a processing instruction.
651
Eli Bendersky0bd22d42014-04-03 06:14:38 -0700652 Note that :class:`XMLParser` skips over processing instructions
653 in the input instead of creating comment objects for them. An
654 :class:`ElementTree` will only contain processing instruction nodes if
655 they have been inserted into to the tree using one of the
656 :class:`Element` methods.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000657
658.. function:: register_namespace(prefix, uri)
659
660 Registers a namespace prefix. The registry is global, and any existing
661 mapping for either the given prefix or the namespace URI will be removed.
662 *prefix* is a namespace prefix. *uri* is a namespace uri. Tags and
663 attributes in this namespace will be serialized with the given prefix, if at
664 all possible.
665
Ezio Melottif8754a62010-03-21 07:16:43 +0000666 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000667
668
Georg Brandl7f01a132009-09-16 15:58:14 +0000669.. function:: SubElement(parent, tag, attrib={}, **extra)
Georg Brandl116aa622007-08-15 14:28:22 +0000670
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000671 Subelement factory. This function creates an element instance, and appends
672 it to an existing element.
Georg Brandl116aa622007-08-15 14:28:22 +0000673
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000674 The element name, attribute names, and attribute values can be either
675 bytestrings or Unicode strings. *parent* is the parent element. *tag* is
676 the subelement name. *attrib* is an optional dictionary, containing element
677 attributes. *extra* contains additional attributes, given as keyword
678 arguments. Returns an element instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000679
680
Serhiy Storchaka9e189f02013-01-13 22:24:27 +0200681.. function:: tostring(element, encoding="us-ascii", method="xml", *, \
Stefan Behnela3697db2019-07-24 20:22:50 +0200682 xml_declaration=None, default_namespace=None, \
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800683 short_empty_elements=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000684
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000685 Generates a string representation of an XML element, including all
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000686 subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is
Florent Xiclunac17f1722010-08-08 19:48:29 +0000687 the output encoding (default is US-ASCII). Use ``encoding="unicode"`` to
Eli Bendersky831893a2012-10-09 07:18:16 -0700688 generate a Unicode string (otherwise, a bytestring is generated). *method*
689 is either ``"xml"``, ``"html"`` or ``"text"`` (default is ``"xml"``).
Bernt Røskar Brennaffca16e2019-04-14 10:07:02 +0200690 *xml_declaration*, *default_namespace* and *short_empty_elements* has the same
691 meaning as in :meth:`ElementTree.write`. Returns an (optionally) encoded string
692 containing the XML data.
Georg Brandl116aa622007-08-15 14:28:22 +0000693
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800694 .. versionadded:: 3.4
695 The *short_empty_elements* parameter.
Georg Brandl116aa622007-08-15 14:28:22 +0000696
Bernt Røskar Brennaffca16e2019-04-14 10:07:02 +0200697 .. versionadded:: 3.8
698 The *xml_declaration* and *default_namespace* parameters.
699
Stefan Behnela3697db2019-07-24 20:22:50 +0200700 .. versionchanged:: 3.8
701 The :func:`tostring` function now preserves the attribute order
702 specified by the user.
703
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800704
Serhiy Storchaka9e189f02013-01-13 22:24:27 +0200705.. function:: tostringlist(element, encoding="us-ascii", method="xml", *, \
Stefan Behnela3697db2019-07-24 20:22:50 +0200706 xml_declaration=None, default_namespace=None, \
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800707 short_empty_elements=True)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000708
709 Generates a string representation of an XML element, including all
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000710 subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is
Florent Xiclunac17f1722010-08-08 19:48:29 +0000711 the output encoding (default is US-ASCII). Use ``encoding="unicode"`` to
Eli Bendersky831893a2012-10-09 07:18:16 -0700712 generate a Unicode string (otherwise, a bytestring is generated). *method*
713 is either ``"xml"``, ``"html"`` or ``"text"`` (default is ``"xml"``).
Bernt Røskar Brennaffca16e2019-04-14 10:07:02 +0200714 *xml_declaration*, *default_namespace* and *short_empty_elements* has the same
715 meaning as in :meth:`ElementTree.write`. Returns a list of (optionally) encoded
716 strings containing the XML data. It does not guarantee any specific sequence,
717 except that ``b"".join(tostringlist(element)) == tostring(element)``.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000718
Ezio Melottif8754a62010-03-21 07:16:43 +0000719 .. versionadded:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000720
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800721 .. versionadded:: 3.4
722 The *short_empty_elements* parameter.
723
Bernt Røskar Brennaffca16e2019-04-14 10:07:02 +0200724 .. versionadded:: 3.8
725 The *xml_declaration* and *default_namespace* parameters.
726
Stefan Behnela3697db2019-07-24 20:22:50 +0200727 .. versionchanged:: 3.8
728 The :func:`tostringlist` function now preserves the attribute order
729 specified by the user.
730
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000731
732.. function:: XML(text, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000733
734 Parses an XML section from a string constant. This function can be used to
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000735 embed "XML literals" in Python code. *text* is a string containing XML
736 data. *parser* is an optional parser instance. If not given, the standard
737 :class:`XMLParser` parser is used. Returns an :class:`Element` instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000738
739
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000740.. function:: XMLID(text, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000741
742 Parses an XML section from a string constant, and also returns a dictionary
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000743 which maps from element id:s to elements. *text* is a string containing XML
744 data. *parser* is an optional parser instance. If not given, the standard
745 :class:`XMLParser` parser is used. Returns a tuple containing an
746 :class:`Element` instance and a dictionary.
Georg Brandl116aa622007-08-15 14:28:22 +0000747
748
Anjali Bansal97b817e2019-09-11 19:39:53 +0530749.. _elementtree-xinclude:
750
751XInclude support
752----------------
753
754This module provides limited support for
755`XInclude directives <https://www.w3.org/TR/xinclude/>`_, via the :mod:`xml.etree.ElementInclude` helper module. This module can be used to insert subtrees and text strings into element trees, based on information in the tree.
756
757Example
758^^^^^^^
759
760Here's an example that demonstrates use of the XInclude module. To include an XML document in the current document, use the ``{http://www.w3.org/2001/XInclude}include`` element and set the **parse** attribute to ``"xml"``, and use the **href** attribute to specify the document to include.
761
762.. code-block:: xml
763
764 <?xml version="1.0"?>
765 <document xmlns:xi="http://www.w3.org/2001/XInclude">
766 <xi:include href="source.xml" parse="xml" />
767 </document>
768
769By default, the **href** attribute is treated as a file name. You can use custom loaders to override this behaviour. Also note that the standard helper does not support XPointer syntax.
770
771To process this file, load it as usual, and pass the root element to the :mod:`xml.etree.ElementTree` module:
772
773.. code-block:: python
774
775 from xml.etree import ElementTree, ElementInclude
776
777 tree = ElementTree.parse("document.xml")
778 root = tree.getroot()
779
780 ElementInclude.include(root)
781
782The ElementInclude module replaces the ``{http://www.w3.org/2001/XInclude}include`` element with the root element from the **source.xml** document. The result might look something like this:
783
784.. code-block:: xml
785
786 <document xmlns:xi="http://www.w3.org/2001/XInclude">
787 <para>This is a paragraph.</para>
788 </document>
789
790If the **parse** attribute is omitted, it defaults to "xml". The href attribute is required.
791
792To include a text document, use the ``{http://www.w3.org/2001/XInclude}include`` element, and set the **parse** attribute to "text":
793
794.. code-block:: xml
795
796 <?xml version="1.0"?>
797 <document xmlns:xi="http://www.w3.org/2001/XInclude">
798 Copyright (c) <xi:include href="year.txt" parse="text" />.
799 </document>
800
801The result might look something like:
802
803.. code-block:: xml
804
805 <document xmlns:xi="http://www.w3.org/2001/XInclude">
806 Copyright (c) 2003.
807 </document>
808
809Reference
810---------
811
812.. _elementinclude-functions:
813
814Functions
815^^^^^^^^^
816
817.. function:: xml.etree.ElementInclude.default_loader( href, parse, encoding=None)
818
819 Default loader. This default loader reads an included resource from disk. *href* is a URL.
820 *parse* is for parse mode either "xml" or "text". *encoding*
821 is an optional text encoding. If not given, encoding is ``utf-8``. Returns the
822 expanded resource. If the parse mode is ``"xml"``, this is an ElementTree
823 instance. If the parse mode is "text", this is a Unicode string. If the
824 loader fails, it can return None or raise an exception.
825
826
Shantanu301f0d42020-06-08 07:11:44 -0700827.. function:: xml.etree.ElementInclude.include( elem, loader=None, base_url=None, \
828 max_depth=6)
Anjali Bansal97b817e2019-09-11 19:39:53 +0530829
830 This function expands XInclude directives. *elem* is the root element. *loader* is
831 an optional resource loader. If omitted, it defaults to :func:`default_loader`.
832 If given, it should be a callable that implements the same interface as
Shantanu301f0d42020-06-08 07:11:44 -0700833 :func:`default_loader`. *base_url* is base URL of the original file, to resolve
834 relative include file references. *max_depth* is the maximum number of recursive
835 inclusions. Limited to reduce the risk of malicious content explosion. Pass a
836 negative value to disable the limitation.
837
838 Returns the expanded resource. If the parse mode is
Anjali Bansal97b817e2019-09-11 19:39:53 +0530839 ``"xml"``, this is an ElementTree instance. If the parse mode is "text",
840 this is a Unicode string. If the loader fails, it can return None or
841 raise an exception.
842
Shantanu301f0d42020-06-08 07:11:44 -0700843 .. versionadded:: 3.9
844 The *base_url* and *max_depth* parameters.
845
Anjali Bansal97b817e2019-09-11 19:39:53 +0530846
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000847.. _elementtree-element-objects:
Georg Brandl116aa622007-08-15 14:28:22 +0000848
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000849Element Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200850^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000851
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000852.. class:: Element(tag, attrib={}, **extra)
Georg Brandl116aa622007-08-15 14:28:22 +0000853
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000854 Element class. This class defines the Element interface, and provides a
855 reference implementation of this interface.
Georg Brandl116aa622007-08-15 14:28:22 +0000856
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000857 The element name, attribute names, and attribute values can be either
858 bytestrings or Unicode strings. *tag* is the element name. *attrib* is
859 an optional dictionary, containing element attributes. *extra* contains
860 additional attributes, given as keyword arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000861
862
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000863 .. attribute:: tag
Georg Brandl116aa622007-08-15 14:28:22 +0000864
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000865 A string identifying what kind of data this element represents (the
866 element type, in other words).
Georg Brandl116aa622007-08-15 14:28:22 +0000867
868
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000869 .. attribute:: text
Ned Deilyeca04452015-08-17 22:11:17 -0400870 tail
Georg Brandl116aa622007-08-15 14:28:22 +0000871
Ned Deilyeca04452015-08-17 22:11:17 -0400872 These attributes can be used to hold additional data associated with
873 the element. Their values are usually strings but may be any
874 application-specific object. If the element is created from
875 an XML file, the *text* attribute holds either the text between
876 the element's start tag and its first child or end tag, or ``None``, and
877 the *tail* attribute holds either the text between the element's
878 end tag and the next tag, or ``None``. For the XML data
Georg Brandl116aa622007-08-15 14:28:22 +0000879
Ned Deilyeca04452015-08-17 22:11:17 -0400880 .. code-block:: xml
Georg Brandl116aa622007-08-15 14:28:22 +0000881
Ned Deilyeca04452015-08-17 22:11:17 -0400882 <a><b>1<c>2<d/>3</c></b>4</a>
Georg Brandl116aa622007-08-15 14:28:22 +0000883
Ned Deilyeca04452015-08-17 22:11:17 -0400884 the *a* element has ``None`` for both *text* and *tail* attributes,
885 the *b* element has *text* ``"1"`` and *tail* ``"4"``,
886 the *c* element has *text* ``"2"`` and *tail* ``None``,
887 and the *d* element has *text* ``None`` and *tail* ``"3"``.
888
889 To collect the inner text of an element, see :meth:`itertext`, for
890 example ``"".join(element.itertext())``.
891
892 Applications may store arbitrary objects in these attributes.
Georg Brandl116aa622007-08-15 14:28:22 +0000893
Georg Brandl116aa622007-08-15 14:28:22 +0000894
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000895 .. attribute:: attrib
Georg Brandl116aa622007-08-15 14:28:22 +0000896
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000897 A dictionary containing the element's attributes. Note that while the
898 *attrib* value is always a real mutable Python dictionary, an ElementTree
899 implementation may choose to use another internal representation, and
900 create the dictionary only if someone asks for it. To take advantage of
901 such implementations, use the dictionary methods below whenever possible.
Georg Brandl116aa622007-08-15 14:28:22 +0000902
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000903 The following dictionary-like methods work on the element attributes.
Georg Brandl116aa622007-08-15 14:28:22 +0000904
905
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000906 .. method:: clear()
Georg Brandl116aa622007-08-15 14:28:22 +0000907
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000908 Resets an element. This function removes all subelements, clears all
Eli Bendersky323a43a2012-10-09 06:46:33 -0700909 attributes, and sets the text and tail attributes to ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000910
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000911
912 .. method:: get(key, default=None)
913
914 Gets the element attribute named *key*.
915
916 Returns the attribute value, or *default* if the attribute was not found.
917
918
919 .. method:: items()
920
921 Returns the element attributes as a sequence of (name, value) pairs. The
922 attributes are returned in an arbitrary order.
923
924
925 .. method:: keys()
926
927 Returns the elements attribute names as a list. The names are returned
928 in an arbitrary order.
929
930
931 .. method:: set(key, value)
932
933 Set the attribute *key* on the element to *value*.
934
935 The following methods work on the element's children (subelements).
936
937
938 .. method:: append(subelement)
939
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200940 Adds the element *subelement* to the end of this element's internal list
941 of subelements. Raises :exc:`TypeError` if *subelement* is not an
942 :class:`Element`.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000943
944
945 .. method:: extend(subelements)
Georg Brandl116aa622007-08-15 14:28:22 +0000946
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000947 Appends *subelements* from a sequence object with zero or more elements.
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200948 Raises :exc:`TypeError` if a subelement is not an :class:`Element`.
Georg Brandl116aa622007-08-15 14:28:22 +0000949
Ezio Melottif8754a62010-03-21 07:16:43 +0000950 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000951
Georg Brandl116aa622007-08-15 14:28:22 +0000952
Eli Bendersky737b1732012-05-29 06:02:56 +0300953 .. method:: find(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000954
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000955 Finds the first subelement matching *match*. *match* may be a tag name
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200956 or a :ref:`path <elementtree-xpath>`. Returns an element instance
Eli Bendersky737b1732012-05-29 06:02:56 +0300957 or ``None``. *namespaces* is an optional mapping from namespace prefix
Stefan Behnele8113f52019-04-18 19:05:03 +0200958 to full name. Pass ``''`` as prefix to move all unprefixed tag names
Stefan Behnele9927e12019-04-14 10:09:09 +0200959 in the expression into the given namespace.
Georg Brandl116aa622007-08-15 14:28:22 +0000960
Georg Brandl116aa622007-08-15 14:28:22 +0000961
Eli Bendersky737b1732012-05-29 06:02:56 +0300962 .. method:: findall(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000963
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200964 Finds all matching subelements, by tag name or
965 :ref:`path <elementtree-xpath>`. Returns a list containing all matching
Eli Bendersky737b1732012-05-29 06:02:56 +0300966 elements in document order. *namespaces* is an optional mapping from
Stefan Behnele8113f52019-04-18 19:05:03 +0200967 namespace prefix to full name. Pass ``''`` as prefix to move all
Stefan Behnele9927e12019-04-14 10:09:09 +0200968 unprefixed tag names in the expression into the given namespace.
Georg Brandl116aa622007-08-15 14:28:22 +0000969
Georg Brandl116aa622007-08-15 14:28:22 +0000970
Eli Bendersky737b1732012-05-29 06:02:56 +0300971 .. method:: findtext(match, default=None, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000972
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000973 Finds text for the first subelement matching *match*. *match* may be
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200974 a tag name or a :ref:`path <elementtree-xpath>`. Returns the text content
975 of the first matching element, or *default* if no element was found.
976 Note that if the matching element has no text content an empty string
Eli Bendersky737b1732012-05-29 06:02:56 +0300977 is returned. *namespaces* is an optional mapping from namespace prefix
Stefan Behnele8113f52019-04-18 19:05:03 +0200978 to full name. Pass ``''`` as prefix to move all unprefixed tag names
Stefan Behnele9927e12019-04-14 10:09:09 +0200979 in the expression into the given namespace.
Georg Brandl116aa622007-08-15 14:28:22 +0000980
Georg Brandl116aa622007-08-15 14:28:22 +0000981
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200982 .. method:: insert(index, subelement)
Georg Brandl116aa622007-08-15 14:28:22 +0000983
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200984 Inserts *subelement* at the given position in this element. Raises
985 :exc:`TypeError` if *subelement* is not an :class:`Element`.
Georg Brandl116aa622007-08-15 14:28:22 +0000986
Georg Brandl116aa622007-08-15 14:28:22 +0000987
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000988 .. method:: iter(tag=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000989
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000990 Creates a tree :term:`iterator` with the current element as the root.
991 The iterator iterates over this element and all elements below it, in
992 document (depth first) order. If *tag* is not ``None`` or ``'*'``, only
993 elements whose tag equals *tag* are returned from the iterator. If the
994 tree structure is modified during iteration, the result is undefined.
Georg Brandl116aa622007-08-15 14:28:22 +0000995
Ezio Melotti138fc892011-10-10 00:02:03 +0300996 .. versionadded:: 3.2
997
Georg Brandl116aa622007-08-15 14:28:22 +0000998
Eli Bendersky737b1732012-05-29 06:02:56 +0300999 .. method:: iterfind(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001000
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001001 Finds all matching subelements, by tag name or
1002 :ref:`path <elementtree-xpath>`. Returns an iterable yielding all
Eli Bendersky737b1732012-05-29 06:02:56 +03001003 matching elements in document order. *namespaces* is an optional mapping
1004 from namespace prefix to full name.
1005
Georg Brandl116aa622007-08-15 14:28:22 +00001006
Ezio Melottif8754a62010-03-21 07:16:43 +00001007 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +00001008
Georg Brandl116aa622007-08-15 14:28:22 +00001009
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001010 .. method:: itertext()
Georg Brandl116aa622007-08-15 14:28:22 +00001011
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001012 Creates a text iterator. The iterator loops over this element and all
1013 subelements, in document order, and returns all inner text.
Georg Brandl116aa622007-08-15 14:28:22 +00001014
Ezio Melottif8754a62010-03-21 07:16:43 +00001015 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +00001016
1017
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001018 .. method:: makeelement(tag, attrib)
Georg Brandl116aa622007-08-15 14:28:22 +00001019
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001020 Creates a new element object of the same type as this element. Do not
1021 call this method, use the :func:`SubElement` factory function instead.
Georg Brandl116aa622007-08-15 14:28:22 +00001022
1023
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001024 .. method:: remove(subelement)
Georg Brandl116aa622007-08-15 14:28:22 +00001025
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001026 Removes *subelement* from the element. Unlike the find\* methods this
1027 method compares elements based on the instance identity, not on tag value
1028 or contents.
Georg Brandl116aa622007-08-15 14:28:22 +00001029
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001030 :class:`Element` objects also support the following sequence type methods
Serhiy Storchaka15e65902013-08-29 10:28:44 +03001031 for working with subelements: :meth:`~object.__delitem__`,
1032 :meth:`~object.__getitem__`, :meth:`~object.__setitem__`,
1033 :meth:`~object.__len__`.
Georg Brandl116aa622007-08-15 14:28:22 +00001034
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001035 Caution: Elements with no subelements will test as ``False``. This behavior
1036 will change in future versions. Use specific ``len(elem)`` or ``elem is
1037 None`` test instead. ::
Georg Brandl116aa622007-08-15 14:28:22 +00001038
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001039 element = root.find('foo')
Georg Brandl116aa622007-08-15 14:28:22 +00001040
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001041 if not element: # careful!
1042 print("element not found, or element has no subelements")
Georg Brandl116aa622007-08-15 14:28:22 +00001043
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001044 if element is None:
1045 print("element not found")
Georg Brandl116aa622007-08-15 14:28:22 +00001046
Stefan Behnela3697db2019-07-24 20:22:50 +02001047 Prior to Python 3.8, the serialisation order of the XML attributes of
1048 elements was artificially made predictable by sorting the attributes by
1049 their name. Based on the now guaranteed ordering of dicts, this arbitrary
1050 reordering was removed in Python 3.8 to preserve the order in which
1051 attributes were originally parsed or created by user code.
1052
1053 In general, user code should try not to depend on a specific ordering of
1054 attributes, given that the `XML Information Set
1055 <https://www.w3.org/TR/xml-infoset/>`_ explicitly excludes the attribute
1056 order from conveying information. Code should be prepared to deal with
1057 any ordering on input. In cases where deterministic XML output is required,
1058 e.g. for cryptographic signing or test data sets, canonical serialisation
1059 is available with the :func:`canonicalize` function.
1060
1061 In cases where canonical output is not applicable but a specific attribute
1062 order is still desirable on output, code should aim for creating the
1063 attributes directly in the desired order, to avoid perceptual mismatches
1064 for readers of the code. In cases where this is difficult to achieve, a
1065 recipe like the following can be applied prior to serialisation to enforce
1066 an order independently from the Element creation::
1067
1068 def reorder_attributes(root):
1069 for el in root.iter():
1070 attrib = el.attrib
1071 if len(attrib) > 1:
1072 # adjust attribute order, e.g. by sorting
1073 attribs = sorted(attrib.items())
1074 attrib.clear()
1075 attrib.update(attribs)
1076
Georg Brandl116aa622007-08-15 14:28:22 +00001077
1078.. _elementtree-elementtree-objects:
1079
1080ElementTree Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001081^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001082
1083
Georg Brandl7f01a132009-09-16 15:58:14 +00001084.. class:: ElementTree(element=None, file=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001085
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001086 ElementTree wrapper class. This class represents an entire element
1087 hierarchy, and adds some extra support for serialization to and from
1088 standard XML.
Georg Brandl116aa622007-08-15 14:28:22 +00001089
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001090 *element* is the root element. The tree is initialized with the contents
1091 of the XML *file* if given.
Georg Brandl116aa622007-08-15 14:28:22 +00001092
1093
Benjamin Petersone41251e2008-04-25 01:59:09 +00001094 .. method:: _setroot(element)
Georg Brandl116aa622007-08-15 14:28:22 +00001095
Benjamin Petersone41251e2008-04-25 01:59:09 +00001096 Replaces the root element for this tree. This discards the current
1097 contents of the tree, and replaces it with the given element. Use with
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001098 care. *element* is an element instance.
Georg Brandl116aa622007-08-15 14:28:22 +00001099
1100
Eli Bendersky737b1732012-05-29 06:02:56 +03001101 .. method:: find(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001102
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001103 Same as :meth:`Element.find`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +00001104
1105
Eli Bendersky737b1732012-05-29 06:02:56 +03001106 .. method:: findall(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001107
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001108 Same as :meth:`Element.findall`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +00001109
1110
Eli Bendersky737b1732012-05-29 06:02:56 +03001111 .. method:: findtext(match, default=None, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001112
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001113 Same as :meth:`Element.findtext`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +00001114
1115
Benjamin Petersone41251e2008-04-25 01:59:09 +00001116 .. method:: getroot()
Florent Xiclunac17f1722010-08-08 19:48:29 +00001117
Benjamin Petersone41251e2008-04-25 01:59:09 +00001118 Returns the root element for this tree.
Georg Brandl116aa622007-08-15 14:28:22 +00001119
1120
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001121 .. method:: iter(tag=None)
1122
1123 Creates and returns a tree iterator for the root element. The iterator
1124 loops over all elements in this tree, in section order. *tag* is the tag
Martin Panterd21e0b52015-10-10 10:36:22 +00001125 to look for (default is to return all elements).
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001126
1127
Eli Bendersky737b1732012-05-29 06:02:56 +03001128 .. method:: iterfind(match, namespaces=None)
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001129
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001130 Same as :meth:`Element.iterfind`, starting at the root of the tree.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001131
Ezio Melottif8754a62010-03-21 07:16:43 +00001132 .. versionadded:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001133
1134
Georg Brandl7f01a132009-09-16 15:58:14 +00001135 .. method:: parse(source, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001136
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001137 Loads an external XML section into this element tree. *source* is a file
Antoine Pitrou11cb9612010-09-15 11:11:28 +00001138 name or :term:`file object`. *parser* is an optional parser instance.
Eli Bendersky52467b12012-06-01 07:13:08 +03001139 If not given, the standard :class:`XMLParser` parser is used. Returns the
1140 section root element.
Georg Brandl116aa622007-08-15 14:28:22 +00001141
1142
Eli Benderskyf96cf912012-07-15 06:19:44 +03001143 .. method:: write(file, encoding="us-ascii", xml_declaration=None, \
Serhiy Storchaka9e189f02013-01-13 22:24:27 +02001144 default_namespace=None, method="xml", *, \
Eli Benderskye9af8272013-01-13 06:27:51 -08001145 short_empty_elements=True)
Georg Brandl116aa622007-08-15 14:28:22 +00001146
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001147 Writes the element tree to a file, as XML. *file* is a file name, or a
Eli Benderskyf96cf912012-07-15 06:19:44 +03001148 :term:`file object` opened for writing. *encoding* [1]_ is the output
1149 encoding (default is US-ASCII).
1150 *xml_declaration* controls if an XML declaration should be added to the
1151 file. Use ``False`` for never, ``True`` for always, ``None``
1152 for only if not US-ASCII or UTF-8 or Unicode (default is ``None``).
Serhiy Storchaka03530b92013-01-13 21:58:04 +02001153 *default_namespace* sets the default XML namespace (for "xmlns").
Eli Benderskyf96cf912012-07-15 06:19:44 +03001154 *method* is either ``"xml"``, ``"html"`` or ``"text"`` (default is
1155 ``"xml"``).
Eli Benderskya9a2ef52013-01-13 06:04:43 -08001156 The keyword-only *short_empty_elements* parameter controls the formatting
Serhiy Storchakaa97cd2e2016-10-19 16:43:42 +03001157 of elements that contain no content. If ``True`` (the default), they are
Eli Benderskya9a2ef52013-01-13 06:04:43 -08001158 emitted as a single self-closed tag, otherwise they are emitted as a pair
1159 of start/end tags.
Eli Benderskyf96cf912012-07-15 06:19:44 +03001160
1161 The output is either a string (:class:`str`) or binary (:class:`bytes`).
1162 This is controlled by the *encoding* argument. If *encoding* is
1163 ``"unicode"``, the output is a string; otherwise, it's binary. Note that
1164 this may conflict with the type of *file* if it's an open
1165 :term:`file object`; make sure you do not try to write a string to a
1166 binary stream and vice versa.
1167
R David Murray575fb312013-12-25 23:21:03 -05001168 .. versionadded:: 3.4
1169 The *short_empty_elements* parameter.
Eli Benderskya9a2ef52013-01-13 06:04:43 -08001170
Raymond Hettingere3685fd2018-10-28 11:18:22 -07001171 .. versionchanged:: 3.8
1172 The :meth:`write` method now preserves the attribute order specified
1173 by the user.
1174
Georg Brandl116aa622007-08-15 14:28:22 +00001175
Christian Heimesd8654cf2007-12-02 15:22:16 +00001176This is the XML file that is going to be manipulated::
1177
1178 <html>
1179 <head>
1180 <title>Example page</title>
1181 </head>
1182 <body>
Georg Brandl48310cd2009-01-03 21:18:54 +00001183 <p>Moved to <a href="http://example.org/">example.org</a>
Christian Heimesd8654cf2007-12-02 15:22:16 +00001184 or <a href="http://example.com/">example.com</a>.</p>
1185 </body>
1186 </html>
1187
1188Example of changing the attribute "target" of every link in first paragraph::
1189
1190 >>> from xml.etree.ElementTree import ElementTree
1191 >>> tree = ElementTree()
1192 >>> tree.parse("index.xhtml")
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001193 <Element 'html' at 0xb77e6fac>
Christian Heimesd8654cf2007-12-02 15:22:16 +00001194 >>> p = tree.find("body/p") # Finds first occurrence of tag p in body
1195 >>> p
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001196 <Element 'p' at 0xb77ec26c>
1197 >>> links = list(p.iter("a")) # Returns list of all links
Christian Heimesd8654cf2007-12-02 15:22:16 +00001198 >>> links
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001199 [<Element 'a' at 0xb77ec2ac>, <Element 'a' at 0xb77ec1cc>]
Christian Heimesd8654cf2007-12-02 15:22:16 +00001200 >>> for i in links: # Iterates through all found links
1201 ... i.attrib["target"] = "blank"
1202 >>> tree.write("output.xhtml")
Georg Brandl116aa622007-08-15 14:28:22 +00001203
1204.. _elementtree-qname-objects:
1205
1206QName Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001207^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001208
1209
Georg Brandl7f01a132009-09-16 15:58:14 +00001210.. class:: QName(text_or_uri, tag=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001211
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001212 QName wrapper. This can be used to wrap a QName attribute value, in order
1213 to get proper namespace handling on output. *text_or_uri* is a string
1214 containing the QName value, in the form {uri}local, or, if the tag argument
1215 is given, the URI part of a QName. If *tag* is given, the first argument is
Martin Panter6245cb32016-04-15 02:14:19 +00001216 interpreted as a URI, and this argument is interpreted as a local name.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001217 :class:`QName` instances are opaque.
Georg Brandl116aa622007-08-15 14:28:22 +00001218
1219
Antoine Pitrou5b235d02013-04-18 19:37:06 +02001220
Georg Brandl116aa622007-08-15 14:28:22 +00001221.. _elementtree-treebuilder-objects:
1222
1223TreeBuilder Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001224^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001225
1226
Stefan Behnel43851a22019-05-01 21:20:38 +02001227.. class:: TreeBuilder(element_factory=None, *, comment_factory=None, \
1228 pi_factory=None, insert_comments=False, insert_pis=False)
Georg Brandl116aa622007-08-15 14:28:22 +00001229
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001230 Generic element structure builder. This builder converts a sequence of
Stefan Behnel43851a22019-05-01 21:20:38 +02001231 start, data, end, comment and pi method calls to a well-formed element
1232 structure. You can use this class to build an element structure using
1233 a custom XML parser, or a parser for some other XML-like format.
1234
1235 *element_factory*, when given, must be a callable accepting two positional
1236 arguments: a tag and a dict of attributes. It is expected to return a new
1237 element instance.
1238
1239 The *comment_factory* and *pi_factory* functions, when given, should behave
1240 like the :func:`Comment` and :func:`ProcessingInstruction` functions to
1241 create comments and processing instructions. When not given, the default
1242 factories will be used. When *insert_comments* and/or *insert_pis* is true,
1243 comments/pis will be inserted into the tree if they appear within the root
1244 element (but not outside of it).
Georg Brandl116aa622007-08-15 14:28:22 +00001245
Benjamin Petersone41251e2008-04-25 01:59:09 +00001246 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00001247
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001248 Flushes the builder buffers, and returns the toplevel document
1249 element. Returns an :class:`Element` instance.
Georg Brandl116aa622007-08-15 14:28:22 +00001250
1251
Benjamin Petersone41251e2008-04-25 01:59:09 +00001252 .. method:: data(data)
Georg Brandl116aa622007-08-15 14:28:22 +00001253
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001254 Adds text to the current element. *data* is a string. This should be
1255 either a bytestring, or a Unicode string.
Georg Brandl116aa622007-08-15 14:28:22 +00001256
1257
Benjamin Petersone41251e2008-04-25 01:59:09 +00001258 .. method:: end(tag)
Georg Brandl116aa622007-08-15 14:28:22 +00001259
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001260 Closes the current element. *tag* is the element name. Returns the
1261 closed element.
Georg Brandl116aa622007-08-15 14:28:22 +00001262
1263
Benjamin Petersone41251e2008-04-25 01:59:09 +00001264 .. method:: start(tag, attrs)
Georg Brandl116aa622007-08-15 14:28:22 +00001265
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001266 Opens a new element. *tag* is the element name. *attrs* is a dictionary
1267 containing element attributes. Returns the opened element.
Georg Brandl116aa622007-08-15 14:28:22 +00001268
1269
Stefan Behnel43851a22019-05-01 21:20:38 +02001270 .. method:: comment(text)
1271
1272 Creates a comment with the given *text*. If ``insert_comments`` is true,
1273 this will also add it to the tree.
1274
1275 .. versionadded:: 3.8
1276
1277
1278 .. method:: pi(target, text)
1279
1280 Creates a comment with the given *target* name and *text*. If
1281 ``insert_pis`` is true, this will also add it to the tree.
1282
1283 .. versionadded:: 3.8
1284
1285
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001286 In addition, a custom :class:`TreeBuilder` object can provide the
Stefan Behneldde3eeb2019-05-01 21:49:58 +02001287 following methods:
Georg Brandl116aa622007-08-15 14:28:22 +00001288
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001289 .. method:: doctype(name, pubid, system)
1290
1291 Handles a doctype declaration. *name* is the doctype name. *pubid* is
1292 the public identifier. *system* is the system identifier. This method
1293 does not exist on the default :class:`TreeBuilder` class.
1294
Ezio Melottif8754a62010-03-21 07:16:43 +00001295 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +00001296
Stefan Behneldde3eeb2019-05-01 21:49:58 +02001297 .. method:: start_ns(prefix, uri)
1298
1299 Is called whenever the parser encounters a new namespace declaration,
1300 before the ``start()`` callback for the opening element that defines it.
1301 *prefix* is ``''`` for the default namespace and the declared
1302 namespace prefix name otherwise. *uri* is the namespace URI.
1303
1304 .. versionadded:: 3.8
1305
1306 .. method:: end_ns(prefix)
1307
1308 Is called after the ``end()`` callback of an element that declared
1309 a namespace prefix mapping, with the name of the *prefix* that went
1310 out of scope.
1311
1312 .. versionadded:: 3.8
1313
Georg Brandl116aa622007-08-15 14:28:22 +00001314
Stefan Behnele1d5dd62019-05-01 22:34:13 +02001315.. class:: C14NWriterTarget(write, *, \
1316 with_comments=False, strip_text=False, rewrite_prefixes=False, \
1317 qname_aware_tags=None, qname_aware_attrs=None, \
1318 exclude_attrs=None, exclude_tags=None)
1319
1320 A `C14N 2.0 <https://www.w3.org/TR/xml-c14n2/>`_ writer. Arguments are the
1321 same as for the :func:`canonicalize` function. This class does not build a
1322 tree but translates the callback events directly into a serialised form
1323 using the *write* function.
1324
1325 .. versionadded:: 3.8
1326
1327
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001328.. _elementtree-xmlparser-objects:
Georg Brandl116aa622007-08-15 14:28:22 +00001329
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001330XMLParser Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001331^^^^^^^^^^^^^^^^^
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001332
1333
Serhiy Storchaka02ec92f2018-07-24 12:03:34 +03001334.. class:: XMLParser(*, target=None, encoding=None)
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001335
Eli Benderskyb5869342013-08-30 05:51:20 -07001336 This class is the low-level building block of the module. It uses
1337 :mod:`xml.parsers.expat` for efficient, event-based parsing of XML. It can
Georg Brandladeffcc2016-02-26 19:13:47 +01001338 be fed XML data incrementally with the :meth:`feed` method, and parsing
1339 events are translated to a push API - by invoking callbacks on the *target*
1340 object. If *target* is omitted, the standard :class:`TreeBuilder` is used.
Serhiy Storchaka02ec92f2018-07-24 12:03:34 +03001341 If *encoding* [1]_ is given, the value overrides the
Georg Brandladeffcc2016-02-26 19:13:47 +01001342 encoding specified in the XML file.
Georg Brandl116aa622007-08-15 14:28:22 +00001343
Serhiy Storchaka02ec92f2018-07-24 12:03:34 +03001344 .. versionchanged:: 3.8
1345 Parameters are now :ref:`keyword-only <keyword-only_parameter>`.
1346 The *html* argument no longer supported.
1347
Georg Brandl116aa622007-08-15 14:28:22 +00001348
Benjamin Petersone41251e2008-04-25 01:59:09 +00001349 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00001350
Eli Benderskybfd78372013-08-24 15:11:44 -07001351 Finishes feeding data to the parser. Returns the result of calling the
Eli Benderskybf8ab772013-08-25 15:27:36 -07001352 ``close()`` method of the *target* passed during construction; by default,
1353 this is the toplevel document element.
Georg Brandl116aa622007-08-15 14:28:22 +00001354
1355
Benjamin Petersone41251e2008-04-25 01:59:09 +00001356 .. method:: feed(data)
Georg Brandl116aa622007-08-15 14:28:22 +00001357
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001358 Feeds data to the parser. *data* is encoded data.
Georg Brandl116aa622007-08-15 14:28:22 +00001359
Eli Benderskyb5869342013-08-30 05:51:20 -07001360 :meth:`XMLParser.feed` calls *target*\'s ``start(tag, attrs_dict)`` method
1361 for each opening tag, its ``end(tag)`` method for each closing tag, and data
Stefan Behneldde3eeb2019-05-01 21:49:58 +02001362 is processed by method ``data(data)``. For further supported callback
1363 methods, see the :class:`TreeBuilder` class. :meth:`XMLParser.close` calls
Eli Benderskyb5869342013-08-30 05:51:20 -07001364 *target*\'s method ``close()``. :class:`XMLParser` can be used not only for
1365 building a tree structure. This is an example of counting the maximum depth
1366 of an XML file::
Christian Heimesd8654cf2007-12-02 15:22:16 +00001367
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001368 >>> from xml.etree.ElementTree import XMLParser
Christian Heimesd8654cf2007-12-02 15:22:16 +00001369 >>> class MaxDepth: # The target object of the parser
1370 ... maxDepth = 0
1371 ... depth = 0
1372 ... def start(self, tag, attrib): # Called for each opening tag.
Georg Brandl48310cd2009-01-03 21:18:54 +00001373 ... self.depth += 1
Christian Heimesd8654cf2007-12-02 15:22:16 +00001374 ... if self.depth > self.maxDepth:
1375 ... self.maxDepth = self.depth
1376 ... def end(self, tag): # Called for each closing tag.
1377 ... self.depth -= 1
Georg Brandl48310cd2009-01-03 21:18:54 +00001378 ... def data(self, data):
Christian Heimesd8654cf2007-12-02 15:22:16 +00001379 ... pass # We do not need to do anything with data.
1380 ... def close(self): # Called when all data has been parsed.
1381 ... return self.maxDepth
Georg Brandl48310cd2009-01-03 21:18:54 +00001382 ...
Christian Heimesd8654cf2007-12-02 15:22:16 +00001383 >>> target = MaxDepth()
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001384 >>> parser = XMLParser(target=target)
Christian Heimesd8654cf2007-12-02 15:22:16 +00001385 >>> exampleXml = """
1386 ... <a>
1387 ... <b>
1388 ... </b>
1389 ... <b>
1390 ... <c>
1391 ... <d>
1392 ... </d>
1393 ... </c>
1394 ... </b>
1395 ... </a>"""
1396 >>> parser.feed(exampleXml)
1397 >>> parser.close()
1398 4
Christian Heimesb186d002008-03-18 15:15:01 +00001399
Eli Benderskyb5869342013-08-30 05:51:20 -07001400
1401.. _elementtree-xmlpullparser-objects:
1402
1403XMLPullParser Objects
1404^^^^^^^^^^^^^^^^^^^^^
1405
1406.. class:: XMLPullParser(events=None)
1407
Eli Bendersky2c68e302013-08-31 07:37:23 -07001408 A pull parser suitable for non-blocking applications. Its input-side API is
1409 similar to that of :class:`XMLParser`, but instead of pushing calls to a
1410 callback target, :class:`XMLPullParser` collects an internal list of parsing
1411 events and lets the user read from it. *events* is a sequence of events to
1412 report back. The supported events are the strings ``"start"``, ``"end"``,
Stefan Behnel43851a22019-05-01 21:20:38 +02001413 ``"comment"``, ``"pi"``, ``"start-ns"`` and ``"end-ns"`` (the "ns" events
1414 are used to get detailed namespace information). If *events* is omitted,
1415 only ``"end"`` events are reported.
Eli Benderskyb5869342013-08-30 05:51:20 -07001416
1417 .. method:: feed(data)
1418
1419 Feed the given bytes data to the parser.
1420
1421 .. method:: close()
1422
Nick Coghlan4cc2afa2013-09-28 23:50:35 +10001423 Signal the parser that the data stream is terminated. Unlike
1424 :meth:`XMLParser.close`, this method always returns :const:`None`.
1425 Any events not yet retrieved when the parser is closed can still be
1426 read with :meth:`read_events`.
Eli Benderskyb5869342013-08-30 05:51:20 -07001427
1428 .. method:: read_events()
1429
R David Murray410d3202014-01-04 23:52:50 -05001430 Return an iterator over the events which have been encountered in the
1431 data fed to the
1432 parser. The iterator yields ``(event, elem)`` pairs, where *event* is a
Eli Benderskyb5869342013-08-30 05:51:20 -07001433 string representing the type of event (e.g. ``"end"``) and *elem* is the
Stefan Behnel43851a22019-05-01 21:20:38 +02001434 encountered :class:`Element` object, or other context value as follows.
1435
1436 * ``start``, ``end``: the current Element.
1437 * ``comment``, ``pi``: the current comment / processing instruction
1438 * ``start-ns``: a tuple ``(prefix, uri)`` naming the declared namespace
1439 mapping.
1440 * ``end-ns``: :const:`None` (this may change in a future version)
Nick Coghlan4cc2afa2013-09-28 23:50:35 +10001441
1442 Events provided in a previous call to :meth:`read_events` will not be
R David Murray410d3202014-01-04 23:52:50 -05001443 yielded again. Events are consumed from the internal queue only when
1444 they are retrieved from the iterator, so multiple readers iterating in
1445 parallel over iterators obtained from :meth:`read_events` will have
1446 unpredictable results.
Eli Benderskyb5869342013-08-30 05:51:20 -07001447
1448 .. note::
1449
1450 :class:`XMLPullParser` only guarantees that it has seen the ">"
1451 character of a starting tag when it emits a "start" event, so the
1452 attributes are defined, but the contents of the text and tail attributes
1453 are undefined at that point. The same applies to the element children;
1454 they may or may not be present.
1455
1456 If you need a fully populated element, look for "end" events instead.
1457
1458 .. versionadded:: 3.4
1459
Stefan Behnel43851a22019-05-01 21:20:38 +02001460 .. versionchanged:: 3.8
1461 The ``comment`` and ``pi`` events were added.
1462
1463
Eli Bendersky5b77d812012-03-16 08:20:05 +02001464Exceptions
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001465^^^^^^^^^^
Eli Bendersky5b77d812012-03-16 08:20:05 +02001466
1467.. class:: ParseError
1468
1469 XML parse error, raised by the various parsing methods in this module when
1470 parsing fails. The string representation of an instance of this exception
1471 will contain a user-friendly error message. In addition, it will have
1472 the following attributes available:
1473
1474 .. attribute:: code
1475
1476 A numeric error code from the expat parser. See the documentation of
1477 :mod:`xml.parsers.expat` for the list of error codes and their meanings.
1478
1479 .. attribute:: position
1480
1481 A tuple of *line*, *column* numbers, specifying where the error occurred.
Christian Heimesb186d002008-03-18 15:15:01 +00001482
1483.. rubric:: Footnotes
1484
Serhiy Storchakad97b7dc2017-05-16 23:18:09 +03001485.. [1] The encoding string included in XML output should conform to the
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001486 appropriate standards. For example, "UTF-8" is valid, but "UTF8" is
Serhiy Storchaka6dff0202016-05-07 10:49:07 +03001487 not. See https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl
1488 and https://www.iana.org/assignments/character-sets/character-sets.xhtml.