blob: 658bc3a54f86e560a0b6967567f0bc635ca0c5cb [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.
18 The :mod:`xml.etree.cElementTree` module is deprecated.
19
Christian Heimes7380a672013-03-26 17:35:55 +010020
21.. warning::
22
23 The :mod:`xml.etree.ElementTree` module is not secure against
24 maliciously constructed data. If you need to parse untrusted or
25 unauthenticated data see :ref:`xml-vulnerabilities`.
26
Eli Benderskyc1d98692012-03-30 11:44:15 +030027Tutorial
28--------
Georg Brandl116aa622007-08-15 14:28:22 +000029
Eli Benderskyc1d98692012-03-30 11:44:15 +030030This is a short tutorial for using :mod:`xml.etree.ElementTree` (``ET`` in
31short). The goal is to demonstrate some of the building blocks and basic
32concepts of the module.
Eli Bendersky3a4875e2012-03-26 20:43:32 +020033
Eli Benderskyc1d98692012-03-30 11:44:15 +030034XML tree and elements
35^^^^^^^^^^^^^^^^^^^^^
Eli Bendersky3a4875e2012-03-26 20:43:32 +020036
Eli Benderskyc1d98692012-03-30 11:44:15 +030037XML is an inherently hierarchical data format, and the most natural way to
38represent it is with a tree. ``ET`` has two classes for this purpose -
39:class:`ElementTree` represents the whole XML document as a tree, and
40:class:`Element` represents a single node in this tree. Interactions with
41the whole document (reading and writing to/from files) are usually done
42on the :class:`ElementTree` level. Interactions with a single XML element
43and its sub-elements are done on the :class:`Element` level.
Eli Bendersky3a4875e2012-03-26 20:43:32 +020044
Eli Benderskyc1d98692012-03-30 11:44:15 +030045.. _elementtree-parsing-xml:
Eli Bendersky3a4875e2012-03-26 20:43:32 +020046
Eli Benderskyc1d98692012-03-30 11:44:15 +030047Parsing XML
48^^^^^^^^^^^
Eli Bendersky3a4875e2012-03-26 20:43:32 +020049
Eli Bendersky0f4e9342012-08-14 07:19:33 +030050We'll be using the following XML document as the sample data for this section:
Eli Bendersky3a4875e2012-03-26 20:43:32 +020051
Eli Bendersky0f4e9342012-08-14 07:19:33 +030052.. code-block:: xml
53
54 <?xml version="1.0"?>
Eli Bendersky3a4875e2012-03-26 20:43:32 +020055 <data>
Eli Bendersky3115f0d2012-08-15 14:26:30 +030056 <country name="Liechtenstein">
Eli Bendersky3a4875e2012-03-26 20:43:32 +020057 <rank>1</rank>
58 <year>2008</year>
59 <gdppc>141100</gdppc>
60 <neighbor name="Austria" direction="E"/>
61 <neighbor name="Switzerland" direction="W"/>
62 </country>
63 <country name="Singapore">
64 <rank>4</rank>
65 <year>2011</year>
66 <gdppc>59900</gdppc>
67 <neighbor name="Malaysia" direction="N"/>
68 </country>
69 <country name="Panama">
70 <rank>68</rank>
71 <year>2011</year>
72 <gdppc>13600</gdppc>
73 <neighbor name="Costa Rica" direction="W"/>
74 <neighbor name="Colombia" direction="E"/>
75 </country>
76 </data>
Eli Bendersky3a4875e2012-03-26 20:43:32 +020077
Eli Bendersky0f4e9342012-08-14 07:19:33 +030078We can import this data by reading from a file::
Eli Benderskyc1d98692012-03-30 11:44:15 +030079
80 import xml.etree.ElementTree as ET
Eli Bendersky0f4e9342012-08-14 07:19:33 +030081 tree = ET.parse('country_data.xml')
82 root = tree.getroot()
Eli Benderskyc1d98692012-03-30 11:44:15 +030083
Eli Bendersky0f4e9342012-08-14 07:19:33 +030084Or directly from a string::
85
86 root = ET.fromstring(country_data_as_string)
Eli Benderskyc1d98692012-03-30 11:44:15 +030087
88:func:`fromstring` parses XML from a string directly into an :class:`Element`,
89which is the root element of the parsed tree. Other parsing functions may
Eli Bendersky0f4e9342012-08-14 07:19:33 +030090create an :class:`ElementTree`. Check the documentation to be sure.
Eli Benderskyc1d98692012-03-30 11:44:15 +030091
92As an :class:`Element`, ``root`` has a tag and a dictionary of attributes::
93
94 >>> root.tag
95 'data'
96 >>> root.attrib
97 {}
98
99It also has children nodes over which we can iterate::
100
101 >>> for child in root:
Serhiy Storchakadba90392016-05-10 12:01:23 +0300102 ... print(child.tag, child.attrib)
Eli Benderskyc1d98692012-03-30 11:44:15 +0300103 ...
Eli Bendersky3115f0d2012-08-15 14:26:30 +0300104 country {'name': 'Liechtenstein'}
Eli Benderskyc1d98692012-03-30 11:44:15 +0300105 country {'name': 'Singapore'}
106 country {'name': 'Panama'}
107
108Children are nested, and we can access specific child nodes by index::
109
110 >>> root[0][1].text
111 '2008'
112
R David Murray410d3202014-01-04 23:52:50 -0500113
Eli Bendersky0bd22d42014-04-03 06:14:38 -0700114.. note::
115
116 Not all elements of the XML input will end up as elements of the
117 parsed tree. Currently, this module skips over any XML comments,
118 processing instructions, and document type declarations in the
119 input. Nevertheless, trees built using this module's API rather
120 than parsing from XML text can have comments and processing
121 instructions in them; they will be included when generating XML
122 output. A document type declaration may be accessed by passing a
123 custom :class:`TreeBuilder` instance to the :class:`XMLParser`
124 constructor.
125
126
R David Murray410d3202014-01-04 23:52:50 -0500127.. _elementtree-pull-parsing:
128
Eli Bendersky2c68e302013-08-31 07:37:23 -0700129Pull API for non-blocking parsing
Eli Benderskyb5869342013-08-30 05:51:20 -0700130^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Eli Bendersky3bdead12013-04-20 09:06:27 -0700131
R David Murray410d3202014-01-04 23:52:50 -0500132Most parsing functions provided by this module require the whole document
133to be read at once before returning any result. It is possible to use an
134:class:`XMLParser` and feed data into it incrementally, but it is a push API that
Eli Benderskyb5869342013-08-30 05:51:20 -0700135calls methods on a callback target, which is too low-level and inconvenient for
136most needs. Sometimes what the user really wants is to be able to parse XML
137incrementally, without blocking operations, while enjoying the convenience of
138fully constructed :class:`Element` objects.
Eli Bendersky3bdead12013-04-20 09:06:27 -0700139
Eli Benderskyb5869342013-08-30 05:51:20 -0700140The most powerful tool for doing this is :class:`XMLPullParser`. It does not
141require a blocking read to obtain the XML data, and is instead fed with data
142incrementally with :meth:`XMLPullParser.feed` calls. To get the parsed XML
R David Murray410d3202014-01-04 23:52:50 -0500143elements, call :meth:`XMLPullParser.read_events`. Here is an example::
Eli Benderskyb5869342013-08-30 05:51:20 -0700144
Eli Bendersky2c68e302013-08-31 07:37:23 -0700145 >>> parser = ET.XMLPullParser(['start', 'end'])
146 >>> parser.feed('<mytag>sometext')
147 >>> list(parser.read_events())
Eli Benderskyb5869342013-08-30 05:51:20 -0700148 [('start', <Element 'mytag' at 0x7fa66db2be58>)]
Eli Bendersky2c68e302013-08-31 07:37:23 -0700149 >>> parser.feed(' more text</mytag>')
150 >>> for event, elem in parser.read_events():
Serhiy Storchakadba90392016-05-10 12:01:23 +0300151 ... print(event)
152 ... print(elem.tag, 'text=', elem.text)
Eli Benderskyb5869342013-08-30 05:51:20 -0700153 ...
154 end
Eli Bendersky3bdead12013-04-20 09:06:27 -0700155
Eli Bendersky2c68e302013-08-31 07:37:23 -0700156The obvious use case is applications that operate in a non-blocking fashion
Eli Bendersky3bdead12013-04-20 09:06:27 -0700157where the XML data is being received from a socket or read incrementally from
158some storage device. In such cases, blocking reads are unacceptable.
159
Eli Benderskyb5869342013-08-30 05:51:20 -0700160Because it's so flexible, :class:`XMLPullParser` can be inconvenient to use for
161simpler use-cases. If you don't mind your application blocking on reading XML
162data but would still like to have incremental parsing capabilities, take a look
163at :func:`iterparse`. It can be useful when you're reading a large XML document
164and don't want to hold it wholly in memory.
Eli Bendersky3bdead12013-04-20 09:06:27 -0700165
Eli Benderskyc1d98692012-03-30 11:44:15 +0300166Finding interesting elements
167^^^^^^^^^^^^^^^^^^^^^^^^^^^^
168
169:class:`Element` has some useful methods that help iterate recursively over all
170the sub-tree below it (its children, their children, and so on). For example,
171:meth:`Element.iter`::
172
173 >>> for neighbor in root.iter('neighbor'):
Serhiy Storchakadba90392016-05-10 12:01:23 +0300174 ... print(neighbor.attrib)
Eli Benderskyc1d98692012-03-30 11:44:15 +0300175 ...
176 {'name': 'Austria', 'direction': 'E'}
177 {'name': 'Switzerland', 'direction': 'W'}
178 {'name': 'Malaysia', 'direction': 'N'}
179 {'name': 'Costa Rica', 'direction': 'W'}
180 {'name': 'Colombia', 'direction': 'E'}
181
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300182:meth:`Element.findall` finds only elements with a tag which are direct
183children of the current element. :meth:`Element.find` finds the *first* child
Georg Brandlbdaee3a2013-10-06 09:23:03 +0200184with a particular tag, and :attr:`Element.text` accesses the element's text
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300185content. :meth:`Element.get` accesses the element's attributes::
186
187 >>> for country in root.findall('country'):
Serhiy Storchakadba90392016-05-10 12:01:23 +0300188 ... rank = country.find('rank').text
189 ... name = country.get('name')
190 ... print(name, rank)
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300191 ...
Eli Bendersky3115f0d2012-08-15 14:26:30 +0300192 Liechtenstein 1
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300193 Singapore 4
194 Panama 68
195
Eli Benderskyc1d98692012-03-30 11:44:15 +0300196More sophisticated specification of which elements to look for is possible by
197using :ref:`XPath <elementtree-xpath>`.
198
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300199Modifying an XML File
200^^^^^^^^^^^^^^^^^^^^^
Eli Benderskyc1d98692012-03-30 11:44:15 +0300201
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300202:class:`ElementTree` provides a simple way to build XML documents and write them to files.
Eli Benderskyc1d98692012-03-30 11:44:15 +0300203The :meth:`ElementTree.write` method serves this purpose.
204
205Once created, an :class:`Element` object may be manipulated by directly changing
206its fields (such as :attr:`Element.text`), adding and modifying attributes
207(:meth:`Element.set` method), as well as adding new children (for example
208with :meth:`Element.append`).
209
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300210Let's say we want to add one to each country's rank, and add an ``updated``
211attribute to the rank element::
212
213 >>> for rank in root.iter('rank'):
Serhiy Storchakadba90392016-05-10 12:01:23 +0300214 ... new_rank = int(rank.text) + 1
215 ... rank.text = str(new_rank)
216 ... rank.set('updated', 'yes')
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300217 ...
Eli Benderskya1b0f6d2012-08-18 05:42:22 +0300218 >>> tree.write('output.xml')
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300219
220Our XML now looks like this:
221
222.. code-block:: xml
223
224 <?xml version="1.0"?>
225 <data>
Eli Bendersky3115f0d2012-08-15 14:26:30 +0300226 <country name="Liechtenstein">
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300227 <rank updated="yes">2</rank>
228 <year>2008</year>
229 <gdppc>141100</gdppc>
230 <neighbor name="Austria" direction="E"/>
231 <neighbor name="Switzerland" direction="W"/>
232 </country>
233 <country name="Singapore">
234 <rank updated="yes">5</rank>
235 <year>2011</year>
236 <gdppc>59900</gdppc>
237 <neighbor name="Malaysia" direction="N"/>
238 </country>
239 <country name="Panama">
240 <rank updated="yes">69</rank>
241 <year>2011</year>
242 <gdppc>13600</gdppc>
243 <neighbor name="Costa Rica" direction="W"/>
244 <neighbor name="Colombia" direction="E"/>
245 </country>
246 </data>
247
248We can remove elements using :meth:`Element.remove`. Let's say we want to
249remove all countries with a rank higher than 50::
250
251 >>> for country in root.findall('country'):
Serhiy Storchakadba90392016-05-10 12:01:23 +0300252 ... rank = int(country.find('rank').text)
253 ... if rank > 50:
254 ... root.remove(country)
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300255 ...
Eli Benderskya1b0f6d2012-08-18 05:42:22 +0300256 >>> tree.write('output.xml')
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300257
258Our XML now looks like this:
259
260.. code-block:: xml
261
262 <?xml version="1.0"?>
263 <data>
Eli Bendersky3115f0d2012-08-15 14:26:30 +0300264 <country name="Liechtenstein">
Eli Bendersky0f4e9342012-08-14 07:19:33 +0300265 <rank updated="yes">2</rank>
266 <year>2008</year>
267 <gdppc>141100</gdppc>
268 <neighbor name="Austria" direction="E"/>
269 <neighbor name="Switzerland" direction="W"/>
270 </country>
271 <country name="Singapore">
272 <rank updated="yes">5</rank>
273 <year>2011</year>
274 <gdppc>59900</gdppc>
275 <neighbor name="Malaysia" direction="N"/>
276 </country>
277 </data>
278
279Building XML documents
280^^^^^^^^^^^^^^^^^^^^^^
281
Eli Benderskyc1d98692012-03-30 11:44:15 +0300282The :func:`SubElement` function also provides a convenient way to create new
283sub-elements for a given element::
284
285 >>> a = ET.Element('a')
286 >>> b = ET.SubElement(a, 'b')
287 >>> c = ET.SubElement(a, 'c')
288 >>> d = ET.SubElement(c, 'd')
289 >>> ET.dump(a)
290 <a><b /><c><d /></c></a>
291
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700292Parsing XML with Namespaces
293^^^^^^^^^^^^^^^^^^^^^^^^^^^
294
295If the XML input has `namespaces
296<https://en.wikipedia.org/wiki/XML_namespace>`__, tags and attributes
297with prefixes in the form ``prefix:sometag`` get expanded to
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700298``{uri}sometag`` where the *prefix* is replaced by the full *URI*.
299Also, if there is a `default namespace
sblondon8d1f2f42018-02-10 23:39:43 +0100300<https://www.w3.org/TR/xml-names/#defaulting>`__,
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700301that full URI gets prepended to all of the non-prefixed tags.
302
303Here is an XML example that incorporates two namespaces, one with the
304prefix "fictional" and the other serving as the default namespace:
305
306.. code-block:: xml
307
308 <?xml version="1.0"?>
309 <actors xmlns:fictional="http://characters.example.com"
310 xmlns="http://people.example.com">
311 <actor>
312 <name>John Cleese</name>
313 <fictional:character>Lancelot</fictional:character>
314 <fictional:character>Archie Leach</fictional:character>
315 </actor>
316 <actor>
317 <name>Eric Idle</name>
318 <fictional:character>Sir Robin</fictional:character>
319 <fictional:character>Gunther</fictional:character>
320 <fictional:character>Commander Clement</fictional:character>
321 </actor>
322 </actors>
323
324One way to search and explore this XML example is to manually add the
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700325URI to every tag or attribute in the xpath of a
326:meth:`~Element.find` or :meth:`~Element.findall`::
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700327
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700328 root = fromstring(xml_text)
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700329 for actor in root.findall('{http://people.example.com}actor'):
330 name = actor.find('{http://people.example.com}name')
331 print(name.text)
332 for char in actor.findall('{http://characters.example.com}character'):
333 print(' |-->', char.text)
334
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700335A better way to search the namespaced XML example is to create a
336dictionary with your own prefixes and use those in the search functions::
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700337
338 ns = {'real_person': 'http://people.example.com',
339 'role': 'http://characters.example.com'}
340
341 for actor in root.findall('real_person:actor', ns):
342 name = actor.find('real_person:name', ns)
343 print(name.text)
344 for char in actor.findall('role:character', ns):
345 print(' |-->', char.text)
346
347These two approaches both output::
348
349 John Cleese
350 |--> Lancelot
351 |--> Archie Leach
352 Eric Idle
353 |--> Sir Robin
354 |--> Gunther
355 |--> Commander Clement
356
357
Eli Benderskyc1d98692012-03-30 11:44:15 +0300358Additional resources
359^^^^^^^^^^^^^^^^^^^^
360
361See http://effbot.org/zone/element-index.htm for tutorials and links to other
362docs.
363
364
365.. _elementtree-xpath:
366
367XPath support
368-------------
369
370This module provides limited support for
Serhiy Storchaka6dff0202016-05-07 10:49:07 +0300371`XPath expressions <https://www.w3.org/TR/xpath>`_ for locating elements in a
Eli Benderskyc1d98692012-03-30 11:44:15 +0300372tree. The goal is to support a small subset of the abbreviated syntax; a full
373XPath engine is outside the scope of the module.
374
375Example
376^^^^^^^
377
378Here's an example that demonstrates some of the XPath capabilities of the
379module. We'll be using the ``countrydata`` XML document from the
380:ref:`Parsing XML <elementtree-parsing-xml>` section::
381
382 import xml.etree.ElementTree as ET
383
384 root = ET.fromstring(countrydata)
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200385
386 # Top-level elements
Eli Benderskyc1d98692012-03-30 11:44:15 +0300387 root.findall(".")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200388
389 # All 'neighbor' grand-children of 'country' children of the top-level
390 # elements
Eli Benderskyc1d98692012-03-30 11:44:15 +0300391 root.findall("./country/neighbor")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200392
393 # Nodes with name='Singapore' that have a 'year' child
Eli Benderskyc1d98692012-03-30 11:44:15 +0300394 root.findall(".//year/..[@name='Singapore']")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200395
396 # 'year' nodes that are children of nodes with name='Singapore'
Eli Benderskyc1d98692012-03-30 11:44:15 +0300397 root.findall(".//*[@name='Singapore']/year")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200398
399 # All 'neighbor' nodes that are the second child of their parent
Eli Benderskyc1d98692012-03-30 11:44:15 +0300400 root.findall(".//neighbor[2]")
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200401
Stefan Behnel47541682019-05-03 20:58:16 +0200402For XML with namespaces, use the usual qualified ``{namespace}tag`` notation::
403
404 # All dublin-core "title" tags in the document
405 root.findall(".//{http://purl.org/dc/elements/1.1/}title")
406
407
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200408Supported XPath syntax
409^^^^^^^^^^^^^^^^^^^^^^
410
Georg Brandl44ea77b2013-03-28 13:28:44 +0100411.. tabularcolumns:: |l|L|
412
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200413+-----------------------+------------------------------------------------------+
414| Syntax | Meaning |
415+=======================+======================================================+
416| ``tag`` | Selects all child elements with the given tag. |
417| | For example, ``spam`` selects all child elements |
Raymond Hettinger1e1e6012014-03-29 11:50:08 -0700418| | named ``spam``, and ``spam/egg`` selects all |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200419| | grandchildren named ``egg`` in all children named |
Stefan Behnel47541682019-05-03 20:58:16 +0200420| | ``spam``. ``{namespace}*`` selects all tags in the |
421| | given namespace, ``{*}spam`` selects tags named |
422| | ``spam`` in any (or no) namespace, and ``{}*`` |
423| | only selects tags that are not in a namespace. |
424| | |
425| | .. versionchanged:: 3.8 |
426| | Support for star-wildcards was added. |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200427+-----------------------+------------------------------------------------------+
Stefan Behnel47541682019-05-03 20:58:16 +0200428| ``*`` | Selects all child elements, including comments and |
429| | processing instructions. For example, ``*/egg`` |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200430| | selects all grandchildren named ``egg``. |
431+-----------------------+------------------------------------------------------+
432| ``.`` | Selects the current node. This is mostly useful |
433| | at the beginning of the path, to indicate that it's |
434| | a relative path. |
435+-----------------------+------------------------------------------------------+
436| ``//`` | Selects all subelements, on all levels beneath the |
Eli Benderskyede001a2012-03-27 04:57:23 +0200437| | current element. For example, ``.//egg`` selects |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200438| | all ``egg`` elements in the entire tree. |
439+-----------------------+------------------------------------------------------+
Eli Bendersky323a43a2012-10-09 06:46:33 -0700440| ``..`` | Selects the parent element. Returns ``None`` if the |
441| | path attempts to reach the ancestors of the start |
442| | element (the element ``find`` was called on). |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200443+-----------------------+------------------------------------------------------+
444| ``[@attrib]`` | Selects all elements that have the given attribute. |
445+-----------------------+------------------------------------------------------+
446| ``[@attrib='value']`` | Selects all elements for which the given attribute |
447| | has the given value. The value cannot contain |
448| | quotes. |
449+-----------------------+------------------------------------------------------+
450| ``[tag]`` | Selects all elements that have a child named |
451| | ``tag``. Only immediate children are supported. |
452+-----------------------+------------------------------------------------------+
scoder101a5e82017-09-30 15:35:21 +0200453| ``[.='text']`` | Selects all elements whose complete text content, |
454| | including descendants, equals the given ``text``. |
455| | |
456| | .. versionadded:: 3.7 |
457+-----------------------+------------------------------------------------------+
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700458| ``[tag='text']`` | Selects all elements that have a child named |
459| | ``tag`` whose complete text content, including |
460| | descendants, equals the given ``text``. |
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700461+-----------------------+------------------------------------------------------+
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200462| ``[position]`` | Selects all elements that are located at the given |
463| | position. The position can be either an integer |
464| | (1 is the first position), the expression ``last()`` |
465| | (for the last position), or a position relative to |
466| | the last position (e.g. ``last()-1``). |
467+-----------------------+------------------------------------------------------+
468
469Predicates (expressions within square brackets) must be preceded by a tag
470name, an asterisk, or another predicate. ``position`` predicates must be
471preceded by a tag name.
472
473Reference
474---------
475
Georg Brandl116aa622007-08-15 14:28:22 +0000476.. _elementtree-functions:
477
478Functions
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200479^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000480
Stefan Behnele1d5dd62019-05-01 22:34:13 +0200481.. function:: canonicalize(xml_data=None, *, out=None, from_file=None, **options)
482
483 `C14N 2.0 <https://www.w3.org/TR/xml-c14n2/>`_ transformation function.
484
485 Canonicalization is a way to normalise XML output in a way that allows
486 byte-by-byte comparisons and digital signatures. It reduced the freedom
487 that XML serializers have and instead generates a more constrained XML
488 representation. The main restrictions regard the placement of namespace
489 declarations, the ordering of attributes, and ignorable whitespace.
490
491 This function takes an XML data string (*xml_data*) or a file path or
492 file-like object (*from_file*) as input, converts it to the canonical
493 form, and writes it out using the *out* file(-like) object, if provided,
494 or returns it as a text string if not. The output file receives text,
495 not bytes. It should therefore be opened in text mode with ``utf-8``
496 encoding.
497
498 Typical uses::
499
500 xml_data = "<root>...</root>"
501 print(canonicalize(xml_data))
502
503 with open("c14n_output.xml", mode='w', encoding='utf-8') as out_file:
504 canonicalize(xml_data, out=out_file)
505
506 with open("c14n_output.xml", mode='w', encoding='utf-8') as out_file:
507 canonicalize(from_file="inputfile.xml", out=out_file)
508
509 The configuration *options* are as follows:
510
511 - *with_comments*: set to true to include comments (default: false)
512 - *strip_text*: set to true to strip whitespace before and after text content
513 (default: false)
514 - *rewrite_prefixes*: set to true to replace namespace prefixes by "n{number}"
515 (default: false)
516 - *qname_aware_tags*: a set of qname aware tag names in which prefixes
517 should be replaced in text content (default: empty)
518 - *qname_aware_attrs*: a set of qname aware attribute names in which prefixes
519 should be replaced in text content (default: empty)
520 - *exclude_attrs*: a set of attribute names that should not be serialised
521 - *exclude_tags*: a set of tag names that should not be serialised
522
523 In the option list above, "a set" refers to any collection or iterable of
524 strings, no ordering is expected.
525
526 .. versionadded:: 3.8
527
Georg Brandl116aa622007-08-15 14:28:22 +0000528
Georg Brandl7f01a132009-09-16 15:58:14 +0000529.. function:: Comment(text=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000530
Georg Brandlf6945182008-02-01 11:56:49 +0000531 Comment element factory. This factory function creates a special element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000532 that will be serialized as an XML comment by the standard serializer. The
533 comment string can be either a bytestring or a Unicode string. *text* is a
534 string containing the comment string. Returns an element instance
Georg Brandlf6945182008-02-01 11:56:49 +0000535 representing a comment.
Georg Brandl116aa622007-08-15 14:28:22 +0000536
Eli Bendersky0bd22d42014-04-03 06:14:38 -0700537 Note that :class:`XMLParser` skips over comments in the input
538 instead of creating comment objects for them. An :class:`ElementTree` will
539 only contain comment nodes if they have been inserted into to
540 the tree using one of the :class:`Element` methods.
Georg Brandl116aa622007-08-15 14:28:22 +0000541
542.. function:: dump(elem)
543
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000544 Writes an element tree or element structure to sys.stdout. This function
545 should be used for debugging only.
Georg Brandl116aa622007-08-15 14:28:22 +0000546
547 The exact output format is implementation dependent. In this version, it's
548 written as an ordinary XML file.
549
550 *elem* is an element tree or an individual element.
551
Raymond Hettingere3685fd2018-10-28 11:18:22 -0700552 .. versionchanged:: 3.8
553 The :func:`dump` function now preserves the attribute order specified
554 by the user.
555
Georg Brandl116aa622007-08-15 14:28:22 +0000556
Manjusakae5458bd2019-02-22 08:33:57 +0800557.. function:: fromstring(text, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000558
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000559 Parses an XML section from a string constant. Same as :func:`XML`. *text*
Manjusakae5458bd2019-02-22 08:33:57 +0800560 is a string containing XML data. *parser* is an optional parser instance.
561 If not given, the standard :class:`XMLParser` parser is used.
562 Returns an :class:`Element` instance.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000563
564
565.. function:: fromstringlist(sequence, parser=None)
566
567 Parses an XML document from a sequence of string fragments. *sequence* is a
568 list or other sequence containing XML data fragments. *parser* is an
569 optional parser instance. If not given, the standard :class:`XMLParser`
570 parser is used. Returns an :class:`Element` instance.
571
Ezio Melottif8754a62010-03-21 07:16:43 +0000572 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000573
574
Stefan Behnelb5d3cee2019-08-23 16:44:25 +0200575.. function:: indent(tree, space=" ", level=0)
576
577 Appends whitespace to the subtree to indent the tree visually.
578 This can be used to generate pretty-printed XML output.
579 *tree* can be an Element or ElementTree. *space* is the whitespace
580 string that will be inserted for each indentation level, two space
581 characters by default. For indenting partial subtrees inside of an
582 already indented tree, pass the initial indentation level as *level*.
583
584 .. versionadded:: 3.9
585
586
Georg Brandl116aa622007-08-15 14:28:22 +0000587.. function:: iselement(element)
588
Serhiy Storchaka138ccbb2019-11-12 16:57:03 +0200589 Check if an object appears to be a valid element object. *element* is an
590 element instance. Return ``True`` if this is an element object.
Georg Brandl116aa622007-08-15 14:28:22 +0000591
592
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000593.. function:: iterparse(source, events=None, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000594
595 Parses an XML section into an element tree incrementally, and reports what's
Eli Bendersky604c4ff2012-03-16 08:41:30 +0200596 going on to the user. *source* is a filename or :term:`file object`
Eli Benderskyfb625442013-05-19 09:09:24 -0700597 containing XML data. *events* is a sequence of events to report back. The
Stefan Behnel43851a22019-05-01 21:20:38 +0200598 supported events are the strings ``"start"``, ``"end"``, ``"comment"``,
599 ``"pi"``, ``"start-ns"`` and ``"end-ns"``
600 (the "ns" events are used to get detailed namespace
Eli Bendersky604c4ff2012-03-16 08:41:30 +0200601 information). If *events* is omitted, only ``"end"`` events are reported.
602 *parser* is an optional parser instance. If not given, the standard
Eli Benderskyb5869342013-08-30 05:51:20 -0700603 :class:`XMLParser` parser is used. *parser* must be a subclass of
604 :class:`XMLParser` and can only use the default :class:`TreeBuilder` as a
605 target. Returns an :term:`iterator` providing ``(event, elem)`` pairs.
Georg Brandl116aa622007-08-15 14:28:22 +0000606
Eli Benderskyab2a76c2013-04-20 05:53:50 -0700607 Note that while :func:`iterparse` builds the tree incrementally, it issues
608 blocking reads on *source* (or the file it names). As such, it's unsuitable
Eli Bendersky2c68e302013-08-31 07:37:23 -0700609 for applications where blocking reads can't be made. For fully non-blocking
610 parsing, see :class:`XMLPullParser`.
Eli Benderskyab2a76c2013-04-20 05:53:50 -0700611
Benjamin Peterson75edad02009-01-01 15:05:06 +0000612 .. note::
613
Eli Benderskyb5869342013-08-30 05:51:20 -0700614 :func:`iterparse` only guarantees that it has seen the ">" character of a
615 starting tag when it emits a "start" event, so the attributes are defined,
616 but the contents of the text and tail attributes are undefined at that
617 point. The same applies to the element children; they may or may not be
618 present.
Benjamin Peterson75edad02009-01-01 15:05:06 +0000619
620 If you need a fully populated element, look for "end" events instead.
621
Eli Benderskyb5869342013-08-30 05:51:20 -0700622 .. deprecated:: 3.4
623 The *parser* argument.
624
Stefan Behnel43851a22019-05-01 21:20:38 +0200625 .. versionchanged:: 3.8
626 The ``comment`` and ``pi`` events were added.
627
628
Georg Brandl7f01a132009-09-16 15:58:14 +0000629.. function:: parse(source, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000630
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000631 Parses an XML section into an element tree. *source* is a filename or file
632 object containing XML data. *parser* is an optional parser instance. If
633 not given, the standard :class:`XMLParser` parser is used. Returns an
634 :class:`ElementTree` instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000635
636
Georg Brandl7f01a132009-09-16 15:58:14 +0000637.. function:: ProcessingInstruction(target, text=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000638
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000639 PI element factory. This factory function creates a special element that
640 will be serialized as an XML processing instruction. *target* is a string
641 containing the PI target. *text* is a string containing the PI contents, if
642 given. Returns an element instance, representing a processing instruction.
643
Eli Bendersky0bd22d42014-04-03 06:14:38 -0700644 Note that :class:`XMLParser` skips over processing instructions
645 in the input instead of creating comment objects for them. An
646 :class:`ElementTree` will only contain processing instruction nodes if
647 they have been inserted into to the tree using one of the
648 :class:`Element` methods.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000649
650.. function:: register_namespace(prefix, uri)
651
652 Registers a namespace prefix. The registry is global, and any existing
653 mapping for either the given prefix or the namespace URI will be removed.
654 *prefix* is a namespace prefix. *uri* is a namespace uri. Tags and
655 attributes in this namespace will be serialized with the given prefix, if at
656 all possible.
657
Ezio Melottif8754a62010-03-21 07:16:43 +0000658 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000659
660
Georg Brandl7f01a132009-09-16 15:58:14 +0000661.. function:: SubElement(parent, tag, attrib={}, **extra)
Georg Brandl116aa622007-08-15 14:28:22 +0000662
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000663 Subelement factory. This function creates an element instance, and appends
664 it to an existing element.
Georg Brandl116aa622007-08-15 14:28:22 +0000665
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000666 The element name, attribute names, and attribute values can be either
667 bytestrings or Unicode strings. *parent* is the parent element. *tag* is
668 the subelement name. *attrib* is an optional dictionary, containing element
669 attributes. *extra* contains additional attributes, given as keyword
670 arguments. Returns an element instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000671
672
Serhiy Storchaka9e189f02013-01-13 22:24:27 +0200673.. function:: tostring(element, encoding="us-ascii", method="xml", *, \
Stefan Behnela3697db2019-07-24 20:22:50 +0200674 xml_declaration=None, default_namespace=None, \
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800675 short_empty_elements=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000676
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000677 Generates a string representation of an XML element, including all
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000678 subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is
Florent Xiclunac17f1722010-08-08 19:48:29 +0000679 the output encoding (default is US-ASCII). Use ``encoding="unicode"`` to
Eli Bendersky831893a2012-10-09 07:18:16 -0700680 generate a Unicode string (otherwise, a bytestring is generated). *method*
681 is either ``"xml"``, ``"html"`` or ``"text"`` (default is ``"xml"``).
Bernt Røskar Brennaffca16e2019-04-14 10:07:02 +0200682 *xml_declaration*, *default_namespace* and *short_empty_elements* has the same
683 meaning as in :meth:`ElementTree.write`. Returns an (optionally) encoded string
684 containing the XML data.
Georg Brandl116aa622007-08-15 14:28:22 +0000685
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800686 .. versionadded:: 3.4
687 The *short_empty_elements* parameter.
Georg Brandl116aa622007-08-15 14:28:22 +0000688
Bernt Røskar Brennaffca16e2019-04-14 10:07:02 +0200689 .. versionadded:: 3.8
690 The *xml_declaration* and *default_namespace* parameters.
691
Stefan Behnela3697db2019-07-24 20:22:50 +0200692 .. versionchanged:: 3.8
693 The :func:`tostring` function now preserves the attribute order
694 specified by the user.
695
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800696
Serhiy Storchaka9e189f02013-01-13 22:24:27 +0200697.. function:: tostringlist(element, encoding="us-ascii", method="xml", *, \
Stefan Behnela3697db2019-07-24 20:22:50 +0200698 xml_declaration=None, default_namespace=None, \
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800699 short_empty_elements=True)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000700
701 Generates a string representation of an XML element, including all
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000702 subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is
Florent Xiclunac17f1722010-08-08 19:48:29 +0000703 the output encoding (default is US-ASCII). Use ``encoding="unicode"`` to
Eli Bendersky831893a2012-10-09 07:18:16 -0700704 generate a Unicode string (otherwise, a bytestring is generated). *method*
705 is either ``"xml"``, ``"html"`` or ``"text"`` (default is ``"xml"``).
Bernt Røskar Brennaffca16e2019-04-14 10:07:02 +0200706 *xml_declaration*, *default_namespace* and *short_empty_elements* has the same
707 meaning as in :meth:`ElementTree.write`. Returns a list of (optionally) encoded
708 strings containing the XML data. It does not guarantee any specific sequence,
709 except that ``b"".join(tostringlist(element)) == tostring(element)``.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000710
Ezio Melottif8754a62010-03-21 07:16:43 +0000711 .. versionadded:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000712
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800713 .. versionadded:: 3.4
714 The *short_empty_elements* parameter.
715
Bernt Røskar Brennaffca16e2019-04-14 10:07:02 +0200716 .. versionadded:: 3.8
717 The *xml_declaration* and *default_namespace* parameters.
718
Stefan Behnela3697db2019-07-24 20:22:50 +0200719 .. versionchanged:: 3.8
720 The :func:`tostringlist` function now preserves the attribute order
721 specified by the user.
722
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000723
724.. function:: XML(text, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000725
726 Parses an XML section from a string constant. This function can be used to
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000727 embed "XML literals" in Python code. *text* is a string containing XML
728 data. *parser* is an optional parser instance. If not given, the standard
729 :class:`XMLParser` parser is used. Returns an :class:`Element` instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000730
731
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000732.. function:: XMLID(text, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000733
734 Parses an XML section from a string constant, and also returns a dictionary
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000735 which maps from element id:s to elements. *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 a tuple containing an
738 :class:`Element` instance and a dictionary.
Georg Brandl116aa622007-08-15 14:28:22 +0000739
740
Anjali Bansal97b817e2019-09-11 19:39:53 +0530741.. _elementtree-xinclude:
742
743XInclude support
744----------------
745
746This module provides limited support for
747`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.
748
749Example
750^^^^^^^
751
752Here'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.
753
754.. code-block:: xml
755
756 <?xml version="1.0"?>
757 <document xmlns:xi="http://www.w3.org/2001/XInclude">
758 <xi:include href="source.xml" parse="xml" />
759 </document>
760
761By 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.
762
763To process this file, load it as usual, and pass the root element to the :mod:`xml.etree.ElementTree` module:
764
765.. code-block:: python
766
767 from xml.etree import ElementTree, ElementInclude
768
769 tree = ElementTree.parse("document.xml")
770 root = tree.getroot()
771
772 ElementInclude.include(root)
773
774The 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:
775
776.. code-block:: xml
777
778 <document xmlns:xi="http://www.w3.org/2001/XInclude">
779 <para>This is a paragraph.</para>
780 </document>
781
782If the **parse** attribute is omitted, it defaults to "xml". The href attribute is required.
783
784To include a text document, use the ``{http://www.w3.org/2001/XInclude}include`` element, and set the **parse** attribute to "text":
785
786.. code-block:: xml
787
788 <?xml version="1.0"?>
789 <document xmlns:xi="http://www.w3.org/2001/XInclude">
790 Copyright (c) <xi:include href="year.txt" parse="text" />.
791 </document>
792
793The result might look something like:
794
795.. code-block:: xml
796
797 <document xmlns:xi="http://www.w3.org/2001/XInclude">
798 Copyright (c) 2003.
799 </document>
800
801Reference
802---------
803
804.. _elementinclude-functions:
805
806Functions
807^^^^^^^^^
808
809.. function:: xml.etree.ElementInclude.default_loader( href, parse, encoding=None)
810
811 Default loader. This default loader reads an included resource from disk. *href* is a URL.
812 *parse* is for parse mode either "xml" or "text". *encoding*
813 is an optional text encoding. If not given, encoding is ``utf-8``. Returns the
814 expanded resource. If the parse mode is ``"xml"``, this is an ElementTree
815 instance. If the parse mode is "text", this is a Unicode string. If the
816 loader fails, it can return None or raise an exception.
817
818
819.. function:: xml.etree.ElementInclude.include( elem, loader=None)
820
821 This function expands XInclude directives. *elem* is the root element. *loader* is
822 an optional resource loader. If omitted, it defaults to :func:`default_loader`.
823 If given, it should be a callable that implements the same interface as
824 :func:`default_loader`. Returns the expanded resource. If the parse mode is
825 ``"xml"``, this is an ElementTree instance. If the parse mode is "text",
826 this is a Unicode string. If the loader fails, it can return None or
827 raise an exception.
828
829
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000830.. _elementtree-element-objects:
Georg Brandl116aa622007-08-15 14:28:22 +0000831
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000832Element Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200833^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000834
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000835.. class:: Element(tag, attrib={}, **extra)
Georg Brandl116aa622007-08-15 14:28:22 +0000836
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000837 Element class. This class defines the Element interface, and provides a
838 reference implementation of this interface.
Georg Brandl116aa622007-08-15 14:28:22 +0000839
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000840 The element name, attribute names, and attribute values can be either
841 bytestrings or Unicode strings. *tag* is the element name. *attrib* is
842 an optional dictionary, containing element attributes. *extra* contains
843 additional attributes, given as keyword arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000844
845
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000846 .. attribute:: tag
Georg Brandl116aa622007-08-15 14:28:22 +0000847
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000848 A string identifying what kind of data this element represents (the
849 element type, in other words).
Georg Brandl116aa622007-08-15 14:28:22 +0000850
851
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000852 .. attribute:: text
Ned Deilyeca04452015-08-17 22:11:17 -0400853 tail
Georg Brandl116aa622007-08-15 14:28:22 +0000854
Ned Deilyeca04452015-08-17 22:11:17 -0400855 These attributes can be used to hold additional data associated with
856 the element. Their values are usually strings but may be any
857 application-specific object. If the element is created from
858 an XML file, the *text* attribute holds either the text between
859 the element's start tag and its first child or end tag, or ``None``, and
860 the *tail* attribute holds either the text between the element's
861 end tag and the next tag, or ``None``. For the XML data
Georg Brandl116aa622007-08-15 14:28:22 +0000862
Ned Deilyeca04452015-08-17 22:11:17 -0400863 .. code-block:: xml
Georg Brandl116aa622007-08-15 14:28:22 +0000864
Ned Deilyeca04452015-08-17 22:11:17 -0400865 <a><b>1<c>2<d/>3</c></b>4</a>
Georg Brandl116aa622007-08-15 14:28:22 +0000866
Ned Deilyeca04452015-08-17 22:11:17 -0400867 the *a* element has ``None`` for both *text* and *tail* attributes,
868 the *b* element has *text* ``"1"`` and *tail* ``"4"``,
869 the *c* element has *text* ``"2"`` and *tail* ``None``,
870 and the *d* element has *text* ``None`` and *tail* ``"3"``.
871
872 To collect the inner text of an element, see :meth:`itertext`, for
873 example ``"".join(element.itertext())``.
874
875 Applications may store arbitrary objects in these attributes.
Georg Brandl116aa622007-08-15 14:28:22 +0000876
Georg Brandl116aa622007-08-15 14:28:22 +0000877
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000878 .. attribute:: attrib
Georg Brandl116aa622007-08-15 14:28:22 +0000879
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000880 A dictionary containing the element's attributes. Note that while the
881 *attrib* value is always a real mutable Python dictionary, an ElementTree
882 implementation may choose to use another internal representation, and
883 create the dictionary only if someone asks for it. To take advantage of
884 such implementations, use the dictionary methods below whenever possible.
Georg Brandl116aa622007-08-15 14:28:22 +0000885
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000886 The following dictionary-like methods work on the element attributes.
Georg Brandl116aa622007-08-15 14:28:22 +0000887
888
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000889 .. method:: clear()
Georg Brandl116aa622007-08-15 14:28:22 +0000890
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000891 Resets an element. This function removes all subelements, clears all
Eli Bendersky323a43a2012-10-09 06:46:33 -0700892 attributes, and sets the text and tail attributes to ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000893
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000894
895 .. method:: get(key, default=None)
896
897 Gets the element attribute named *key*.
898
899 Returns the attribute value, or *default* if the attribute was not found.
900
901
902 .. method:: items()
903
904 Returns the element attributes as a sequence of (name, value) pairs. The
905 attributes are returned in an arbitrary order.
906
907
908 .. method:: keys()
909
910 Returns the elements attribute names as a list. The names are returned
911 in an arbitrary order.
912
913
914 .. method:: set(key, value)
915
916 Set the attribute *key* on the element to *value*.
917
918 The following methods work on the element's children (subelements).
919
920
921 .. method:: append(subelement)
922
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200923 Adds the element *subelement* to the end of this element's internal list
924 of subelements. Raises :exc:`TypeError` if *subelement* is not an
925 :class:`Element`.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000926
927
928 .. method:: extend(subelements)
Georg Brandl116aa622007-08-15 14:28:22 +0000929
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000930 Appends *subelements* from a sequence object with zero or more elements.
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200931 Raises :exc:`TypeError` if a subelement is not an :class:`Element`.
Georg Brandl116aa622007-08-15 14:28:22 +0000932
Ezio Melottif8754a62010-03-21 07:16:43 +0000933 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000934
Georg Brandl116aa622007-08-15 14:28:22 +0000935
Eli Bendersky737b1732012-05-29 06:02:56 +0300936 .. method:: find(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000937
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000938 Finds the first subelement matching *match*. *match* may be a tag name
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200939 or a :ref:`path <elementtree-xpath>`. Returns an element instance
Eli Bendersky737b1732012-05-29 06:02:56 +0300940 or ``None``. *namespaces* is an optional mapping from namespace prefix
Stefan Behnele8113f52019-04-18 19:05:03 +0200941 to full name. Pass ``''`` as prefix to move all unprefixed tag names
Stefan Behnele9927e12019-04-14 10:09:09 +0200942 in the expression into the given namespace.
Georg Brandl116aa622007-08-15 14:28:22 +0000943
Georg Brandl116aa622007-08-15 14:28:22 +0000944
Eli Bendersky737b1732012-05-29 06:02:56 +0300945 .. method:: findall(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000946
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200947 Finds all matching subelements, by tag name or
948 :ref:`path <elementtree-xpath>`. Returns a list containing all matching
Eli Bendersky737b1732012-05-29 06:02:56 +0300949 elements in document order. *namespaces* is an optional mapping from
Stefan Behnele8113f52019-04-18 19:05:03 +0200950 namespace prefix to full name. Pass ``''`` as prefix to move all
Stefan Behnele9927e12019-04-14 10:09:09 +0200951 unprefixed tag names in the expression into the given namespace.
Georg Brandl116aa622007-08-15 14:28:22 +0000952
Georg Brandl116aa622007-08-15 14:28:22 +0000953
Eli Bendersky737b1732012-05-29 06:02:56 +0300954 .. method:: findtext(match, default=None, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000955
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000956 Finds text for the first subelement matching *match*. *match* may be
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200957 a tag name or a :ref:`path <elementtree-xpath>`. Returns the text content
958 of the first matching element, or *default* if no element was found.
959 Note that if the matching element has no text content an empty string
Eli Bendersky737b1732012-05-29 06:02:56 +0300960 is returned. *namespaces* is an optional mapping from namespace prefix
Stefan Behnele8113f52019-04-18 19:05:03 +0200961 to full name. Pass ``''`` as prefix to move all unprefixed tag names
Stefan Behnele9927e12019-04-14 10:09:09 +0200962 in the expression into the given namespace.
Georg Brandl116aa622007-08-15 14:28:22 +0000963
Georg Brandl116aa622007-08-15 14:28:22 +0000964
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200965 .. method:: insert(index, subelement)
Georg Brandl116aa622007-08-15 14:28:22 +0000966
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200967 Inserts *subelement* at the given position in this element. Raises
968 :exc:`TypeError` if *subelement* is not an :class:`Element`.
Georg Brandl116aa622007-08-15 14:28:22 +0000969
Georg Brandl116aa622007-08-15 14:28:22 +0000970
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000971 .. method:: iter(tag=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000972
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000973 Creates a tree :term:`iterator` with the current element as the root.
974 The iterator iterates over this element and all elements below it, in
975 document (depth first) order. If *tag* is not ``None`` or ``'*'``, only
976 elements whose tag equals *tag* are returned from the iterator. If the
977 tree structure is modified during iteration, the result is undefined.
Georg Brandl116aa622007-08-15 14:28:22 +0000978
Ezio Melotti138fc892011-10-10 00:02:03 +0300979 .. versionadded:: 3.2
980
Georg Brandl116aa622007-08-15 14:28:22 +0000981
Eli Bendersky737b1732012-05-29 06:02:56 +0300982 .. method:: iterfind(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000983
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200984 Finds all matching subelements, by tag name or
985 :ref:`path <elementtree-xpath>`. Returns an iterable yielding all
Eli Bendersky737b1732012-05-29 06:02:56 +0300986 matching elements in document order. *namespaces* is an optional mapping
987 from namespace prefix to full name.
988
Georg Brandl116aa622007-08-15 14:28:22 +0000989
Ezio Melottif8754a62010-03-21 07:16:43 +0000990 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000991
Georg Brandl116aa622007-08-15 14:28:22 +0000992
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000993 .. method:: itertext()
Georg Brandl116aa622007-08-15 14:28:22 +0000994
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000995 Creates a text iterator. The iterator loops over this element and all
996 subelements, in document order, and returns all inner text.
Georg Brandl116aa622007-08-15 14:28:22 +0000997
Ezio Melottif8754a62010-03-21 07:16:43 +0000998 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000999
1000
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001001 .. method:: makeelement(tag, attrib)
Georg Brandl116aa622007-08-15 14:28:22 +00001002
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001003 Creates a new element object of the same type as this element. Do not
1004 call this method, use the :func:`SubElement` factory function instead.
Georg Brandl116aa622007-08-15 14:28:22 +00001005
1006
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001007 .. method:: remove(subelement)
Georg Brandl116aa622007-08-15 14:28:22 +00001008
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001009 Removes *subelement* from the element. Unlike the find\* methods this
1010 method compares elements based on the instance identity, not on tag value
1011 or contents.
Georg Brandl116aa622007-08-15 14:28:22 +00001012
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001013 :class:`Element` objects also support the following sequence type methods
Serhiy Storchaka15e65902013-08-29 10:28:44 +03001014 for working with subelements: :meth:`~object.__delitem__`,
1015 :meth:`~object.__getitem__`, :meth:`~object.__setitem__`,
1016 :meth:`~object.__len__`.
Georg Brandl116aa622007-08-15 14:28:22 +00001017
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001018 Caution: Elements with no subelements will test as ``False``. This behavior
1019 will change in future versions. Use specific ``len(elem)`` or ``elem is
1020 None`` test instead. ::
Georg Brandl116aa622007-08-15 14:28:22 +00001021
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001022 element = root.find('foo')
Georg Brandl116aa622007-08-15 14:28:22 +00001023
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001024 if not element: # careful!
1025 print("element not found, or element has no subelements")
Georg Brandl116aa622007-08-15 14:28:22 +00001026
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001027 if element is None:
1028 print("element not found")
Georg Brandl116aa622007-08-15 14:28:22 +00001029
Stefan Behnela3697db2019-07-24 20:22:50 +02001030 Prior to Python 3.8, the serialisation order of the XML attributes of
1031 elements was artificially made predictable by sorting the attributes by
1032 their name. Based on the now guaranteed ordering of dicts, this arbitrary
1033 reordering was removed in Python 3.8 to preserve the order in which
1034 attributes were originally parsed or created by user code.
1035
1036 In general, user code should try not to depend on a specific ordering of
1037 attributes, given that the `XML Information Set
1038 <https://www.w3.org/TR/xml-infoset/>`_ explicitly excludes the attribute
1039 order from conveying information. Code should be prepared to deal with
1040 any ordering on input. In cases where deterministic XML output is required,
1041 e.g. for cryptographic signing or test data sets, canonical serialisation
1042 is available with the :func:`canonicalize` function.
1043
1044 In cases where canonical output is not applicable but a specific attribute
1045 order is still desirable on output, code should aim for creating the
1046 attributes directly in the desired order, to avoid perceptual mismatches
1047 for readers of the code. In cases where this is difficult to achieve, a
1048 recipe like the following can be applied prior to serialisation to enforce
1049 an order independently from the Element creation::
1050
1051 def reorder_attributes(root):
1052 for el in root.iter():
1053 attrib = el.attrib
1054 if len(attrib) > 1:
1055 # adjust attribute order, e.g. by sorting
1056 attribs = sorted(attrib.items())
1057 attrib.clear()
1058 attrib.update(attribs)
1059
Georg Brandl116aa622007-08-15 14:28:22 +00001060
1061.. _elementtree-elementtree-objects:
1062
1063ElementTree Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001064^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001065
1066
Georg Brandl7f01a132009-09-16 15:58:14 +00001067.. class:: ElementTree(element=None, file=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001068
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001069 ElementTree wrapper class. This class represents an entire element
1070 hierarchy, and adds some extra support for serialization to and from
1071 standard XML.
Georg Brandl116aa622007-08-15 14:28:22 +00001072
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001073 *element* is the root element. The tree is initialized with the contents
1074 of the XML *file* if given.
Georg Brandl116aa622007-08-15 14:28:22 +00001075
1076
Benjamin Petersone41251e2008-04-25 01:59:09 +00001077 .. method:: _setroot(element)
Georg Brandl116aa622007-08-15 14:28:22 +00001078
Benjamin Petersone41251e2008-04-25 01:59:09 +00001079 Replaces the root element for this tree. This discards the current
1080 contents of the tree, and replaces it with the given element. Use with
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001081 care. *element* is an element instance.
Georg Brandl116aa622007-08-15 14:28:22 +00001082
1083
Eli Bendersky737b1732012-05-29 06:02:56 +03001084 .. method:: find(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001085
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001086 Same as :meth:`Element.find`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +00001087
1088
Eli Bendersky737b1732012-05-29 06:02:56 +03001089 .. method:: findall(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001090
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001091 Same as :meth:`Element.findall`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +00001092
1093
Eli Bendersky737b1732012-05-29 06:02:56 +03001094 .. method:: findtext(match, default=None, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001095
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001096 Same as :meth:`Element.findtext`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +00001097
1098
Benjamin Petersone41251e2008-04-25 01:59:09 +00001099 .. method:: getroot()
Florent Xiclunac17f1722010-08-08 19:48:29 +00001100
Benjamin Petersone41251e2008-04-25 01:59:09 +00001101 Returns the root element for this tree.
Georg Brandl116aa622007-08-15 14:28:22 +00001102
1103
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001104 .. method:: iter(tag=None)
1105
1106 Creates and returns a tree iterator for the root element. The iterator
1107 loops over all elements in this tree, in section order. *tag* is the tag
Martin Panterd21e0b52015-10-10 10:36:22 +00001108 to look for (default is to return all elements).
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001109
1110
Eli Bendersky737b1732012-05-29 06:02:56 +03001111 .. method:: iterfind(match, namespaces=None)
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001112
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001113 Same as :meth:`Element.iterfind`, starting at the root of the tree.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001114
Ezio Melottif8754a62010-03-21 07:16:43 +00001115 .. versionadded:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001116
1117
Georg Brandl7f01a132009-09-16 15:58:14 +00001118 .. method:: parse(source, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001119
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001120 Loads an external XML section into this element tree. *source* is a file
Antoine Pitrou11cb9612010-09-15 11:11:28 +00001121 name or :term:`file object`. *parser* is an optional parser instance.
Eli Bendersky52467b12012-06-01 07:13:08 +03001122 If not given, the standard :class:`XMLParser` parser is used. Returns the
1123 section root element.
Georg Brandl116aa622007-08-15 14:28:22 +00001124
1125
Eli Benderskyf96cf912012-07-15 06:19:44 +03001126 .. method:: write(file, encoding="us-ascii", xml_declaration=None, \
Serhiy Storchaka9e189f02013-01-13 22:24:27 +02001127 default_namespace=None, method="xml", *, \
Eli Benderskye9af8272013-01-13 06:27:51 -08001128 short_empty_elements=True)
Georg Brandl116aa622007-08-15 14:28:22 +00001129
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001130 Writes the element tree to a file, as XML. *file* is a file name, or a
Eli Benderskyf96cf912012-07-15 06:19:44 +03001131 :term:`file object` opened for writing. *encoding* [1]_ is the output
1132 encoding (default is US-ASCII).
1133 *xml_declaration* controls if an XML declaration should be added to the
1134 file. Use ``False`` for never, ``True`` for always, ``None``
1135 for only if not US-ASCII or UTF-8 or Unicode (default is ``None``).
Serhiy Storchaka03530b92013-01-13 21:58:04 +02001136 *default_namespace* sets the default XML namespace (for "xmlns").
Eli Benderskyf96cf912012-07-15 06:19:44 +03001137 *method* is either ``"xml"``, ``"html"`` or ``"text"`` (default is
1138 ``"xml"``).
Eli Benderskya9a2ef52013-01-13 06:04:43 -08001139 The keyword-only *short_empty_elements* parameter controls the formatting
Serhiy Storchakaa97cd2e2016-10-19 16:43:42 +03001140 of elements that contain no content. If ``True`` (the default), they are
Eli Benderskya9a2ef52013-01-13 06:04:43 -08001141 emitted as a single self-closed tag, otherwise they are emitted as a pair
1142 of start/end tags.
Eli Benderskyf96cf912012-07-15 06:19:44 +03001143
1144 The output is either a string (:class:`str`) or binary (:class:`bytes`).
1145 This is controlled by the *encoding* argument. If *encoding* is
1146 ``"unicode"``, the output is a string; otherwise, it's binary. Note that
1147 this may conflict with the type of *file* if it's an open
1148 :term:`file object`; make sure you do not try to write a string to a
1149 binary stream and vice versa.
1150
R David Murray575fb312013-12-25 23:21:03 -05001151 .. versionadded:: 3.4
1152 The *short_empty_elements* parameter.
Eli Benderskya9a2ef52013-01-13 06:04:43 -08001153
Raymond Hettingere3685fd2018-10-28 11:18:22 -07001154 .. versionchanged:: 3.8
1155 The :meth:`write` method now preserves the attribute order specified
1156 by the user.
1157
Georg Brandl116aa622007-08-15 14:28:22 +00001158
Christian Heimesd8654cf2007-12-02 15:22:16 +00001159This is the XML file that is going to be manipulated::
1160
1161 <html>
1162 <head>
1163 <title>Example page</title>
1164 </head>
1165 <body>
Georg Brandl48310cd2009-01-03 21:18:54 +00001166 <p>Moved to <a href="http://example.org/">example.org</a>
Christian Heimesd8654cf2007-12-02 15:22:16 +00001167 or <a href="http://example.com/">example.com</a>.</p>
1168 </body>
1169 </html>
1170
1171Example of changing the attribute "target" of every link in first paragraph::
1172
1173 >>> from xml.etree.ElementTree import ElementTree
1174 >>> tree = ElementTree()
1175 >>> tree.parse("index.xhtml")
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001176 <Element 'html' at 0xb77e6fac>
Christian Heimesd8654cf2007-12-02 15:22:16 +00001177 >>> p = tree.find("body/p") # Finds first occurrence of tag p in body
1178 >>> p
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001179 <Element 'p' at 0xb77ec26c>
1180 >>> links = list(p.iter("a")) # Returns list of all links
Christian Heimesd8654cf2007-12-02 15:22:16 +00001181 >>> links
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001182 [<Element 'a' at 0xb77ec2ac>, <Element 'a' at 0xb77ec1cc>]
Christian Heimesd8654cf2007-12-02 15:22:16 +00001183 >>> for i in links: # Iterates through all found links
1184 ... i.attrib["target"] = "blank"
1185 >>> tree.write("output.xhtml")
Georg Brandl116aa622007-08-15 14:28:22 +00001186
1187.. _elementtree-qname-objects:
1188
1189QName Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001190^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001191
1192
Georg Brandl7f01a132009-09-16 15:58:14 +00001193.. class:: QName(text_or_uri, tag=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001194
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001195 QName wrapper. This can be used to wrap a QName attribute value, in order
1196 to get proper namespace handling on output. *text_or_uri* is a string
1197 containing the QName value, in the form {uri}local, or, if the tag argument
1198 is given, the URI part of a QName. If *tag* is given, the first argument is
Martin Panter6245cb32016-04-15 02:14:19 +00001199 interpreted as a URI, and this argument is interpreted as a local name.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001200 :class:`QName` instances are opaque.
Georg Brandl116aa622007-08-15 14:28:22 +00001201
1202
Antoine Pitrou5b235d02013-04-18 19:37:06 +02001203
Georg Brandl116aa622007-08-15 14:28:22 +00001204.. _elementtree-treebuilder-objects:
1205
1206TreeBuilder Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001207^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001208
1209
Stefan Behnel43851a22019-05-01 21:20:38 +02001210.. class:: TreeBuilder(element_factory=None, *, comment_factory=None, \
1211 pi_factory=None, insert_comments=False, insert_pis=False)
Georg Brandl116aa622007-08-15 14:28:22 +00001212
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001213 Generic element structure builder. This builder converts a sequence of
Stefan Behnel43851a22019-05-01 21:20:38 +02001214 start, data, end, comment and pi method calls to a well-formed element
1215 structure. You can use this class to build an element structure using
1216 a custom XML parser, or a parser for some other XML-like format.
1217
1218 *element_factory*, when given, must be a callable accepting two positional
1219 arguments: a tag and a dict of attributes. It is expected to return a new
1220 element instance.
1221
1222 The *comment_factory* and *pi_factory* functions, when given, should behave
1223 like the :func:`Comment` and :func:`ProcessingInstruction` functions to
1224 create comments and processing instructions. When not given, the default
1225 factories will be used. When *insert_comments* and/or *insert_pis* is true,
1226 comments/pis will be inserted into the tree if they appear within the root
1227 element (but not outside of it).
Georg Brandl116aa622007-08-15 14:28:22 +00001228
Benjamin Petersone41251e2008-04-25 01:59:09 +00001229 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00001230
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001231 Flushes the builder buffers, and returns the toplevel document
1232 element. Returns an :class:`Element` instance.
Georg Brandl116aa622007-08-15 14:28:22 +00001233
1234
Benjamin Petersone41251e2008-04-25 01:59:09 +00001235 .. method:: data(data)
Georg Brandl116aa622007-08-15 14:28:22 +00001236
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001237 Adds text to the current element. *data* is a string. This should be
1238 either a bytestring, or a Unicode string.
Georg Brandl116aa622007-08-15 14:28:22 +00001239
1240
Benjamin Petersone41251e2008-04-25 01:59:09 +00001241 .. method:: end(tag)
Georg Brandl116aa622007-08-15 14:28:22 +00001242
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001243 Closes the current element. *tag* is the element name. Returns the
1244 closed element.
Georg Brandl116aa622007-08-15 14:28:22 +00001245
1246
Benjamin Petersone41251e2008-04-25 01:59:09 +00001247 .. method:: start(tag, attrs)
Georg Brandl116aa622007-08-15 14:28:22 +00001248
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001249 Opens a new element. *tag* is the element name. *attrs* is a dictionary
1250 containing element attributes. Returns the opened element.
Georg Brandl116aa622007-08-15 14:28:22 +00001251
1252
Stefan Behnel43851a22019-05-01 21:20:38 +02001253 .. method:: comment(text)
1254
1255 Creates a comment with the given *text*. If ``insert_comments`` is true,
1256 this will also add it to the tree.
1257
1258 .. versionadded:: 3.8
1259
1260
1261 .. method:: pi(target, text)
1262
1263 Creates a comment with the given *target* name and *text*. If
1264 ``insert_pis`` is true, this will also add it to the tree.
1265
1266 .. versionadded:: 3.8
1267
1268
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001269 In addition, a custom :class:`TreeBuilder` object can provide the
Stefan Behneldde3eeb2019-05-01 21:49:58 +02001270 following methods:
Georg Brandl116aa622007-08-15 14:28:22 +00001271
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001272 .. method:: doctype(name, pubid, system)
1273
1274 Handles a doctype declaration. *name* is the doctype name. *pubid* is
1275 the public identifier. *system* is the system identifier. This method
1276 does not exist on the default :class:`TreeBuilder` class.
1277
Ezio Melottif8754a62010-03-21 07:16:43 +00001278 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +00001279
Stefan Behneldde3eeb2019-05-01 21:49:58 +02001280 .. method:: start_ns(prefix, uri)
1281
1282 Is called whenever the parser encounters a new namespace declaration,
1283 before the ``start()`` callback for the opening element that defines it.
1284 *prefix* is ``''`` for the default namespace and the declared
1285 namespace prefix name otherwise. *uri* is the namespace URI.
1286
1287 .. versionadded:: 3.8
1288
1289 .. method:: end_ns(prefix)
1290
1291 Is called after the ``end()`` callback of an element that declared
1292 a namespace prefix mapping, with the name of the *prefix* that went
1293 out of scope.
1294
1295 .. versionadded:: 3.8
1296
Georg Brandl116aa622007-08-15 14:28:22 +00001297
Stefan Behnele1d5dd62019-05-01 22:34:13 +02001298.. class:: C14NWriterTarget(write, *, \
1299 with_comments=False, strip_text=False, rewrite_prefixes=False, \
1300 qname_aware_tags=None, qname_aware_attrs=None, \
1301 exclude_attrs=None, exclude_tags=None)
1302
1303 A `C14N 2.0 <https://www.w3.org/TR/xml-c14n2/>`_ writer. Arguments are the
1304 same as for the :func:`canonicalize` function. This class does not build a
1305 tree but translates the callback events directly into a serialised form
1306 using the *write* function.
1307
1308 .. versionadded:: 3.8
1309
1310
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001311.. _elementtree-xmlparser-objects:
Georg Brandl116aa622007-08-15 14:28:22 +00001312
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001313XMLParser Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001314^^^^^^^^^^^^^^^^^
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001315
1316
Serhiy Storchaka02ec92f2018-07-24 12:03:34 +03001317.. class:: XMLParser(*, target=None, encoding=None)
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001318
Eli Benderskyb5869342013-08-30 05:51:20 -07001319 This class is the low-level building block of the module. It uses
1320 :mod:`xml.parsers.expat` for efficient, event-based parsing of XML. It can
Georg Brandladeffcc2016-02-26 19:13:47 +01001321 be fed XML data incrementally with the :meth:`feed` method, and parsing
1322 events are translated to a push API - by invoking callbacks on the *target*
1323 object. If *target* is omitted, the standard :class:`TreeBuilder` is used.
Serhiy Storchaka02ec92f2018-07-24 12:03:34 +03001324 If *encoding* [1]_ is given, the value overrides the
Georg Brandladeffcc2016-02-26 19:13:47 +01001325 encoding specified in the XML file.
Georg Brandl116aa622007-08-15 14:28:22 +00001326
Serhiy Storchaka02ec92f2018-07-24 12:03:34 +03001327 .. versionchanged:: 3.8
1328 Parameters are now :ref:`keyword-only <keyword-only_parameter>`.
1329 The *html* argument no longer supported.
1330
Georg Brandl116aa622007-08-15 14:28:22 +00001331
Benjamin Petersone41251e2008-04-25 01:59:09 +00001332 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00001333
Eli Benderskybfd78372013-08-24 15:11:44 -07001334 Finishes feeding data to the parser. Returns the result of calling the
Eli Benderskybf8ab772013-08-25 15:27:36 -07001335 ``close()`` method of the *target* passed during construction; by default,
1336 this is the toplevel document element.
Georg Brandl116aa622007-08-15 14:28:22 +00001337
1338
Benjamin Petersone41251e2008-04-25 01:59:09 +00001339 .. method:: feed(data)
Georg Brandl116aa622007-08-15 14:28:22 +00001340
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001341 Feeds data to the parser. *data* is encoded data.
Georg Brandl116aa622007-08-15 14:28:22 +00001342
Eli Benderskyb5869342013-08-30 05:51:20 -07001343 :meth:`XMLParser.feed` calls *target*\'s ``start(tag, attrs_dict)`` method
1344 for each opening tag, its ``end(tag)`` method for each closing tag, and data
Stefan Behneldde3eeb2019-05-01 21:49:58 +02001345 is processed by method ``data(data)``. For further supported callback
1346 methods, see the :class:`TreeBuilder` class. :meth:`XMLParser.close` calls
Eli Benderskyb5869342013-08-30 05:51:20 -07001347 *target*\'s method ``close()``. :class:`XMLParser` can be used not only for
1348 building a tree structure. This is an example of counting the maximum depth
1349 of an XML file::
Christian Heimesd8654cf2007-12-02 15:22:16 +00001350
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001351 >>> from xml.etree.ElementTree import XMLParser
Christian Heimesd8654cf2007-12-02 15:22:16 +00001352 >>> class MaxDepth: # The target object of the parser
1353 ... maxDepth = 0
1354 ... depth = 0
1355 ... def start(self, tag, attrib): # Called for each opening tag.
Georg Brandl48310cd2009-01-03 21:18:54 +00001356 ... self.depth += 1
Christian Heimesd8654cf2007-12-02 15:22:16 +00001357 ... if self.depth > self.maxDepth:
1358 ... self.maxDepth = self.depth
1359 ... def end(self, tag): # Called for each closing tag.
1360 ... self.depth -= 1
Georg Brandl48310cd2009-01-03 21:18:54 +00001361 ... def data(self, data):
Christian Heimesd8654cf2007-12-02 15:22:16 +00001362 ... pass # We do not need to do anything with data.
1363 ... def close(self): # Called when all data has been parsed.
1364 ... return self.maxDepth
Georg Brandl48310cd2009-01-03 21:18:54 +00001365 ...
Christian Heimesd8654cf2007-12-02 15:22:16 +00001366 >>> target = MaxDepth()
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001367 >>> parser = XMLParser(target=target)
Christian Heimesd8654cf2007-12-02 15:22:16 +00001368 >>> exampleXml = """
1369 ... <a>
1370 ... <b>
1371 ... </b>
1372 ... <b>
1373 ... <c>
1374 ... <d>
1375 ... </d>
1376 ... </c>
1377 ... </b>
1378 ... </a>"""
1379 >>> parser.feed(exampleXml)
1380 >>> parser.close()
1381 4
Christian Heimesb186d002008-03-18 15:15:01 +00001382
Eli Benderskyb5869342013-08-30 05:51:20 -07001383
1384.. _elementtree-xmlpullparser-objects:
1385
1386XMLPullParser Objects
1387^^^^^^^^^^^^^^^^^^^^^
1388
1389.. class:: XMLPullParser(events=None)
1390
Eli Bendersky2c68e302013-08-31 07:37:23 -07001391 A pull parser suitable for non-blocking applications. Its input-side API is
1392 similar to that of :class:`XMLParser`, but instead of pushing calls to a
1393 callback target, :class:`XMLPullParser` collects an internal list of parsing
1394 events and lets the user read from it. *events* is a sequence of events to
1395 report back. The supported events are the strings ``"start"``, ``"end"``,
Stefan Behnel43851a22019-05-01 21:20:38 +02001396 ``"comment"``, ``"pi"``, ``"start-ns"`` and ``"end-ns"`` (the "ns" events
1397 are used to get detailed namespace information). If *events* is omitted,
1398 only ``"end"`` events are reported.
Eli Benderskyb5869342013-08-30 05:51:20 -07001399
1400 .. method:: feed(data)
1401
1402 Feed the given bytes data to the parser.
1403
1404 .. method:: close()
1405
Nick Coghlan4cc2afa2013-09-28 23:50:35 +10001406 Signal the parser that the data stream is terminated. Unlike
1407 :meth:`XMLParser.close`, this method always returns :const:`None`.
1408 Any events not yet retrieved when the parser is closed can still be
1409 read with :meth:`read_events`.
Eli Benderskyb5869342013-08-30 05:51:20 -07001410
1411 .. method:: read_events()
1412
R David Murray410d3202014-01-04 23:52:50 -05001413 Return an iterator over the events which have been encountered in the
1414 data fed to the
1415 parser. The iterator yields ``(event, elem)`` pairs, where *event* is a
Eli Benderskyb5869342013-08-30 05:51:20 -07001416 string representing the type of event (e.g. ``"end"``) and *elem* is the
Stefan Behnel43851a22019-05-01 21:20:38 +02001417 encountered :class:`Element` object, or other context value as follows.
1418
1419 * ``start``, ``end``: the current Element.
1420 * ``comment``, ``pi``: the current comment / processing instruction
1421 * ``start-ns``: a tuple ``(prefix, uri)`` naming the declared namespace
1422 mapping.
1423 * ``end-ns``: :const:`None` (this may change in a future version)
Nick Coghlan4cc2afa2013-09-28 23:50:35 +10001424
1425 Events provided in a previous call to :meth:`read_events` will not be
R David Murray410d3202014-01-04 23:52:50 -05001426 yielded again. Events are consumed from the internal queue only when
1427 they are retrieved from the iterator, so multiple readers iterating in
1428 parallel over iterators obtained from :meth:`read_events` will have
1429 unpredictable results.
Eli Benderskyb5869342013-08-30 05:51:20 -07001430
1431 .. note::
1432
1433 :class:`XMLPullParser` only guarantees that it has seen the ">"
1434 character of a starting tag when it emits a "start" event, so the
1435 attributes are defined, but the contents of the text and tail attributes
1436 are undefined at that point. The same applies to the element children;
1437 they may or may not be present.
1438
1439 If you need a fully populated element, look for "end" events instead.
1440
1441 .. versionadded:: 3.4
1442
Stefan Behnel43851a22019-05-01 21:20:38 +02001443 .. versionchanged:: 3.8
1444 The ``comment`` and ``pi`` events were added.
1445
1446
Eli Bendersky5b77d812012-03-16 08:20:05 +02001447Exceptions
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001448^^^^^^^^^^
Eli Bendersky5b77d812012-03-16 08:20:05 +02001449
1450.. class:: ParseError
1451
1452 XML parse error, raised by the various parsing methods in this module when
1453 parsing fails. The string representation of an instance of this exception
1454 will contain a user-friendly error message. In addition, it will have
1455 the following attributes available:
1456
1457 .. attribute:: code
1458
1459 A numeric error code from the expat parser. See the documentation of
1460 :mod:`xml.parsers.expat` for the list of error codes and their meanings.
1461
1462 .. attribute:: position
1463
1464 A tuple of *line*, *column* numbers, specifying where the error occurred.
Christian Heimesb186d002008-03-18 15:15:01 +00001465
1466.. rubric:: Footnotes
1467
Serhiy Storchakad97b7dc2017-05-16 23:18:09 +03001468.. [1] The encoding string included in XML output should conform to the
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001469 appropriate standards. For example, "UTF-8" is valid, but "UTF8" is
Serhiy Storchaka6dff0202016-05-07 10:49:07 +03001470 not. See https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl
1471 and https://www.iana.org/assignments/character-sets/character-sets.xhtml.