blob: 99d7e8b7cebe14143cae941ef898892804f87725 [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
Serhiy Storchaka6dff0202016-05-07 10:49:07 +0300300<https://www.w3.org/TR/2006/REC-xml-names-20060816/#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
402Supported XPath syntax
403^^^^^^^^^^^^^^^^^^^^^^
404
Georg Brandl44ea77b2013-03-28 13:28:44 +0100405.. tabularcolumns:: |l|L|
406
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200407+-----------------------+------------------------------------------------------+
408| Syntax | Meaning |
409+=======================+======================================================+
410| ``tag`` | Selects all child elements with the given tag. |
411| | For example, ``spam`` selects all child elements |
Raymond Hettinger1e1e6012014-03-29 11:50:08 -0700412| | named ``spam``, and ``spam/egg`` selects all |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200413| | grandchildren named ``egg`` in all children named |
414| | ``spam``. |
415+-----------------------+------------------------------------------------------+
416| ``*`` | Selects all child elements. For example, ``*/egg`` |
417| | selects all grandchildren named ``egg``. |
418+-----------------------+------------------------------------------------------+
419| ``.`` | Selects the current node. This is mostly useful |
420| | at the beginning of the path, to indicate that it's |
421| | a relative path. |
422+-----------------------+------------------------------------------------------+
423| ``//`` | Selects all subelements, on all levels beneath the |
Eli Benderskyede001a2012-03-27 04:57:23 +0200424| | current element. For example, ``.//egg`` selects |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200425| | all ``egg`` elements in the entire tree. |
426+-----------------------+------------------------------------------------------+
Eli Bendersky323a43a2012-10-09 06:46:33 -0700427| ``..`` | Selects the parent element. Returns ``None`` if the |
428| | path attempts to reach the ancestors of the start |
429| | element (the element ``find`` was called on). |
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200430+-----------------------+------------------------------------------------------+
431| ``[@attrib]`` | Selects all elements that have the given attribute. |
432+-----------------------+------------------------------------------------------+
433| ``[@attrib='value']`` | Selects all elements for which the given attribute |
434| | has the given value. The value cannot contain |
435| | quotes. |
436+-----------------------+------------------------------------------------------+
437| ``[tag]`` | Selects all elements that have a child named |
438| | ``tag``. Only immediate children are supported. |
439+-----------------------+------------------------------------------------------+
Raymond Hettingerc43a6662015-03-30 20:29:28 -0700440| ``[tag='text']`` | Selects all elements that have a child named |
441| | ``tag`` whose complete text content, including |
442| | descendants, equals the given ``text``. |
Raymond Hettingerf6e31b72015-03-22 15:29:09 -0700443+-----------------------+------------------------------------------------------+
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200444| ``[position]`` | Selects all elements that are located at the given |
445| | position. The position can be either an integer |
446| | (1 is the first position), the expression ``last()`` |
447| | (for the last position), or a position relative to |
448| | the last position (e.g. ``last()-1``). |
449+-----------------------+------------------------------------------------------+
450
451Predicates (expressions within square brackets) must be preceded by a tag
452name, an asterisk, or another predicate. ``position`` predicates must be
453preceded by a tag name.
454
455Reference
456---------
457
Georg Brandl116aa622007-08-15 14:28:22 +0000458.. _elementtree-functions:
459
460Functions
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200461^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000462
463
Georg Brandl7f01a132009-09-16 15:58:14 +0000464.. function:: Comment(text=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000465
Georg Brandlf6945182008-02-01 11:56:49 +0000466 Comment element factory. This factory function creates a special element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000467 that will be serialized as an XML comment by the standard serializer. The
468 comment string can be either a bytestring or a Unicode string. *text* is a
469 string containing the comment string. Returns an element instance
Georg Brandlf6945182008-02-01 11:56:49 +0000470 representing a comment.
Georg Brandl116aa622007-08-15 14:28:22 +0000471
Eli Bendersky0bd22d42014-04-03 06:14:38 -0700472 Note that :class:`XMLParser` skips over comments in the input
473 instead of creating comment objects for them. An :class:`ElementTree` will
474 only contain comment nodes if they have been inserted into to
475 the tree using one of the :class:`Element` methods.
Georg Brandl116aa622007-08-15 14:28:22 +0000476
477.. function:: dump(elem)
478
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000479 Writes an element tree or element structure to sys.stdout. This function
480 should be used for debugging only.
Georg Brandl116aa622007-08-15 14:28:22 +0000481
482 The exact output format is implementation dependent. In this version, it's
483 written as an ordinary XML file.
484
485 *elem* is an element tree or an individual element.
486
487
Georg Brandl116aa622007-08-15 14:28:22 +0000488.. function:: fromstring(text)
489
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000490 Parses an XML section from a string constant. Same as :func:`XML`. *text*
491 is a string containing XML data. Returns an :class:`Element` instance.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000492
493
494.. function:: fromstringlist(sequence, parser=None)
495
496 Parses an XML document from a sequence of string fragments. *sequence* is a
497 list or other sequence containing XML data fragments. *parser* is an
498 optional parser instance. If not given, the standard :class:`XMLParser`
499 parser is used. Returns an :class:`Element` instance.
500
Ezio Melottif8754a62010-03-21 07:16:43 +0000501 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000502
503
504.. function:: iselement(element)
505
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000506 Checks if an object appears to be a valid element object. *element* is an
507 element instance. Returns a true value if this is an element object.
Georg Brandl116aa622007-08-15 14:28:22 +0000508
509
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000510.. function:: iterparse(source, events=None, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000511
512 Parses an XML section into an element tree incrementally, and reports what's
Eli Bendersky604c4ff2012-03-16 08:41:30 +0200513 going on to the user. *source* is a filename or :term:`file object`
Eli Benderskyfb625442013-05-19 09:09:24 -0700514 containing XML data. *events* is a sequence of events to report back. The
Eli Benderskyb5869342013-08-30 05:51:20 -0700515 supported events are the strings ``"start"``, ``"end"``, ``"start-ns"`` and
516 ``"end-ns"`` (the "ns" events are used to get detailed namespace
Eli Bendersky604c4ff2012-03-16 08:41:30 +0200517 information). If *events* is omitted, only ``"end"`` events are reported.
518 *parser* is an optional parser instance. If not given, the standard
Eli Benderskyb5869342013-08-30 05:51:20 -0700519 :class:`XMLParser` parser is used. *parser* must be a subclass of
520 :class:`XMLParser` and can only use the default :class:`TreeBuilder` as a
521 target. Returns an :term:`iterator` providing ``(event, elem)`` pairs.
Georg Brandl116aa622007-08-15 14:28:22 +0000522
Eli Benderskyab2a76c2013-04-20 05:53:50 -0700523 Note that while :func:`iterparse` builds the tree incrementally, it issues
524 blocking reads on *source* (or the file it names). As such, it's unsuitable
Eli Bendersky2c68e302013-08-31 07:37:23 -0700525 for applications where blocking reads can't be made. For fully non-blocking
526 parsing, see :class:`XMLPullParser`.
Eli Benderskyab2a76c2013-04-20 05:53:50 -0700527
Benjamin Peterson75edad02009-01-01 15:05:06 +0000528 .. note::
529
Eli Benderskyb5869342013-08-30 05:51:20 -0700530 :func:`iterparse` only guarantees that it has seen the ">" character of a
531 starting tag when it emits a "start" event, so the attributes are defined,
532 but the contents of the text and tail attributes are undefined at that
533 point. The same applies to the element children; they may or may not be
534 present.
Benjamin Peterson75edad02009-01-01 15:05:06 +0000535
536 If you need a fully populated element, look for "end" events instead.
537
Eli Benderskyb5869342013-08-30 05:51:20 -0700538 .. deprecated:: 3.4
539 The *parser* argument.
540
Georg Brandl7f01a132009-09-16 15:58:14 +0000541.. function:: parse(source, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000542
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000543 Parses an XML section into an element tree. *source* is a filename or file
544 object containing XML data. *parser* is an optional parser instance. If
545 not given, the standard :class:`XMLParser` parser is used. Returns an
546 :class:`ElementTree` instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000547
548
Georg Brandl7f01a132009-09-16 15:58:14 +0000549.. function:: ProcessingInstruction(target, text=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000550
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000551 PI element factory. This factory function creates a special element that
552 will be serialized as an XML processing instruction. *target* is a string
553 containing the PI target. *text* is a string containing the PI contents, if
554 given. Returns an element instance, representing a processing instruction.
555
Eli Bendersky0bd22d42014-04-03 06:14:38 -0700556 Note that :class:`XMLParser` skips over processing instructions
557 in the input instead of creating comment objects for them. An
558 :class:`ElementTree` will only contain processing instruction nodes if
559 they have been inserted into to the tree using one of the
560 :class:`Element` methods.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000561
562.. function:: register_namespace(prefix, uri)
563
564 Registers a namespace prefix. The registry is global, and any existing
565 mapping for either the given prefix or the namespace URI will be removed.
566 *prefix* is a namespace prefix. *uri* is a namespace uri. Tags and
567 attributes in this namespace will be serialized with the given prefix, if at
568 all possible.
569
Ezio Melottif8754a62010-03-21 07:16:43 +0000570 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000571
572
Georg Brandl7f01a132009-09-16 15:58:14 +0000573.. function:: SubElement(parent, tag, attrib={}, **extra)
Georg Brandl116aa622007-08-15 14:28:22 +0000574
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000575 Subelement factory. This function creates an element instance, and appends
576 it to an existing element.
Georg Brandl116aa622007-08-15 14:28:22 +0000577
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000578 The element name, attribute names, and attribute values can be either
579 bytestrings or Unicode strings. *parent* is the parent element. *tag* is
580 the subelement name. *attrib* is an optional dictionary, containing element
581 attributes. *extra* contains additional attributes, given as keyword
582 arguments. Returns an element instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000583
584
Serhiy Storchaka9e189f02013-01-13 22:24:27 +0200585.. function:: tostring(element, encoding="us-ascii", method="xml", *, \
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800586 short_empty_elements=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000587
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000588 Generates a string representation of an XML element, including all
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000589 subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is
Florent Xiclunac17f1722010-08-08 19:48:29 +0000590 the output encoding (default is US-ASCII). Use ``encoding="unicode"`` to
Eli Bendersky831893a2012-10-09 07:18:16 -0700591 generate a Unicode string (otherwise, a bytestring is generated). *method*
592 is either ``"xml"``, ``"html"`` or ``"text"`` (default is ``"xml"``).
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800593 *short_empty_elements* has the same meaning as in :meth:`ElementTree.write`.
Eli Bendersky831893a2012-10-09 07:18:16 -0700594 Returns an (optionally) encoded string containing the XML data.
Georg Brandl116aa622007-08-15 14:28:22 +0000595
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800596 .. versionadded:: 3.4
597 The *short_empty_elements* parameter.
Georg Brandl116aa622007-08-15 14:28:22 +0000598
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800599
Serhiy Storchaka9e189f02013-01-13 22:24:27 +0200600.. function:: tostringlist(element, encoding="us-ascii", method="xml", *, \
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800601 short_empty_elements=True)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000602
603 Generates a string representation of an XML element, including all
Florent Xiclunadddd5e92010-03-14 01:28:07 +0000604 subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is
Florent Xiclunac17f1722010-08-08 19:48:29 +0000605 the output encoding (default is US-ASCII). Use ``encoding="unicode"`` to
Eli Bendersky831893a2012-10-09 07:18:16 -0700606 generate a Unicode string (otherwise, a bytestring is generated). *method*
607 is either ``"xml"``, ``"html"`` or ``"text"`` (default is ``"xml"``).
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800608 *short_empty_elements* has the same meaning as in :meth:`ElementTree.write`.
Eli Bendersky831893a2012-10-09 07:18:16 -0700609 Returns a list of (optionally) encoded strings containing the XML data.
610 It does not guarantee any specific sequence, except that
Serhiy Storchaka5e028ae2014-02-06 21:10:41 +0200611 ``b"".join(tostringlist(element)) == tostring(element)``.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000612
Ezio Melottif8754a62010-03-21 07:16:43 +0000613 .. versionadded:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000614
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800615 .. versionadded:: 3.4
616 The *short_empty_elements* parameter.
617
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000618
619.. function:: XML(text, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000620
621 Parses an XML section from a string constant. This function can be used to
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000622 embed "XML literals" in Python code. *text* is a string containing XML
623 data. *parser* is an optional parser instance. If not given, the standard
624 :class:`XMLParser` parser is used. Returns an :class:`Element` instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000625
626
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000627.. function:: XMLID(text, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000628
629 Parses an XML section from a string constant, and also returns a dictionary
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000630 which maps from element id:s to elements. *text* is a string containing XML
631 data. *parser* is an optional parser instance. If not given, the standard
632 :class:`XMLParser` parser is used. Returns a tuple containing an
633 :class:`Element` instance and a dictionary.
Georg Brandl116aa622007-08-15 14:28:22 +0000634
635
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000636.. _elementtree-element-objects:
Georg Brandl116aa622007-08-15 14:28:22 +0000637
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000638Element Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200639^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000640
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000641.. class:: Element(tag, attrib={}, **extra)
Georg Brandl116aa622007-08-15 14:28:22 +0000642
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000643 Element class. This class defines the Element interface, and provides a
644 reference implementation of this interface.
Georg Brandl116aa622007-08-15 14:28:22 +0000645
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000646 The element name, attribute names, and attribute values can be either
647 bytestrings or Unicode strings. *tag* is the element name. *attrib* is
648 an optional dictionary, containing element attributes. *extra* contains
649 additional attributes, given as keyword arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000650
651
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000652 .. attribute:: tag
Georg Brandl116aa622007-08-15 14:28:22 +0000653
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000654 A string identifying what kind of data this element represents (the
655 element type, in other words).
Georg Brandl116aa622007-08-15 14:28:22 +0000656
657
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000658 .. attribute:: text
Ned Deilyeca04452015-08-17 22:11:17 -0400659 tail
Georg Brandl116aa622007-08-15 14:28:22 +0000660
Ned Deilyeca04452015-08-17 22:11:17 -0400661 These attributes can be used to hold additional data associated with
662 the element. Their values are usually strings but may be any
663 application-specific object. If the element is created from
664 an XML file, the *text* attribute holds either the text between
665 the element's start tag and its first child or end tag, or ``None``, and
666 the *tail* attribute holds either the text between the element's
667 end tag and the next tag, or ``None``. For the XML data
Georg Brandl116aa622007-08-15 14:28:22 +0000668
Ned Deilyeca04452015-08-17 22:11:17 -0400669 .. code-block:: xml
Georg Brandl116aa622007-08-15 14:28:22 +0000670
Ned Deilyeca04452015-08-17 22:11:17 -0400671 <a><b>1<c>2<d/>3</c></b>4</a>
Georg Brandl116aa622007-08-15 14:28:22 +0000672
Ned Deilyeca04452015-08-17 22:11:17 -0400673 the *a* element has ``None`` for both *text* and *tail* attributes,
674 the *b* element has *text* ``"1"`` and *tail* ``"4"``,
675 the *c* element has *text* ``"2"`` and *tail* ``None``,
676 and the *d* element has *text* ``None`` and *tail* ``"3"``.
677
678 To collect the inner text of an element, see :meth:`itertext`, for
679 example ``"".join(element.itertext())``.
680
681 Applications may store arbitrary objects in these attributes.
Georg Brandl116aa622007-08-15 14:28:22 +0000682
Georg Brandl116aa622007-08-15 14:28:22 +0000683
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000684 .. attribute:: attrib
Georg Brandl116aa622007-08-15 14:28:22 +0000685
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000686 A dictionary containing the element's attributes. Note that while the
687 *attrib* value is always a real mutable Python dictionary, an ElementTree
688 implementation may choose to use another internal representation, and
689 create the dictionary only if someone asks for it. To take advantage of
690 such implementations, use the dictionary methods below whenever possible.
Georg Brandl116aa622007-08-15 14:28:22 +0000691
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000692 The following dictionary-like methods work on the element attributes.
Georg Brandl116aa622007-08-15 14:28:22 +0000693
694
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000695 .. method:: clear()
Georg Brandl116aa622007-08-15 14:28:22 +0000696
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000697 Resets an element. This function removes all subelements, clears all
Eli Bendersky323a43a2012-10-09 06:46:33 -0700698 attributes, and sets the text and tail attributes to ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000699
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000700
701 .. method:: get(key, default=None)
702
703 Gets the element attribute named *key*.
704
705 Returns the attribute value, or *default* if the attribute was not found.
706
707
708 .. method:: items()
709
710 Returns the element attributes as a sequence of (name, value) pairs. The
711 attributes are returned in an arbitrary order.
712
713
714 .. method:: keys()
715
716 Returns the elements attribute names as a list. The names are returned
717 in an arbitrary order.
718
719
720 .. method:: set(key, value)
721
722 Set the attribute *key* on the element to *value*.
723
724 The following methods work on the element's children (subelements).
725
726
727 .. method:: append(subelement)
728
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200729 Adds the element *subelement* to the end of this element's internal list
730 of subelements. Raises :exc:`TypeError` if *subelement* is not an
731 :class:`Element`.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000732
733
734 .. method:: extend(subelements)
Georg Brandl116aa622007-08-15 14:28:22 +0000735
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000736 Appends *subelements* from a sequence object with zero or more elements.
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200737 Raises :exc:`TypeError` if a subelement is not an :class:`Element`.
Georg Brandl116aa622007-08-15 14:28:22 +0000738
Ezio Melottif8754a62010-03-21 07:16:43 +0000739 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000740
Georg Brandl116aa622007-08-15 14:28:22 +0000741
Eli Bendersky737b1732012-05-29 06:02:56 +0300742 .. method:: find(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000743
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000744 Finds the first subelement matching *match*. *match* may be a tag name
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200745 or a :ref:`path <elementtree-xpath>`. Returns an element instance
Eli Bendersky737b1732012-05-29 06:02:56 +0300746 or ``None``. *namespaces* is an optional mapping from namespace prefix
747 to full name.
Georg Brandl116aa622007-08-15 14:28:22 +0000748
Georg Brandl116aa622007-08-15 14:28:22 +0000749
Eli Bendersky737b1732012-05-29 06:02:56 +0300750 .. method:: findall(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000751
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200752 Finds all matching subelements, by tag name or
753 :ref:`path <elementtree-xpath>`. Returns a list containing all matching
Eli Bendersky737b1732012-05-29 06:02:56 +0300754 elements in document order. *namespaces* is an optional mapping from
755 namespace prefix to full name.
Georg Brandl116aa622007-08-15 14:28:22 +0000756
Georg Brandl116aa622007-08-15 14:28:22 +0000757
Eli Bendersky737b1732012-05-29 06:02:56 +0300758 .. method:: findtext(match, default=None, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000759
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000760 Finds text for the first subelement matching *match*. *match* may be
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200761 a tag name or a :ref:`path <elementtree-xpath>`. Returns the text content
762 of the first matching element, or *default* if no element was found.
763 Note that if the matching element has no text content an empty string
Eli Bendersky737b1732012-05-29 06:02:56 +0300764 is returned. *namespaces* is an optional mapping from namespace prefix
765 to full name.
Georg Brandl116aa622007-08-15 14:28:22 +0000766
Georg Brandl116aa622007-08-15 14:28:22 +0000767
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000768 .. method:: getchildren()
Georg Brandl116aa622007-08-15 14:28:22 +0000769
Georg Brandl67b21b72010-08-17 15:07:14 +0000770 .. deprecated:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000771 Use ``list(elem)`` or iteration.
Georg Brandl116aa622007-08-15 14:28:22 +0000772
Georg Brandl116aa622007-08-15 14:28:22 +0000773
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000774 .. method:: getiterator(tag=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000775
Georg Brandl67b21b72010-08-17 15:07:14 +0000776 .. deprecated:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000777 Use method :meth:`Element.iter` instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000778
Georg Brandl116aa622007-08-15 14:28:22 +0000779
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200780 .. method:: insert(index, subelement)
Georg Brandl116aa622007-08-15 14:28:22 +0000781
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200782 Inserts *subelement* at the given position in this element. Raises
783 :exc:`TypeError` if *subelement* is not an :class:`Element`.
Georg Brandl116aa622007-08-15 14:28:22 +0000784
Georg Brandl116aa622007-08-15 14:28:22 +0000785
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000786 .. method:: iter(tag=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000787
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000788 Creates a tree :term:`iterator` with the current element as the root.
789 The iterator iterates over this element and all elements below it, in
790 document (depth first) order. If *tag* is not ``None`` or ``'*'``, only
791 elements whose tag equals *tag* are returned from the iterator. If the
792 tree structure is modified during iteration, the result is undefined.
Georg Brandl116aa622007-08-15 14:28:22 +0000793
Ezio Melotti138fc892011-10-10 00:02:03 +0300794 .. versionadded:: 3.2
795
Georg Brandl116aa622007-08-15 14:28:22 +0000796
Eli Bendersky737b1732012-05-29 06:02:56 +0300797 .. method:: iterfind(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000798
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200799 Finds all matching subelements, by tag name or
800 :ref:`path <elementtree-xpath>`. Returns an iterable yielding all
Eli Bendersky737b1732012-05-29 06:02:56 +0300801 matching elements in document order. *namespaces* is an optional mapping
802 from namespace prefix to full name.
803
Georg Brandl116aa622007-08-15 14:28:22 +0000804
Ezio Melottif8754a62010-03-21 07:16:43 +0000805 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000806
Georg Brandl116aa622007-08-15 14:28:22 +0000807
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000808 .. method:: itertext()
Georg Brandl116aa622007-08-15 14:28:22 +0000809
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000810 Creates a text iterator. The iterator loops over this element and all
811 subelements, in document order, and returns all inner text.
Georg Brandl116aa622007-08-15 14:28:22 +0000812
Ezio Melottif8754a62010-03-21 07:16:43 +0000813 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +0000814
815
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000816 .. method:: makeelement(tag, attrib)
Georg Brandl116aa622007-08-15 14:28:22 +0000817
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000818 Creates a new element object of the same type as this element. Do not
819 call this method, use the :func:`SubElement` factory function instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000820
821
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000822 .. method:: remove(subelement)
Georg Brandl116aa622007-08-15 14:28:22 +0000823
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000824 Removes *subelement* from the element. Unlike the find\* methods this
825 method compares elements based on the instance identity, not on tag value
826 or contents.
Georg Brandl116aa622007-08-15 14:28:22 +0000827
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000828 :class:`Element` objects also support the following sequence type methods
Serhiy Storchaka15e65902013-08-29 10:28:44 +0300829 for working with subelements: :meth:`~object.__delitem__`,
830 :meth:`~object.__getitem__`, :meth:`~object.__setitem__`,
831 :meth:`~object.__len__`.
Georg Brandl116aa622007-08-15 14:28:22 +0000832
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000833 Caution: Elements with no subelements will test as ``False``. This behavior
834 will change in future versions. Use specific ``len(elem)`` or ``elem is
835 None`` test instead. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000836
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000837 element = root.find('foo')
Georg Brandl116aa622007-08-15 14:28:22 +0000838
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000839 if not element: # careful!
840 print("element not found, or element has no subelements")
Georg Brandl116aa622007-08-15 14:28:22 +0000841
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000842 if element is None:
843 print("element not found")
Georg Brandl116aa622007-08-15 14:28:22 +0000844
845
846.. _elementtree-elementtree-objects:
847
848ElementTree Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200849^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000850
851
Georg Brandl7f01a132009-09-16 15:58:14 +0000852.. class:: ElementTree(element=None, file=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000853
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000854 ElementTree wrapper class. This class represents an entire element
855 hierarchy, and adds some extra support for serialization to and from
856 standard XML.
Georg Brandl116aa622007-08-15 14:28:22 +0000857
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000858 *element* is the root element. The tree is initialized with the contents
859 of the XML *file* if given.
Georg Brandl116aa622007-08-15 14:28:22 +0000860
861
Benjamin Petersone41251e2008-04-25 01:59:09 +0000862 .. method:: _setroot(element)
Georg Brandl116aa622007-08-15 14:28:22 +0000863
Benjamin Petersone41251e2008-04-25 01:59:09 +0000864 Replaces the root element for this tree. This discards the current
865 contents of the tree, and replaces it with the given element. Use with
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000866 care. *element* is an element instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000867
868
Eli Bendersky737b1732012-05-29 06:02:56 +0300869 .. method:: find(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000870
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200871 Same as :meth:`Element.find`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +0000872
873
Eli Bendersky737b1732012-05-29 06:02:56 +0300874 .. method:: findall(match, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000875
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200876 Same as :meth:`Element.findall`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +0000877
878
Eli Bendersky737b1732012-05-29 06:02:56 +0300879 .. method:: findtext(match, default=None, namespaces=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000880
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200881 Same as :meth:`Element.findtext`, starting at the root of the tree.
Georg Brandl116aa622007-08-15 14:28:22 +0000882
883
Georg Brandl7f01a132009-09-16 15:58:14 +0000884 .. method:: getiterator(tag=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000885
Georg Brandl67b21b72010-08-17 15:07:14 +0000886 .. deprecated:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000887 Use method :meth:`ElementTree.iter` instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000888
889
Benjamin Petersone41251e2008-04-25 01:59:09 +0000890 .. method:: getroot()
Florent Xiclunac17f1722010-08-08 19:48:29 +0000891
Benjamin Petersone41251e2008-04-25 01:59:09 +0000892 Returns the root element for this tree.
Georg Brandl116aa622007-08-15 14:28:22 +0000893
894
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000895 .. method:: iter(tag=None)
896
897 Creates and returns a tree iterator for the root element. The iterator
898 loops over all elements in this tree, in section order. *tag* is the tag
Martin Panterd21e0b52015-10-10 10:36:22 +0000899 to look for (default is to return all elements).
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000900
901
Eli Bendersky737b1732012-05-29 06:02:56 +0300902 .. method:: iterfind(match, namespaces=None)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000903
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200904 Same as :meth:`Element.iterfind`, starting at the root of the tree.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000905
Ezio Melottif8754a62010-03-21 07:16:43 +0000906 .. versionadded:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000907
908
Georg Brandl7f01a132009-09-16 15:58:14 +0000909 .. method:: parse(source, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000910
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000911 Loads an external XML section into this element tree. *source* is a file
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000912 name or :term:`file object`. *parser* is an optional parser instance.
Eli Bendersky52467b12012-06-01 07:13:08 +0300913 If not given, the standard :class:`XMLParser` parser is used. Returns the
914 section root element.
Georg Brandl116aa622007-08-15 14:28:22 +0000915
916
Eli Benderskyf96cf912012-07-15 06:19:44 +0300917 .. method:: write(file, encoding="us-ascii", xml_declaration=None, \
Serhiy Storchaka9e189f02013-01-13 22:24:27 +0200918 default_namespace=None, method="xml", *, \
Eli Benderskye9af8272013-01-13 06:27:51 -0800919 short_empty_elements=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000920
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000921 Writes the element tree to a file, as XML. *file* is a file name, or a
Eli Benderskyf96cf912012-07-15 06:19:44 +0300922 :term:`file object` opened for writing. *encoding* [1]_ is the output
923 encoding (default is US-ASCII).
924 *xml_declaration* controls if an XML declaration should be added to the
925 file. Use ``False`` for never, ``True`` for always, ``None``
926 for only if not US-ASCII or UTF-8 or Unicode (default is ``None``).
Serhiy Storchaka03530b92013-01-13 21:58:04 +0200927 *default_namespace* sets the default XML namespace (for "xmlns").
Eli Benderskyf96cf912012-07-15 06:19:44 +0300928 *method* is either ``"xml"``, ``"html"`` or ``"text"`` (default is
929 ``"xml"``).
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800930 The keyword-only *short_empty_elements* parameter controls the formatting
931 of elements that contain no content. If *True* (the default), they are
932 emitted as a single self-closed tag, otherwise they are emitted as a pair
933 of start/end tags.
Eli Benderskyf96cf912012-07-15 06:19:44 +0300934
935 The output is either a string (:class:`str`) or binary (:class:`bytes`).
936 This is controlled by the *encoding* argument. If *encoding* is
937 ``"unicode"``, the output is a string; otherwise, it's binary. Note that
938 this may conflict with the type of *file* if it's an open
939 :term:`file object`; make sure you do not try to write a string to a
940 binary stream and vice versa.
941
R David Murray575fb312013-12-25 23:21:03 -0500942 .. versionadded:: 3.4
943 The *short_empty_elements* parameter.
Eli Benderskya9a2ef52013-01-13 06:04:43 -0800944
Georg Brandl116aa622007-08-15 14:28:22 +0000945
Christian Heimesd8654cf2007-12-02 15:22:16 +0000946This is the XML file that is going to be manipulated::
947
948 <html>
949 <head>
950 <title>Example page</title>
951 </head>
952 <body>
Georg Brandl48310cd2009-01-03 21:18:54 +0000953 <p>Moved to <a href="http://example.org/">example.org</a>
Christian Heimesd8654cf2007-12-02 15:22:16 +0000954 or <a href="http://example.com/">example.com</a>.</p>
955 </body>
956 </html>
957
958Example of changing the attribute "target" of every link in first paragraph::
959
960 >>> from xml.etree.ElementTree import ElementTree
961 >>> tree = ElementTree()
962 >>> tree.parse("index.xhtml")
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000963 <Element 'html' at 0xb77e6fac>
Christian Heimesd8654cf2007-12-02 15:22:16 +0000964 >>> p = tree.find("body/p") # Finds first occurrence of tag p in body
965 >>> p
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000966 <Element 'p' at 0xb77ec26c>
967 >>> links = list(p.iter("a")) # Returns list of all links
Christian Heimesd8654cf2007-12-02 15:22:16 +0000968 >>> links
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000969 [<Element 'a' at 0xb77ec2ac>, <Element 'a' at 0xb77ec1cc>]
Christian Heimesd8654cf2007-12-02 15:22:16 +0000970 >>> for i in links: # Iterates through all found links
971 ... i.attrib["target"] = "blank"
972 >>> tree.write("output.xhtml")
Georg Brandl116aa622007-08-15 14:28:22 +0000973
974.. _elementtree-qname-objects:
975
976QName Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200977^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000978
979
Georg Brandl7f01a132009-09-16 15:58:14 +0000980.. class:: QName(text_or_uri, tag=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000981
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000982 QName wrapper. This can be used to wrap a QName attribute value, in order
983 to get proper namespace handling on output. *text_or_uri* is a string
984 containing the QName value, in the form {uri}local, or, if the tag argument
985 is given, the URI part of a QName. If *tag* is given, the first argument is
Martin Panter6245cb32016-04-15 02:14:19 +0000986 interpreted as a URI, and this argument is interpreted as a local name.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000987 :class:`QName` instances are opaque.
Georg Brandl116aa622007-08-15 14:28:22 +0000988
989
Antoine Pitrou5b235d02013-04-18 19:37:06 +0200990
Georg Brandl116aa622007-08-15 14:28:22 +0000991.. _elementtree-treebuilder-objects:
992
993TreeBuilder Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +0200994^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000995
996
Georg Brandl7f01a132009-09-16 15:58:14 +0000997.. class:: TreeBuilder(element_factory=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000998
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000999 Generic element structure builder. This builder converts a sequence of
1000 start, data, and end method calls to a well-formed element structure. You
1001 can use this class to build an element structure using a custom XML parser,
Eli Bendersky48d358b2012-05-30 17:57:50 +03001002 or a parser for some other XML-like format. *element_factory*, when given,
1003 must be a callable accepting two positional arguments: a tag and
1004 a dict of attributes. It is expected to return a new element instance.
Georg Brandl116aa622007-08-15 14:28:22 +00001005
Benjamin Petersone41251e2008-04-25 01:59:09 +00001006 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00001007
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001008 Flushes the builder buffers, and returns the toplevel document
1009 element. Returns an :class:`Element` instance.
Georg Brandl116aa622007-08-15 14:28:22 +00001010
1011
Benjamin Petersone41251e2008-04-25 01:59:09 +00001012 .. method:: data(data)
Georg Brandl116aa622007-08-15 14:28:22 +00001013
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001014 Adds text to the current element. *data* is a string. This should be
1015 either a bytestring, or a Unicode string.
Georg Brandl116aa622007-08-15 14:28:22 +00001016
1017
Benjamin Petersone41251e2008-04-25 01:59:09 +00001018 .. method:: end(tag)
Georg Brandl116aa622007-08-15 14:28:22 +00001019
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001020 Closes the current element. *tag* is the element name. Returns the
1021 closed element.
Georg Brandl116aa622007-08-15 14:28:22 +00001022
1023
Benjamin Petersone41251e2008-04-25 01:59:09 +00001024 .. method:: start(tag, attrs)
Georg Brandl116aa622007-08-15 14:28:22 +00001025
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001026 Opens a new element. *tag* is the element name. *attrs* is a dictionary
1027 containing element attributes. Returns the opened element.
Georg Brandl116aa622007-08-15 14:28:22 +00001028
1029
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001030 In addition, a custom :class:`TreeBuilder` object can provide the
1031 following method:
Georg Brandl116aa622007-08-15 14:28:22 +00001032
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001033 .. method:: doctype(name, pubid, system)
1034
1035 Handles a doctype declaration. *name* is the doctype name. *pubid* is
1036 the public identifier. *system* is the system identifier. This method
1037 does not exist on the default :class:`TreeBuilder` class.
1038
Ezio Melottif8754a62010-03-21 07:16:43 +00001039 .. versionadded:: 3.2
Georg Brandl116aa622007-08-15 14:28:22 +00001040
1041
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001042.. _elementtree-xmlparser-objects:
Georg Brandl116aa622007-08-15 14:28:22 +00001043
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001044XMLParser Objects
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001045^^^^^^^^^^^^^^^^^
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001046
1047
1048.. class:: XMLParser(html=0, target=None, encoding=None)
1049
Eli Benderskyb5869342013-08-30 05:51:20 -07001050 This class is the low-level building block of the module. It uses
1051 :mod:`xml.parsers.expat` for efficient, event-based parsing of XML. It can
Georg Brandladeffcc2016-02-26 19:13:47 +01001052 be fed XML data incrementally with the :meth:`feed` method, and parsing
1053 events are translated to a push API - by invoking callbacks on the *target*
1054 object. If *target* is omitted, the standard :class:`TreeBuilder` is used.
1055 The *html* argument was historically used for backwards compatibility and is
1056 now deprecated. If *encoding* [1]_ is given, the value overrides the
1057 encoding specified in the XML file.
Georg Brandl116aa622007-08-15 14:28:22 +00001058
Eli Benderskyb5869342013-08-30 05:51:20 -07001059 .. deprecated:: 3.4
Larry Hastings3732ed22014-03-15 21:13:56 -07001060 The *html* argument. The remaining arguments should be passed via
Georg Brandladeffcc2016-02-26 19:13:47 +01001061 keyword to prepare for the removal of the *html* argument.
Georg Brandl116aa622007-08-15 14:28:22 +00001062
Benjamin Petersone41251e2008-04-25 01:59:09 +00001063 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00001064
Eli Benderskybfd78372013-08-24 15:11:44 -07001065 Finishes feeding data to the parser. Returns the result of calling the
Eli Benderskybf8ab772013-08-25 15:27:36 -07001066 ``close()`` method of the *target* passed during construction; by default,
1067 this is the toplevel document element.
Georg Brandl116aa622007-08-15 14:28:22 +00001068
1069
Benjamin Petersone41251e2008-04-25 01:59:09 +00001070 .. method:: doctype(name, pubid, system)
Georg Brandl116aa622007-08-15 14:28:22 +00001071
Georg Brandl67b21b72010-08-17 15:07:14 +00001072 .. deprecated:: 3.2
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001073 Define the :meth:`TreeBuilder.doctype` method on a custom TreeBuilder
1074 target.
Georg Brandl116aa622007-08-15 14:28:22 +00001075
1076
Benjamin Petersone41251e2008-04-25 01:59:09 +00001077 .. method:: feed(data)
Georg Brandl116aa622007-08-15 14:28:22 +00001078
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001079 Feeds data to the parser. *data* is encoded data.
Georg Brandl116aa622007-08-15 14:28:22 +00001080
Eli Benderskyb5869342013-08-30 05:51:20 -07001081 :meth:`XMLParser.feed` calls *target*\'s ``start(tag, attrs_dict)`` method
1082 for each opening tag, its ``end(tag)`` method for each closing tag, and data
1083 is processed by method ``data(data)``. :meth:`XMLParser.close` calls
1084 *target*\'s method ``close()``. :class:`XMLParser` can be used not only for
1085 building a tree structure. This is an example of counting the maximum depth
1086 of an XML file::
Christian Heimesd8654cf2007-12-02 15:22:16 +00001087
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001088 >>> from xml.etree.ElementTree import XMLParser
Christian Heimesd8654cf2007-12-02 15:22:16 +00001089 >>> class MaxDepth: # The target object of the parser
1090 ... maxDepth = 0
1091 ... depth = 0
1092 ... def start(self, tag, attrib): # Called for each opening tag.
Georg Brandl48310cd2009-01-03 21:18:54 +00001093 ... self.depth += 1
Christian Heimesd8654cf2007-12-02 15:22:16 +00001094 ... if self.depth > self.maxDepth:
1095 ... self.maxDepth = self.depth
1096 ... def end(self, tag): # Called for each closing tag.
1097 ... self.depth -= 1
Georg Brandl48310cd2009-01-03 21:18:54 +00001098 ... def data(self, data):
Christian Heimesd8654cf2007-12-02 15:22:16 +00001099 ... pass # We do not need to do anything with data.
1100 ... def close(self): # Called when all data has been parsed.
1101 ... return self.maxDepth
Georg Brandl48310cd2009-01-03 21:18:54 +00001102 ...
Christian Heimesd8654cf2007-12-02 15:22:16 +00001103 >>> target = MaxDepth()
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001104 >>> parser = XMLParser(target=target)
Christian Heimesd8654cf2007-12-02 15:22:16 +00001105 >>> exampleXml = """
1106 ... <a>
1107 ... <b>
1108 ... </b>
1109 ... <b>
1110 ... <c>
1111 ... <d>
1112 ... </d>
1113 ... </c>
1114 ... </b>
1115 ... </a>"""
1116 >>> parser.feed(exampleXml)
1117 >>> parser.close()
1118 4
Christian Heimesb186d002008-03-18 15:15:01 +00001119
Eli Benderskyb5869342013-08-30 05:51:20 -07001120
1121.. _elementtree-xmlpullparser-objects:
1122
1123XMLPullParser Objects
1124^^^^^^^^^^^^^^^^^^^^^
1125
1126.. class:: XMLPullParser(events=None)
1127
Eli Bendersky2c68e302013-08-31 07:37:23 -07001128 A pull parser suitable for non-blocking applications. Its input-side API is
1129 similar to that of :class:`XMLParser`, but instead of pushing calls to a
1130 callback target, :class:`XMLPullParser` collects an internal list of parsing
1131 events and lets the user read from it. *events* is a sequence of events to
1132 report back. The supported events are the strings ``"start"``, ``"end"``,
1133 ``"start-ns"`` and ``"end-ns"`` (the "ns" events are used to get detailed
1134 namespace information). If *events* is omitted, only ``"end"`` events are
1135 reported.
Eli Benderskyb5869342013-08-30 05:51:20 -07001136
1137 .. method:: feed(data)
1138
1139 Feed the given bytes data to the parser.
1140
1141 .. method:: close()
1142
Nick Coghlan4cc2afa2013-09-28 23:50:35 +10001143 Signal the parser that the data stream is terminated. Unlike
1144 :meth:`XMLParser.close`, this method always returns :const:`None`.
1145 Any events not yet retrieved when the parser is closed can still be
1146 read with :meth:`read_events`.
Eli Benderskyb5869342013-08-30 05:51:20 -07001147
1148 .. method:: read_events()
1149
R David Murray410d3202014-01-04 23:52:50 -05001150 Return an iterator over the events which have been encountered in the
1151 data fed to the
1152 parser. The iterator yields ``(event, elem)`` pairs, where *event* is a
Eli Benderskyb5869342013-08-30 05:51:20 -07001153 string representing the type of event (e.g. ``"end"``) and *elem* is the
Nick Coghlan4cc2afa2013-09-28 23:50:35 +10001154 encountered :class:`Element` object.
1155
1156 Events provided in a previous call to :meth:`read_events` will not be
R David Murray410d3202014-01-04 23:52:50 -05001157 yielded again. Events are consumed from the internal queue only when
1158 they are retrieved from the iterator, so multiple readers iterating in
1159 parallel over iterators obtained from :meth:`read_events` will have
1160 unpredictable results.
Eli Benderskyb5869342013-08-30 05:51:20 -07001161
1162 .. note::
1163
1164 :class:`XMLPullParser` only guarantees that it has seen the ">"
1165 character of a starting tag when it emits a "start" event, so the
1166 attributes are defined, but the contents of the text and tail attributes
1167 are undefined at that point. The same applies to the element children;
1168 they may or may not be present.
1169
1170 If you need a fully populated element, look for "end" events instead.
1171
1172 .. versionadded:: 3.4
1173
Eli Bendersky5b77d812012-03-16 08:20:05 +02001174Exceptions
Eli Bendersky3a4875e2012-03-26 20:43:32 +02001175^^^^^^^^^^
Eli Bendersky5b77d812012-03-16 08:20:05 +02001176
1177.. class:: ParseError
1178
1179 XML parse error, raised by the various parsing methods in this module when
1180 parsing fails. The string representation of an instance of this exception
1181 will contain a user-friendly error message. In addition, it will have
1182 the following attributes available:
1183
1184 .. attribute:: code
1185
1186 A numeric error code from the expat parser. See the documentation of
1187 :mod:`xml.parsers.expat` for the list of error codes and their meanings.
1188
1189 .. attribute:: position
1190
1191 A tuple of *line*, *column* numbers, specifying where the error occurred.
Christian Heimesb186d002008-03-18 15:15:01 +00001192
1193.. rubric:: Footnotes
1194
1195.. [#] The encoding string included in XML output should conform to the
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001196 appropriate standards. For example, "UTF-8" is valid, but "UTF8" is
Serhiy Storchaka6dff0202016-05-07 10:49:07 +03001197 not. See https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl
1198 and https://www.iana.org/assignments/character-sets/character-sets.xhtml.