Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`xml.etree.ElementTree` --- The ElementTree XML API |
| 2 | ======================================================== |
| 3 | |
| 4 | .. module:: xml.etree.ElementTree |
| 5 | :synopsis: Implementation of the ElementTree API. |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 6 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | .. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com> |
| 8 | |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 9 | **Source code:** :source:`Lib/xml/etree/ElementTree.py` |
| 10 | |
| 11 | -------------- |
| 12 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 13 | The :mod:`xml.etree.ElementTree` module implements a simple and efficient API |
| 14 | for parsing and creating XML data. |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 15 | |
Florent Xicluna | a72a98f | 2012-02-13 11:03:30 +0100 | [diff] [blame] | 16 | .. versionchanged:: 3.3 |
| 17 | This module will use a fast implementation whenever available. |
Miss Islington (bot) | 3b97d1b | 2020-06-10 09:01:25 -0700 | [diff] [blame] | 18 | |
| 19 | .. deprecated:: 3.3 |
Florent Xicluna | a72a98f | 2012-02-13 11:03:30 +0100 | [diff] [blame] | 20 | The :mod:`xml.etree.cElementTree` module is deprecated. |
| 21 | |
Christian Heimes | 7380a67 | 2013-03-26 17:35:55 +0100 | [diff] [blame] | 22 | |
| 23 | .. warning:: |
| 24 | |
| 25 | The :mod:`xml.etree.ElementTree` module is not secure against |
| 26 | maliciously constructed data. If you need to parse untrusted or |
| 27 | unauthenticated data see :ref:`xml-vulnerabilities`. |
| 28 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 29 | Tutorial |
| 30 | -------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 31 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 32 | This is a short tutorial for using :mod:`xml.etree.ElementTree` (``ET`` in |
| 33 | short). The goal is to demonstrate some of the building blocks and basic |
| 34 | concepts of the module. |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 35 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 36 | XML tree and elements |
| 37 | ^^^^^^^^^^^^^^^^^^^^^ |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 38 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 39 | XML is an inherently hierarchical data format, and the most natural way to |
| 40 | represent it is with a tree. ``ET`` has two classes for this purpose - |
| 41 | :class:`ElementTree` represents the whole XML document as a tree, and |
| 42 | :class:`Element` represents a single node in this tree. Interactions with |
| 43 | the whole document (reading and writing to/from files) are usually done |
| 44 | on the :class:`ElementTree` level. Interactions with a single XML element |
| 45 | and its sub-elements are done on the :class:`Element` level. |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 46 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 47 | .. _elementtree-parsing-xml: |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 48 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 49 | Parsing XML |
| 50 | ^^^^^^^^^^^ |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 51 | |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 52 | We'll be using the following XML document as the sample data for this section: |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 53 | |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 54 | .. code-block:: xml |
| 55 | |
| 56 | <?xml version="1.0"?> |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 57 | <data> |
Eli Bendersky | 3115f0d | 2012-08-15 14:26:30 +0300 | [diff] [blame] | 58 | <country name="Liechtenstein"> |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 59 | <rank>1</rank> |
| 60 | <year>2008</year> |
| 61 | <gdppc>141100</gdppc> |
| 62 | <neighbor name="Austria" direction="E"/> |
| 63 | <neighbor name="Switzerland" direction="W"/> |
| 64 | </country> |
| 65 | <country name="Singapore"> |
| 66 | <rank>4</rank> |
| 67 | <year>2011</year> |
| 68 | <gdppc>59900</gdppc> |
| 69 | <neighbor name="Malaysia" direction="N"/> |
| 70 | </country> |
| 71 | <country name="Panama"> |
| 72 | <rank>68</rank> |
| 73 | <year>2011</year> |
| 74 | <gdppc>13600</gdppc> |
| 75 | <neighbor name="Costa Rica" direction="W"/> |
| 76 | <neighbor name="Colombia" direction="E"/> |
| 77 | </country> |
| 78 | </data> |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 79 | |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 80 | We can import this data by reading from a file:: |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 81 | |
| 82 | import xml.etree.ElementTree as ET |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 83 | tree = ET.parse('country_data.xml') |
| 84 | root = tree.getroot() |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 85 | |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 86 | Or directly from a string:: |
| 87 | |
| 88 | root = ET.fromstring(country_data_as_string) |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 89 | |
| 90 | :func:`fromstring` parses XML from a string directly into an :class:`Element`, |
| 91 | which is the root element of the parsed tree. Other parsing functions may |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 92 | create an :class:`ElementTree`. Check the documentation to be sure. |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 93 | |
| 94 | As an :class:`Element`, ``root`` has a tag and a dictionary of attributes:: |
| 95 | |
| 96 | >>> root.tag |
| 97 | 'data' |
| 98 | >>> root.attrib |
| 99 | {} |
| 100 | |
| 101 | It also has children nodes over which we can iterate:: |
| 102 | |
| 103 | >>> for child in root: |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 104 | ... print(child.tag, child.attrib) |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 105 | ... |
Eli Bendersky | 3115f0d | 2012-08-15 14:26:30 +0300 | [diff] [blame] | 106 | country {'name': 'Liechtenstein'} |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 107 | country {'name': 'Singapore'} |
| 108 | country {'name': 'Panama'} |
| 109 | |
| 110 | Children are nested, and we can access specific child nodes by index:: |
| 111 | |
| 112 | >>> root[0][1].text |
| 113 | '2008' |
| 114 | |
R David Murray | 410d320 | 2014-01-04 23:52:50 -0500 | [diff] [blame] | 115 | |
Eli Bendersky | 0bd22d4 | 2014-04-03 06:14:38 -0700 | [diff] [blame] | 116 | .. note:: |
| 117 | |
| 118 | Not all elements of the XML input will end up as elements of the |
| 119 | parsed tree. Currently, this module skips over any XML comments, |
| 120 | processing instructions, and document type declarations in the |
| 121 | input. Nevertheless, trees built using this module's API rather |
| 122 | than parsing from XML text can have comments and processing |
| 123 | instructions in them; they will be included when generating XML |
| 124 | output. A document type declaration may be accessed by passing a |
| 125 | custom :class:`TreeBuilder` instance to the :class:`XMLParser` |
| 126 | constructor. |
| 127 | |
| 128 | |
R David Murray | 410d320 | 2014-01-04 23:52:50 -0500 | [diff] [blame] | 129 | .. _elementtree-pull-parsing: |
| 130 | |
Eli Bendersky | 2c68e30 | 2013-08-31 07:37:23 -0700 | [diff] [blame] | 131 | Pull API for non-blocking parsing |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 132 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Eli Bendersky | 3bdead1 | 2013-04-20 09:06:27 -0700 | [diff] [blame] | 133 | |
R David Murray | 410d320 | 2014-01-04 23:52:50 -0500 | [diff] [blame] | 134 | Most parsing functions provided by this module require the whole document |
| 135 | to be read at once before returning any result. It is possible to use an |
| 136 | :class:`XMLParser` and feed data into it incrementally, but it is a push API that |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 137 | calls methods on a callback target, which is too low-level and inconvenient for |
| 138 | most needs. Sometimes what the user really wants is to be able to parse XML |
| 139 | incrementally, without blocking operations, while enjoying the convenience of |
| 140 | fully constructed :class:`Element` objects. |
Eli Bendersky | 3bdead1 | 2013-04-20 09:06:27 -0700 | [diff] [blame] | 141 | |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 142 | The most powerful tool for doing this is :class:`XMLPullParser`. It does not |
| 143 | require a blocking read to obtain the XML data, and is instead fed with data |
| 144 | incrementally with :meth:`XMLPullParser.feed` calls. To get the parsed XML |
R David Murray | 410d320 | 2014-01-04 23:52:50 -0500 | [diff] [blame] | 145 | elements, call :meth:`XMLPullParser.read_events`. Here is an example:: |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 146 | |
Eli Bendersky | 2c68e30 | 2013-08-31 07:37:23 -0700 | [diff] [blame] | 147 | >>> parser = ET.XMLPullParser(['start', 'end']) |
| 148 | >>> parser.feed('<mytag>sometext') |
| 149 | >>> list(parser.read_events()) |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 150 | [('start', <Element 'mytag' at 0x7fa66db2be58>)] |
Eli Bendersky | 2c68e30 | 2013-08-31 07:37:23 -0700 | [diff] [blame] | 151 | >>> parser.feed(' more text</mytag>') |
| 152 | >>> for event, elem in parser.read_events(): |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 153 | ... print(event) |
| 154 | ... print(elem.tag, 'text=', elem.text) |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 155 | ... |
| 156 | end |
Eli Bendersky | 3bdead1 | 2013-04-20 09:06:27 -0700 | [diff] [blame] | 157 | |
Eli Bendersky | 2c68e30 | 2013-08-31 07:37:23 -0700 | [diff] [blame] | 158 | The obvious use case is applications that operate in a non-blocking fashion |
Eli Bendersky | 3bdead1 | 2013-04-20 09:06:27 -0700 | [diff] [blame] | 159 | where the XML data is being received from a socket or read incrementally from |
| 160 | some storage device. In such cases, blocking reads are unacceptable. |
| 161 | |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 162 | Because it's so flexible, :class:`XMLPullParser` can be inconvenient to use for |
| 163 | simpler use-cases. If you don't mind your application blocking on reading XML |
| 164 | data but would still like to have incremental parsing capabilities, take a look |
| 165 | at :func:`iterparse`. It can be useful when you're reading a large XML document |
| 166 | and don't want to hold it wholly in memory. |
Eli Bendersky | 3bdead1 | 2013-04-20 09:06:27 -0700 | [diff] [blame] | 167 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 168 | Finding interesting elements |
| 169 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 170 | |
| 171 | :class:`Element` has some useful methods that help iterate recursively over all |
| 172 | the sub-tree below it (its children, their children, and so on). For example, |
| 173 | :meth:`Element.iter`:: |
| 174 | |
| 175 | >>> for neighbor in root.iter('neighbor'): |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 176 | ... print(neighbor.attrib) |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 177 | ... |
| 178 | {'name': 'Austria', 'direction': 'E'} |
| 179 | {'name': 'Switzerland', 'direction': 'W'} |
| 180 | {'name': 'Malaysia', 'direction': 'N'} |
| 181 | {'name': 'Costa Rica', 'direction': 'W'} |
| 182 | {'name': 'Colombia', 'direction': 'E'} |
| 183 | |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 184 | :meth:`Element.findall` finds only elements with a tag which are direct |
| 185 | children of the current element. :meth:`Element.find` finds the *first* child |
Georg Brandl | bdaee3a | 2013-10-06 09:23:03 +0200 | [diff] [blame] | 186 | with a particular tag, and :attr:`Element.text` accesses the element's text |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 187 | content. :meth:`Element.get` accesses the element's attributes:: |
| 188 | |
| 189 | >>> for country in root.findall('country'): |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 190 | ... rank = country.find('rank').text |
| 191 | ... name = country.get('name') |
| 192 | ... print(name, rank) |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 193 | ... |
Eli Bendersky | 3115f0d | 2012-08-15 14:26:30 +0300 | [diff] [blame] | 194 | Liechtenstein 1 |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 195 | Singapore 4 |
| 196 | Panama 68 |
| 197 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 198 | More sophisticated specification of which elements to look for is possible by |
| 199 | using :ref:`XPath <elementtree-xpath>`. |
| 200 | |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 201 | Modifying an XML File |
| 202 | ^^^^^^^^^^^^^^^^^^^^^ |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 203 | |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 204 | :class:`ElementTree` provides a simple way to build XML documents and write them to files. |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 205 | The :meth:`ElementTree.write` method serves this purpose. |
| 206 | |
| 207 | Once created, an :class:`Element` object may be manipulated by directly changing |
| 208 | its fields (such as :attr:`Element.text`), adding and modifying attributes |
| 209 | (:meth:`Element.set` method), as well as adding new children (for example |
| 210 | with :meth:`Element.append`). |
| 211 | |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 212 | Let's say we want to add one to each country's rank, and add an ``updated`` |
| 213 | attribute to the rank element:: |
| 214 | |
| 215 | >>> for rank in root.iter('rank'): |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 216 | ... new_rank = int(rank.text) + 1 |
| 217 | ... rank.text = str(new_rank) |
| 218 | ... rank.set('updated', 'yes') |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 219 | ... |
Eli Bendersky | a1b0f6d | 2012-08-18 05:42:22 +0300 | [diff] [blame] | 220 | >>> tree.write('output.xml') |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 221 | |
| 222 | Our XML now looks like this: |
| 223 | |
| 224 | .. code-block:: xml |
| 225 | |
| 226 | <?xml version="1.0"?> |
| 227 | <data> |
Eli Bendersky | 3115f0d | 2012-08-15 14:26:30 +0300 | [diff] [blame] | 228 | <country name="Liechtenstein"> |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 229 | <rank updated="yes">2</rank> |
| 230 | <year>2008</year> |
| 231 | <gdppc>141100</gdppc> |
| 232 | <neighbor name="Austria" direction="E"/> |
| 233 | <neighbor name="Switzerland" direction="W"/> |
| 234 | </country> |
| 235 | <country name="Singapore"> |
| 236 | <rank updated="yes">5</rank> |
| 237 | <year>2011</year> |
| 238 | <gdppc>59900</gdppc> |
| 239 | <neighbor name="Malaysia" direction="N"/> |
| 240 | </country> |
| 241 | <country name="Panama"> |
| 242 | <rank updated="yes">69</rank> |
| 243 | <year>2011</year> |
| 244 | <gdppc>13600</gdppc> |
| 245 | <neighbor name="Costa Rica" direction="W"/> |
| 246 | <neighbor name="Colombia" direction="E"/> |
| 247 | </country> |
| 248 | </data> |
| 249 | |
| 250 | We can remove elements using :meth:`Element.remove`. Let's say we want to |
| 251 | remove all countries with a rank higher than 50:: |
| 252 | |
| 253 | >>> for country in root.findall('country'): |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 254 | ... rank = int(country.find('rank').text) |
| 255 | ... if rank > 50: |
| 256 | ... root.remove(country) |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 257 | ... |
Eli Bendersky | a1b0f6d | 2012-08-18 05:42:22 +0300 | [diff] [blame] | 258 | >>> tree.write('output.xml') |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 259 | |
| 260 | Our XML now looks like this: |
| 261 | |
| 262 | .. code-block:: xml |
| 263 | |
| 264 | <?xml version="1.0"?> |
| 265 | <data> |
Eli Bendersky | 3115f0d | 2012-08-15 14:26:30 +0300 | [diff] [blame] | 266 | <country name="Liechtenstein"> |
Eli Bendersky | 0f4e934 | 2012-08-14 07:19:33 +0300 | [diff] [blame] | 267 | <rank updated="yes">2</rank> |
| 268 | <year>2008</year> |
| 269 | <gdppc>141100</gdppc> |
| 270 | <neighbor name="Austria" direction="E"/> |
| 271 | <neighbor name="Switzerland" direction="W"/> |
| 272 | </country> |
| 273 | <country name="Singapore"> |
| 274 | <rank updated="yes">5</rank> |
| 275 | <year>2011</year> |
| 276 | <gdppc>59900</gdppc> |
| 277 | <neighbor name="Malaysia" direction="N"/> |
| 278 | </country> |
| 279 | </data> |
| 280 | |
| 281 | Building XML documents |
| 282 | ^^^^^^^^^^^^^^^^^^^^^^ |
| 283 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 284 | The :func:`SubElement` function also provides a convenient way to create new |
| 285 | sub-elements for a given element:: |
| 286 | |
| 287 | >>> a = ET.Element('a') |
| 288 | >>> b = ET.SubElement(a, 'b') |
| 289 | >>> c = ET.SubElement(a, 'c') |
| 290 | >>> d = ET.SubElement(c, 'd') |
| 291 | >>> ET.dump(a) |
| 292 | <a><b /><c><d /></c></a> |
| 293 | |
Raymond Hettinger | f6e31b7 | 2015-03-22 15:29:09 -0700 | [diff] [blame] | 294 | Parsing XML with Namespaces |
| 295 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 296 | |
| 297 | If the XML input has `namespaces |
| 298 | <https://en.wikipedia.org/wiki/XML_namespace>`__, tags and attributes |
| 299 | with prefixes in the form ``prefix:sometag`` get expanded to |
Raymond Hettinger | c43a666 | 2015-03-30 20:29:28 -0700 | [diff] [blame] | 300 | ``{uri}sometag`` where the *prefix* is replaced by the full *URI*. |
| 301 | Also, if there is a `default namespace |
sblondon | 8d1f2f4 | 2018-02-10 23:39:43 +0100 | [diff] [blame] | 302 | <https://www.w3.org/TR/xml-names/#defaulting>`__, |
Raymond Hettinger | f6e31b7 | 2015-03-22 15:29:09 -0700 | [diff] [blame] | 303 | that full URI gets prepended to all of the non-prefixed tags. |
| 304 | |
| 305 | Here is an XML example that incorporates two namespaces, one with the |
| 306 | prefix "fictional" and the other serving as the default namespace: |
| 307 | |
| 308 | .. code-block:: xml |
| 309 | |
| 310 | <?xml version="1.0"?> |
| 311 | <actors xmlns:fictional="http://characters.example.com" |
| 312 | xmlns="http://people.example.com"> |
| 313 | <actor> |
| 314 | <name>John Cleese</name> |
| 315 | <fictional:character>Lancelot</fictional:character> |
| 316 | <fictional:character>Archie Leach</fictional:character> |
| 317 | </actor> |
| 318 | <actor> |
| 319 | <name>Eric Idle</name> |
| 320 | <fictional:character>Sir Robin</fictional:character> |
| 321 | <fictional:character>Gunther</fictional:character> |
| 322 | <fictional:character>Commander Clement</fictional:character> |
| 323 | </actor> |
| 324 | </actors> |
| 325 | |
| 326 | One way to search and explore this XML example is to manually add the |
Raymond Hettinger | c43a666 | 2015-03-30 20:29:28 -0700 | [diff] [blame] | 327 | URI to every tag or attribute in the xpath of a |
| 328 | :meth:`~Element.find` or :meth:`~Element.findall`:: |
Raymond Hettinger | f6e31b7 | 2015-03-22 15:29:09 -0700 | [diff] [blame] | 329 | |
Raymond Hettinger | c43a666 | 2015-03-30 20:29:28 -0700 | [diff] [blame] | 330 | root = fromstring(xml_text) |
Raymond Hettinger | f6e31b7 | 2015-03-22 15:29:09 -0700 | [diff] [blame] | 331 | for actor in root.findall('{http://people.example.com}actor'): |
| 332 | name = actor.find('{http://people.example.com}name') |
| 333 | print(name.text) |
| 334 | for char in actor.findall('{http://characters.example.com}character'): |
| 335 | print(' |-->', char.text) |
| 336 | |
Raymond Hettinger | c43a666 | 2015-03-30 20:29:28 -0700 | [diff] [blame] | 337 | A better way to search the namespaced XML example is to create a |
| 338 | dictionary with your own prefixes and use those in the search functions:: |
Raymond Hettinger | f6e31b7 | 2015-03-22 15:29:09 -0700 | [diff] [blame] | 339 | |
| 340 | ns = {'real_person': 'http://people.example.com', |
| 341 | 'role': 'http://characters.example.com'} |
| 342 | |
| 343 | for actor in root.findall('real_person:actor', ns): |
| 344 | name = actor.find('real_person:name', ns) |
| 345 | print(name.text) |
| 346 | for char in actor.findall('role:character', ns): |
| 347 | print(' |-->', char.text) |
| 348 | |
| 349 | These two approaches both output:: |
| 350 | |
| 351 | John Cleese |
| 352 | |--> Lancelot |
| 353 | |--> Archie Leach |
| 354 | Eric Idle |
| 355 | |--> Sir Robin |
| 356 | |--> Gunther |
| 357 | |--> Commander Clement |
| 358 | |
| 359 | |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 360 | Additional resources |
| 361 | ^^^^^^^^^^^^^^^^^^^^ |
| 362 | |
| 363 | See http://effbot.org/zone/element-index.htm for tutorials and links to other |
| 364 | docs. |
| 365 | |
| 366 | |
| 367 | .. _elementtree-xpath: |
| 368 | |
| 369 | XPath support |
| 370 | ------------- |
| 371 | |
| 372 | This module provides limited support for |
Serhiy Storchaka | 6dff020 | 2016-05-07 10:49:07 +0300 | [diff] [blame] | 373 | `XPath expressions <https://www.w3.org/TR/xpath>`_ for locating elements in a |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 374 | tree. The goal is to support a small subset of the abbreviated syntax; a full |
| 375 | XPath engine is outside the scope of the module. |
| 376 | |
| 377 | Example |
| 378 | ^^^^^^^ |
| 379 | |
| 380 | Here's an example that demonstrates some of the XPath capabilities of the |
| 381 | module. We'll be using the ``countrydata`` XML document from the |
| 382 | :ref:`Parsing XML <elementtree-parsing-xml>` section:: |
| 383 | |
| 384 | import xml.etree.ElementTree as ET |
| 385 | |
| 386 | root = ET.fromstring(countrydata) |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 387 | |
| 388 | # Top-level elements |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 389 | root.findall(".") |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 390 | |
| 391 | # All 'neighbor' grand-children of 'country' children of the top-level |
| 392 | # elements |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 393 | root.findall("./country/neighbor") |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 394 | |
| 395 | # Nodes with name='Singapore' that have a 'year' child |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 396 | root.findall(".//year/..[@name='Singapore']") |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 397 | |
| 398 | # 'year' nodes that are children of nodes with name='Singapore' |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 399 | root.findall(".//*[@name='Singapore']/year") |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 400 | |
| 401 | # All 'neighbor' nodes that are the second child of their parent |
Eli Bendersky | c1d9869 | 2012-03-30 11:44:15 +0300 | [diff] [blame] | 402 | root.findall(".//neighbor[2]") |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 403 | |
Stefan Behnel | 4754168 | 2019-05-03 20:58:16 +0200 | [diff] [blame] | 404 | For XML with namespaces, use the usual qualified ``{namespace}tag`` notation:: |
| 405 | |
| 406 | # All dublin-core "title" tags in the document |
| 407 | root.findall(".//{http://purl.org/dc/elements/1.1/}title") |
| 408 | |
| 409 | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 410 | Supported XPath syntax |
| 411 | ^^^^^^^^^^^^^^^^^^^^^^ |
| 412 | |
Georg Brandl | 44ea77b | 2013-03-28 13:28:44 +0100 | [diff] [blame] | 413 | .. tabularcolumns:: |l|L| |
| 414 | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 415 | +-----------------------+------------------------------------------------------+ |
| 416 | | Syntax | Meaning | |
| 417 | +=======================+======================================================+ |
| 418 | | ``tag`` | Selects all child elements with the given tag. | |
| 419 | | | For example, ``spam`` selects all child elements | |
Raymond Hettinger | 1e1e601 | 2014-03-29 11:50:08 -0700 | [diff] [blame] | 420 | | | named ``spam``, and ``spam/egg`` selects all | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 421 | | | grandchildren named ``egg`` in all children named | |
Stefan Behnel | 4754168 | 2019-05-03 20:58:16 +0200 | [diff] [blame] | 422 | | | ``spam``. ``{namespace}*`` selects all tags in the | |
| 423 | | | given namespace, ``{*}spam`` selects tags named | |
| 424 | | | ``spam`` in any (or no) namespace, and ``{}*`` | |
| 425 | | | only selects tags that are not in a namespace. | |
| 426 | | | | |
| 427 | | | .. versionchanged:: 3.8 | |
| 428 | | | Support for star-wildcards was added. | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 429 | +-----------------------+------------------------------------------------------+ |
Stefan Behnel | 4754168 | 2019-05-03 20:58:16 +0200 | [diff] [blame] | 430 | | ``*`` | Selects all child elements, including comments and | |
| 431 | | | processing instructions. For example, ``*/egg`` | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 432 | | | selects all grandchildren named ``egg``. | |
| 433 | +-----------------------+------------------------------------------------------+ |
| 434 | | ``.`` | Selects the current node. This is mostly useful | |
| 435 | | | at the beginning of the path, to indicate that it's | |
| 436 | | | a relative path. | |
| 437 | +-----------------------+------------------------------------------------------+ |
| 438 | | ``//`` | Selects all subelements, on all levels beneath the | |
Eli Bendersky | ede001a | 2012-03-27 04:57:23 +0200 | [diff] [blame] | 439 | | | current element. For example, ``.//egg`` selects | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 440 | | | all ``egg`` elements in the entire tree. | |
| 441 | +-----------------------+------------------------------------------------------+ |
Eli Bendersky | 323a43a | 2012-10-09 06:46:33 -0700 | [diff] [blame] | 442 | | ``..`` | Selects the parent element. Returns ``None`` if the | |
| 443 | | | path attempts to reach the ancestors of the start | |
| 444 | | | element (the element ``find`` was called on). | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 445 | +-----------------------+------------------------------------------------------+ |
| 446 | | ``[@attrib]`` | Selects all elements that have the given attribute. | |
| 447 | +-----------------------+------------------------------------------------------+ |
| 448 | | ``[@attrib='value']`` | Selects all elements for which the given attribute | |
| 449 | | | has the given value. The value cannot contain | |
| 450 | | | quotes. | |
| 451 | +-----------------------+------------------------------------------------------+ |
| 452 | | ``[tag]`` | Selects all elements that have a child named | |
| 453 | | | ``tag``. Only immediate children are supported. | |
| 454 | +-----------------------+------------------------------------------------------+ |
scoder | 101a5e8 | 2017-09-30 15:35:21 +0200 | [diff] [blame] | 455 | | ``[.='text']`` | Selects all elements whose complete text content, | |
| 456 | | | including descendants, equals the given ``text``. | |
| 457 | | | | |
| 458 | | | .. versionadded:: 3.7 | |
| 459 | +-----------------------+------------------------------------------------------+ |
Raymond Hettinger | c43a666 | 2015-03-30 20:29:28 -0700 | [diff] [blame] | 460 | | ``[tag='text']`` | Selects all elements that have a child named | |
| 461 | | | ``tag`` whose complete text content, including | |
| 462 | | | descendants, equals the given ``text``. | |
Raymond Hettinger | f6e31b7 | 2015-03-22 15:29:09 -0700 | [diff] [blame] | 463 | +-----------------------+------------------------------------------------------+ |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 464 | | ``[position]`` | Selects all elements that are located at the given | |
| 465 | | | position. The position can be either an integer | |
| 466 | | | (1 is the first position), the expression ``last()`` | |
| 467 | | | (for the last position), or a position relative to | |
| 468 | | | the last position (e.g. ``last()-1``). | |
| 469 | +-----------------------+------------------------------------------------------+ |
| 470 | |
| 471 | Predicates (expressions within square brackets) must be preceded by a tag |
| 472 | name, an asterisk, or another predicate. ``position`` predicates must be |
| 473 | preceded by a tag name. |
| 474 | |
| 475 | Reference |
| 476 | --------- |
| 477 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 478 | .. _elementtree-functions: |
| 479 | |
| 480 | Functions |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 481 | ^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 482 | |
Stefan Behnel | e1d5dd6 | 2019-05-01 22:34:13 +0200 | [diff] [blame] | 483 | .. function:: canonicalize(xml_data=None, *, out=None, from_file=None, **options) |
| 484 | |
| 485 | `C14N 2.0 <https://www.w3.org/TR/xml-c14n2/>`_ transformation function. |
| 486 | |
| 487 | Canonicalization is a way to normalise XML output in a way that allows |
| 488 | byte-by-byte comparisons and digital signatures. It reduced the freedom |
| 489 | that XML serializers have and instead generates a more constrained XML |
| 490 | representation. The main restrictions regard the placement of namespace |
| 491 | declarations, the ordering of attributes, and ignorable whitespace. |
| 492 | |
| 493 | This function takes an XML data string (*xml_data*) or a file path or |
| 494 | file-like object (*from_file*) as input, converts it to the canonical |
| 495 | form, and writes it out using the *out* file(-like) object, if provided, |
| 496 | or returns it as a text string if not. The output file receives text, |
| 497 | not bytes. It should therefore be opened in text mode with ``utf-8`` |
| 498 | encoding. |
| 499 | |
| 500 | Typical uses:: |
| 501 | |
| 502 | xml_data = "<root>...</root>" |
| 503 | print(canonicalize(xml_data)) |
| 504 | |
| 505 | with open("c14n_output.xml", mode='w', encoding='utf-8') as out_file: |
| 506 | canonicalize(xml_data, out=out_file) |
| 507 | |
| 508 | with open("c14n_output.xml", mode='w', encoding='utf-8') as out_file: |
| 509 | canonicalize(from_file="inputfile.xml", out=out_file) |
| 510 | |
| 511 | The configuration *options* are as follows: |
| 512 | |
| 513 | - *with_comments*: set to true to include comments (default: false) |
| 514 | - *strip_text*: set to true to strip whitespace before and after text content |
| 515 | (default: false) |
| 516 | - *rewrite_prefixes*: set to true to replace namespace prefixes by "n{number}" |
| 517 | (default: false) |
| 518 | - *qname_aware_tags*: a set of qname aware tag names in which prefixes |
| 519 | should be replaced in text content (default: empty) |
| 520 | - *qname_aware_attrs*: a set of qname aware attribute names in which prefixes |
| 521 | should be replaced in text content (default: empty) |
| 522 | - *exclude_attrs*: a set of attribute names that should not be serialised |
| 523 | - *exclude_tags*: a set of tag names that should not be serialised |
| 524 | |
| 525 | In the option list above, "a set" refers to any collection or iterable of |
| 526 | strings, no ordering is expected. |
| 527 | |
| 528 | .. versionadded:: 3.8 |
| 529 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 530 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 531 | .. function:: Comment(text=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 532 | |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 533 | Comment element factory. This factory function creates a special element |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 534 | that will be serialized as an XML comment by the standard serializer. The |
| 535 | comment string can be either a bytestring or a Unicode string. *text* is a |
| 536 | string containing the comment string. Returns an element instance |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 537 | representing a comment. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 538 | |
Eli Bendersky | 0bd22d4 | 2014-04-03 06:14:38 -0700 | [diff] [blame] | 539 | Note that :class:`XMLParser` skips over comments in the input |
| 540 | instead of creating comment objects for them. An :class:`ElementTree` will |
| 541 | only contain comment nodes if they have been inserted into to |
| 542 | the tree using one of the :class:`Element` methods. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 543 | |
| 544 | .. function:: dump(elem) |
| 545 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 546 | Writes an element tree or element structure to sys.stdout. This function |
| 547 | should be used for debugging only. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 548 | |
| 549 | The exact output format is implementation dependent. In this version, it's |
| 550 | written as an ordinary XML file. |
| 551 | |
| 552 | *elem* is an element tree or an individual element. |
| 553 | |
Raymond Hettinger | e3685fd | 2018-10-28 11:18:22 -0700 | [diff] [blame] | 554 | .. versionchanged:: 3.8 |
| 555 | The :func:`dump` function now preserves the attribute order specified |
| 556 | by the user. |
| 557 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 558 | |
Manjusaka | e5458bd | 2019-02-22 08:33:57 +0800 | [diff] [blame] | 559 | .. function:: fromstring(text, parser=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 560 | |
Florent Xicluna | dddd5e9 | 2010-03-14 01:28:07 +0000 | [diff] [blame] | 561 | Parses an XML section from a string constant. Same as :func:`XML`. *text* |
Manjusaka | e5458bd | 2019-02-22 08:33:57 +0800 | [diff] [blame] | 562 | is a string containing XML data. *parser* is an optional parser instance. |
| 563 | If not given, the standard :class:`XMLParser` parser is used. |
| 564 | Returns an :class:`Element` instance. |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 565 | |
| 566 | |
| 567 | .. function:: fromstringlist(sequence, parser=None) |
| 568 | |
| 569 | Parses an XML document from a sequence of string fragments. *sequence* is a |
| 570 | list or other sequence containing XML data fragments. *parser* is an |
| 571 | optional parser instance. If not given, the standard :class:`XMLParser` |
| 572 | parser is used. Returns an :class:`Element` instance. |
| 573 | |
Ezio Melotti | f8754a6 | 2010-03-21 07:16:43 +0000 | [diff] [blame] | 574 | .. versionadded:: 3.2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 575 | |
| 576 | |
Stefan Behnel | b5d3cee | 2019-08-23 16:44:25 +0200 | [diff] [blame] | 577 | .. function:: indent(tree, space=" ", level=0) |
| 578 | |
| 579 | Appends whitespace to the subtree to indent the tree visually. |
| 580 | This can be used to generate pretty-printed XML output. |
| 581 | *tree* can be an Element or ElementTree. *space* is the whitespace |
| 582 | string that will be inserted for each indentation level, two space |
| 583 | characters by default. For indenting partial subtrees inside of an |
| 584 | already indented tree, pass the initial indentation level as *level*. |
| 585 | |
| 586 | .. versionadded:: 3.9 |
| 587 | |
| 588 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 589 | .. function:: iselement(element) |
| 590 | |
Serhiy Storchaka | 138ccbb | 2019-11-12 16:57:03 +0200 | [diff] [blame] | 591 | Check if an object appears to be a valid element object. *element* is an |
| 592 | element instance. Return ``True`` if this is an element object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 593 | |
| 594 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 595 | .. function:: iterparse(source, events=None, parser=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 596 | |
| 597 | Parses an XML section into an element tree incrementally, and reports what's |
Eli Bendersky | 604c4ff | 2012-03-16 08:41:30 +0200 | [diff] [blame] | 598 | going on to the user. *source* is a filename or :term:`file object` |
Eli Bendersky | fb62544 | 2013-05-19 09:09:24 -0700 | [diff] [blame] | 599 | containing XML data. *events* is a sequence of events to report back. The |
Stefan Behnel | 43851a2 | 2019-05-01 21:20:38 +0200 | [diff] [blame] | 600 | supported events are the strings ``"start"``, ``"end"``, ``"comment"``, |
| 601 | ``"pi"``, ``"start-ns"`` and ``"end-ns"`` |
| 602 | (the "ns" events are used to get detailed namespace |
Eli Bendersky | 604c4ff | 2012-03-16 08:41:30 +0200 | [diff] [blame] | 603 | information). If *events* is omitted, only ``"end"`` events are reported. |
| 604 | *parser* is an optional parser instance. If not given, the standard |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 605 | :class:`XMLParser` parser is used. *parser* must be a subclass of |
| 606 | :class:`XMLParser` and can only use the default :class:`TreeBuilder` as a |
| 607 | target. Returns an :term:`iterator` providing ``(event, elem)`` pairs. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 608 | |
Eli Bendersky | ab2a76c | 2013-04-20 05:53:50 -0700 | [diff] [blame] | 609 | Note that while :func:`iterparse` builds the tree incrementally, it issues |
| 610 | blocking reads on *source* (or the file it names). As such, it's unsuitable |
Eli Bendersky | 2c68e30 | 2013-08-31 07:37:23 -0700 | [diff] [blame] | 611 | for applications where blocking reads can't be made. For fully non-blocking |
| 612 | parsing, see :class:`XMLPullParser`. |
Eli Bendersky | ab2a76c | 2013-04-20 05:53:50 -0700 | [diff] [blame] | 613 | |
Benjamin Peterson | 75edad0 | 2009-01-01 15:05:06 +0000 | [diff] [blame] | 614 | .. note:: |
| 615 | |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 616 | :func:`iterparse` only guarantees that it has seen the ">" character of a |
| 617 | starting tag when it emits a "start" event, so the attributes are defined, |
| 618 | but the contents of the text and tail attributes are undefined at that |
| 619 | point. The same applies to the element children; they may or may not be |
| 620 | present. |
Benjamin Peterson | 75edad0 | 2009-01-01 15:05:06 +0000 | [diff] [blame] | 621 | |
| 622 | If you need a fully populated element, look for "end" events instead. |
| 623 | |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 624 | .. deprecated:: 3.4 |
| 625 | The *parser* argument. |
| 626 | |
Stefan Behnel | 43851a2 | 2019-05-01 21:20:38 +0200 | [diff] [blame] | 627 | .. versionchanged:: 3.8 |
| 628 | The ``comment`` and ``pi`` events were added. |
| 629 | |
| 630 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 631 | .. function:: parse(source, parser=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 632 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 633 | Parses an XML section into an element tree. *source* is a filename or file |
| 634 | object containing XML data. *parser* is an optional parser instance. If |
| 635 | not given, the standard :class:`XMLParser` parser is used. Returns an |
| 636 | :class:`ElementTree` instance. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 637 | |
| 638 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 639 | .. function:: ProcessingInstruction(target, text=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 640 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 641 | PI element factory. This factory function creates a special element that |
| 642 | will be serialized as an XML processing instruction. *target* is a string |
| 643 | containing the PI target. *text* is a string containing the PI contents, if |
| 644 | given. Returns an element instance, representing a processing instruction. |
| 645 | |
Eli Bendersky | 0bd22d4 | 2014-04-03 06:14:38 -0700 | [diff] [blame] | 646 | Note that :class:`XMLParser` skips over processing instructions |
| 647 | in the input instead of creating comment objects for them. An |
| 648 | :class:`ElementTree` will only contain processing instruction nodes if |
| 649 | they have been inserted into to the tree using one of the |
| 650 | :class:`Element` methods. |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 651 | |
| 652 | .. function:: register_namespace(prefix, uri) |
| 653 | |
| 654 | Registers a namespace prefix. The registry is global, and any existing |
| 655 | mapping for either the given prefix or the namespace URI will be removed. |
| 656 | *prefix* is a namespace prefix. *uri* is a namespace uri. Tags and |
| 657 | attributes in this namespace will be serialized with the given prefix, if at |
| 658 | all possible. |
| 659 | |
Ezio Melotti | f8754a6 | 2010-03-21 07:16:43 +0000 | [diff] [blame] | 660 | .. versionadded:: 3.2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 661 | |
| 662 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 663 | .. function:: SubElement(parent, tag, attrib={}, **extra) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 664 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 665 | Subelement factory. This function creates an element instance, and appends |
| 666 | it to an existing element. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 667 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 668 | The element name, attribute names, and attribute values can be either |
| 669 | bytestrings or Unicode strings. *parent* is the parent element. *tag* is |
| 670 | the subelement name. *attrib* is an optional dictionary, containing element |
| 671 | attributes. *extra* contains additional attributes, given as keyword |
| 672 | arguments. Returns an element instance. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 673 | |
| 674 | |
Serhiy Storchaka | 9e189f0 | 2013-01-13 22:24:27 +0200 | [diff] [blame] | 675 | .. function:: tostring(element, encoding="us-ascii", method="xml", *, \ |
Stefan Behnel | a3697db | 2019-07-24 20:22:50 +0200 | [diff] [blame] | 676 | xml_declaration=None, default_namespace=None, \ |
Eli Bendersky | a9a2ef5 | 2013-01-13 06:04:43 -0800 | [diff] [blame] | 677 | short_empty_elements=True) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 678 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 679 | Generates a string representation of an XML element, including all |
Florent Xicluna | dddd5e9 | 2010-03-14 01:28:07 +0000 | [diff] [blame] | 680 | subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is |
Florent Xicluna | c17f172 | 2010-08-08 19:48:29 +0000 | [diff] [blame] | 681 | the output encoding (default is US-ASCII). Use ``encoding="unicode"`` to |
Eli Bendersky | 831893a | 2012-10-09 07:18:16 -0700 | [diff] [blame] | 682 | generate a Unicode string (otherwise, a bytestring is generated). *method* |
| 683 | is either ``"xml"``, ``"html"`` or ``"text"`` (default is ``"xml"``). |
Bernt Røskar Brenna | ffca16e | 2019-04-14 10:07:02 +0200 | [diff] [blame] | 684 | *xml_declaration*, *default_namespace* and *short_empty_elements* has the same |
| 685 | meaning as in :meth:`ElementTree.write`. Returns an (optionally) encoded string |
| 686 | containing the XML data. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 687 | |
Eli Bendersky | a9a2ef5 | 2013-01-13 06:04:43 -0800 | [diff] [blame] | 688 | .. versionadded:: 3.4 |
| 689 | The *short_empty_elements* parameter. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 690 | |
Bernt Røskar Brenna | ffca16e | 2019-04-14 10:07:02 +0200 | [diff] [blame] | 691 | .. versionadded:: 3.8 |
| 692 | The *xml_declaration* and *default_namespace* parameters. |
| 693 | |
Stefan Behnel | a3697db | 2019-07-24 20:22:50 +0200 | [diff] [blame] | 694 | .. versionchanged:: 3.8 |
| 695 | The :func:`tostring` function now preserves the attribute order |
| 696 | specified by the user. |
| 697 | |
Eli Bendersky | a9a2ef5 | 2013-01-13 06:04:43 -0800 | [diff] [blame] | 698 | |
Serhiy Storchaka | 9e189f0 | 2013-01-13 22:24:27 +0200 | [diff] [blame] | 699 | .. function:: tostringlist(element, encoding="us-ascii", method="xml", *, \ |
Stefan Behnel | a3697db | 2019-07-24 20:22:50 +0200 | [diff] [blame] | 700 | xml_declaration=None, default_namespace=None, \ |
Eli Bendersky | a9a2ef5 | 2013-01-13 06:04:43 -0800 | [diff] [blame] | 701 | short_empty_elements=True) |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 702 | |
| 703 | Generates a string representation of an XML element, including all |
Florent Xicluna | dddd5e9 | 2010-03-14 01:28:07 +0000 | [diff] [blame] | 704 | subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is |
Florent Xicluna | c17f172 | 2010-08-08 19:48:29 +0000 | [diff] [blame] | 705 | the output encoding (default is US-ASCII). Use ``encoding="unicode"`` to |
Eli Bendersky | 831893a | 2012-10-09 07:18:16 -0700 | [diff] [blame] | 706 | generate a Unicode string (otherwise, a bytestring is generated). *method* |
| 707 | is either ``"xml"``, ``"html"`` or ``"text"`` (default is ``"xml"``). |
Bernt Røskar Brenna | ffca16e | 2019-04-14 10:07:02 +0200 | [diff] [blame] | 708 | *xml_declaration*, *default_namespace* and *short_empty_elements* has the same |
| 709 | meaning as in :meth:`ElementTree.write`. Returns a list of (optionally) encoded |
| 710 | strings containing the XML data. It does not guarantee any specific sequence, |
| 711 | except that ``b"".join(tostringlist(element)) == tostring(element)``. |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 712 | |
Ezio Melotti | f8754a6 | 2010-03-21 07:16:43 +0000 | [diff] [blame] | 713 | .. versionadded:: 3.2 |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 714 | |
Eli Bendersky | a9a2ef5 | 2013-01-13 06:04:43 -0800 | [diff] [blame] | 715 | .. versionadded:: 3.4 |
| 716 | The *short_empty_elements* parameter. |
| 717 | |
Bernt Røskar Brenna | ffca16e | 2019-04-14 10:07:02 +0200 | [diff] [blame] | 718 | .. versionadded:: 3.8 |
| 719 | The *xml_declaration* and *default_namespace* parameters. |
| 720 | |
Stefan Behnel | a3697db | 2019-07-24 20:22:50 +0200 | [diff] [blame] | 721 | .. versionchanged:: 3.8 |
| 722 | The :func:`tostringlist` function now preserves the attribute order |
| 723 | specified by the user. |
| 724 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 725 | |
| 726 | .. function:: XML(text, parser=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 727 | |
| 728 | Parses an XML section from a string constant. This function can be used to |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 729 | embed "XML literals" in Python code. *text* is a string containing XML |
| 730 | data. *parser* is an optional parser instance. If not given, the standard |
| 731 | :class:`XMLParser` parser is used. Returns an :class:`Element` instance. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 732 | |
| 733 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 734 | .. function:: XMLID(text, parser=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 735 | |
| 736 | Parses an XML section from a string constant, and also returns a dictionary |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 737 | which maps from element id:s to elements. *text* is a string containing XML |
| 738 | data. *parser* is an optional parser instance. If not given, the standard |
| 739 | :class:`XMLParser` parser is used. Returns a tuple containing an |
| 740 | :class:`Element` instance and a dictionary. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 741 | |
| 742 | |
Anjali Bansal | 97b817e | 2019-09-11 19:39:53 +0530 | [diff] [blame] | 743 | .. _elementtree-xinclude: |
| 744 | |
| 745 | XInclude support |
| 746 | ---------------- |
| 747 | |
| 748 | This module provides limited support for |
| 749 | `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. |
| 750 | |
| 751 | Example |
| 752 | ^^^^^^^ |
| 753 | |
| 754 | Here'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. |
| 755 | |
| 756 | .. code-block:: xml |
| 757 | |
| 758 | <?xml version="1.0"?> |
| 759 | <document xmlns:xi="http://www.w3.org/2001/XInclude"> |
| 760 | <xi:include href="source.xml" parse="xml" /> |
| 761 | </document> |
| 762 | |
| 763 | By 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. |
| 764 | |
| 765 | To process this file, load it as usual, and pass the root element to the :mod:`xml.etree.ElementTree` module: |
| 766 | |
| 767 | .. code-block:: python |
| 768 | |
| 769 | from xml.etree import ElementTree, ElementInclude |
| 770 | |
| 771 | tree = ElementTree.parse("document.xml") |
| 772 | root = tree.getroot() |
| 773 | |
| 774 | ElementInclude.include(root) |
| 775 | |
| 776 | The 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: |
| 777 | |
| 778 | .. code-block:: xml |
| 779 | |
| 780 | <document xmlns:xi="http://www.w3.org/2001/XInclude"> |
| 781 | <para>This is a paragraph.</para> |
| 782 | </document> |
| 783 | |
| 784 | If the **parse** attribute is omitted, it defaults to "xml". The href attribute is required. |
| 785 | |
| 786 | To include a text document, use the ``{http://www.w3.org/2001/XInclude}include`` element, and set the **parse** attribute to "text": |
| 787 | |
| 788 | .. code-block:: xml |
| 789 | |
| 790 | <?xml version="1.0"?> |
| 791 | <document xmlns:xi="http://www.w3.org/2001/XInclude"> |
| 792 | Copyright (c) <xi:include href="year.txt" parse="text" />. |
| 793 | </document> |
| 794 | |
| 795 | The result might look something like: |
| 796 | |
| 797 | .. code-block:: xml |
| 798 | |
| 799 | <document xmlns:xi="http://www.w3.org/2001/XInclude"> |
| 800 | Copyright (c) 2003. |
| 801 | </document> |
| 802 | |
| 803 | Reference |
| 804 | --------- |
| 805 | |
| 806 | .. _elementinclude-functions: |
| 807 | |
| 808 | Functions |
| 809 | ^^^^^^^^^ |
| 810 | |
| 811 | .. function:: xml.etree.ElementInclude.default_loader( href, parse, encoding=None) |
| 812 | |
| 813 | Default loader. This default loader reads an included resource from disk. *href* is a URL. |
| 814 | *parse* is for parse mode either "xml" or "text". *encoding* |
| 815 | is an optional text encoding. If not given, encoding is ``utf-8``. Returns the |
| 816 | expanded resource. If the parse mode is ``"xml"``, this is an ElementTree |
| 817 | instance. If the parse mode is "text", this is a Unicode string. If the |
| 818 | loader fails, it can return None or raise an exception. |
| 819 | |
| 820 | |
Miss Islington (bot) | 1220a47 | 2020-06-08 07:47:46 -0700 | [diff] [blame] | 821 | .. function:: xml.etree.ElementInclude.include( elem, loader=None, base_url=None, \ |
| 822 | max_depth=6) |
Anjali Bansal | 97b817e | 2019-09-11 19:39:53 +0530 | [diff] [blame] | 823 | |
| 824 | This function expands XInclude directives. *elem* is the root element. *loader* is |
| 825 | an optional resource loader. If omitted, it defaults to :func:`default_loader`. |
| 826 | If given, it should be a callable that implements the same interface as |
Miss Islington (bot) | 1220a47 | 2020-06-08 07:47:46 -0700 | [diff] [blame] | 827 | :func:`default_loader`. *base_url* is base URL of the original file, to resolve |
| 828 | relative include file references. *max_depth* is the maximum number of recursive |
| 829 | inclusions. Limited to reduce the risk of malicious content explosion. Pass a |
| 830 | negative value to disable the limitation. |
| 831 | |
| 832 | Returns the expanded resource. If the parse mode is |
Anjali Bansal | 97b817e | 2019-09-11 19:39:53 +0530 | [diff] [blame] | 833 | ``"xml"``, this is an ElementTree instance. If the parse mode is "text", |
| 834 | this is a Unicode string. If the loader fails, it can return None or |
| 835 | raise an exception. |
| 836 | |
Miss Islington (bot) | 1220a47 | 2020-06-08 07:47:46 -0700 | [diff] [blame] | 837 | .. versionadded:: 3.9 |
| 838 | The *base_url* and *max_depth* parameters. |
| 839 | |
Anjali Bansal | 97b817e | 2019-09-11 19:39:53 +0530 | [diff] [blame] | 840 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 841 | .. _elementtree-element-objects: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 842 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 843 | Element Objects |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 844 | ^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 845 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 846 | .. class:: Element(tag, attrib={}, **extra) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 847 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 848 | Element class. This class defines the Element interface, and provides a |
| 849 | reference implementation of this interface. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 850 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 851 | The element name, attribute names, and attribute values can be either |
| 852 | bytestrings or Unicode strings. *tag* is the element name. *attrib* is |
| 853 | an optional dictionary, containing element attributes. *extra* contains |
| 854 | additional attributes, given as keyword arguments. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 855 | |
| 856 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 857 | .. attribute:: tag |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 858 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 859 | A string identifying what kind of data this element represents (the |
| 860 | element type, in other words). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 861 | |
| 862 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 863 | .. attribute:: text |
Ned Deily | eca0445 | 2015-08-17 22:11:17 -0400 | [diff] [blame] | 864 | tail |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 865 | |
Ned Deily | eca0445 | 2015-08-17 22:11:17 -0400 | [diff] [blame] | 866 | These attributes can be used to hold additional data associated with |
| 867 | the element. Their values are usually strings but may be any |
| 868 | application-specific object. If the element is created from |
| 869 | an XML file, the *text* attribute holds either the text between |
| 870 | the element's start tag and its first child or end tag, or ``None``, and |
| 871 | the *tail* attribute holds either the text between the element's |
| 872 | end tag and the next tag, or ``None``. For the XML data |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 873 | |
Ned Deily | eca0445 | 2015-08-17 22:11:17 -0400 | [diff] [blame] | 874 | .. code-block:: xml |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 875 | |
Ned Deily | eca0445 | 2015-08-17 22:11:17 -0400 | [diff] [blame] | 876 | <a><b>1<c>2<d/>3</c></b>4</a> |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 877 | |
Ned Deily | eca0445 | 2015-08-17 22:11:17 -0400 | [diff] [blame] | 878 | the *a* element has ``None`` for both *text* and *tail* attributes, |
| 879 | the *b* element has *text* ``"1"`` and *tail* ``"4"``, |
| 880 | the *c* element has *text* ``"2"`` and *tail* ``None``, |
| 881 | and the *d* element has *text* ``None`` and *tail* ``"3"``. |
| 882 | |
| 883 | To collect the inner text of an element, see :meth:`itertext`, for |
| 884 | example ``"".join(element.itertext())``. |
| 885 | |
| 886 | Applications may store arbitrary objects in these attributes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 887 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 888 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 889 | .. attribute:: attrib |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 890 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 891 | A dictionary containing the element's attributes. Note that while the |
| 892 | *attrib* value is always a real mutable Python dictionary, an ElementTree |
| 893 | implementation may choose to use another internal representation, and |
| 894 | create the dictionary only if someone asks for it. To take advantage of |
| 895 | such implementations, use the dictionary methods below whenever possible. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 896 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 897 | The following dictionary-like methods work on the element attributes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 898 | |
| 899 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 900 | .. method:: clear() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 901 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 902 | Resets an element. This function removes all subelements, clears all |
Eli Bendersky | 323a43a | 2012-10-09 06:46:33 -0700 | [diff] [blame] | 903 | attributes, and sets the text and tail attributes to ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 904 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 905 | |
| 906 | .. method:: get(key, default=None) |
| 907 | |
| 908 | Gets the element attribute named *key*. |
| 909 | |
| 910 | Returns the attribute value, or *default* if the attribute was not found. |
| 911 | |
| 912 | |
| 913 | .. method:: items() |
| 914 | |
| 915 | Returns the element attributes as a sequence of (name, value) pairs. The |
| 916 | attributes are returned in an arbitrary order. |
| 917 | |
| 918 | |
| 919 | .. method:: keys() |
| 920 | |
| 921 | Returns the elements attribute names as a list. The names are returned |
| 922 | in an arbitrary order. |
| 923 | |
| 924 | |
| 925 | .. method:: set(key, value) |
| 926 | |
| 927 | Set the attribute *key* on the element to *value*. |
| 928 | |
| 929 | The following methods work on the element's children (subelements). |
| 930 | |
| 931 | |
| 932 | .. method:: append(subelement) |
| 933 | |
Eli Bendersky | 396e8fc | 2012-03-23 14:24:20 +0200 | [diff] [blame] | 934 | Adds the element *subelement* to the end of this element's internal list |
| 935 | of subelements. Raises :exc:`TypeError` if *subelement* is not an |
| 936 | :class:`Element`. |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 937 | |
| 938 | |
| 939 | .. method:: extend(subelements) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 940 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 941 | Appends *subelements* from a sequence object with zero or more elements. |
Eli Bendersky | 396e8fc | 2012-03-23 14:24:20 +0200 | [diff] [blame] | 942 | Raises :exc:`TypeError` if a subelement is not an :class:`Element`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 943 | |
Ezio Melotti | f8754a6 | 2010-03-21 07:16:43 +0000 | [diff] [blame] | 944 | .. versionadded:: 3.2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 945 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 946 | |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 947 | .. method:: find(match, namespaces=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 948 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 949 | Finds the first subelement matching *match*. *match* may be a tag name |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 950 | or a :ref:`path <elementtree-xpath>`. Returns an element instance |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 951 | or ``None``. *namespaces* is an optional mapping from namespace prefix |
Stefan Behnel | e8113f5 | 2019-04-18 19:05:03 +0200 | [diff] [blame] | 952 | to full name. Pass ``''`` as prefix to move all unprefixed tag names |
Stefan Behnel | e9927e1 | 2019-04-14 10:09:09 +0200 | [diff] [blame] | 953 | in the expression into the given namespace. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 954 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 955 | |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 956 | .. method:: findall(match, namespaces=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 957 | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 958 | Finds all matching subelements, by tag name or |
| 959 | :ref:`path <elementtree-xpath>`. Returns a list containing all matching |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 960 | elements in document order. *namespaces* is an optional mapping from |
Stefan Behnel | e8113f5 | 2019-04-18 19:05:03 +0200 | [diff] [blame] | 961 | namespace prefix to full name. Pass ``''`` as prefix to move all |
Stefan Behnel | e9927e1 | 2019-04-14 10:09:09 +0200 | [diff] [blame] | 962 | unprefixed tag names in the expression into the given namespace. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 963 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 964 | |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 965 | .. method:: findtext(match, default=None, namespaces=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 966 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 967 | Finds text for the first subelement matching *match*. *match* may be |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 968 | a tag name or a :ref:`path <elementtree-xpath>`. Returns the text content |
| 969 | of the first matching element, or *default* if no element was found. |
| 970 | Note that if the matching element has no text content an empty string |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 971 | is returned. *namespaces* is an optional mapping from namespace prefix |
Stefan Behnel | e8113f5 | 2019-04-18 19:05:03 +0200 | [diff] [blame] | 972 | to full name. Pass ``''`` as prefix to move all unprefixed tag names |
Stefan Behnel | e9927e1 | 2019-04-14 10:09:09 +0200 | [diff] [blame] | 973 | in the expression into the given namespace. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 974 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 975 | |
Eli Bendersky | 396e8fc | 2012-03-23 14:24:20 +0200 | [diff] [blame] | 976 | .. method:: insert(index, subelement) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 977 | |
Eli Bendersky | 396e8fc | 2012-03-23 14:24:20 +0200 | [diff] [blame] | 978 | Inserts *subelement* at the given position in this element. Raises |
| 979 | :exc:`TypeError` if *subelement* is not an :class:`Element`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 980 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 981 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 982 | .. method:: iter(tag=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 983 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 984 | Creates a tree :term:`iterator` with the current element as the root. |
| 985 | The iterator iterates over this element and all elements below it, in |
| 986 | document (depth first) order. If *tag* is not ``None`` or ``'*'``, only |
| 987 | elements whose tag equals *tag* are returned from the iterator. If the |
| 988 | tree structure is modified during iteration, the result is undefined. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 989 | |
Ezio Melotti | 138fc89 | 2011-10-10 00:02:03 +0300 | [diff] [blame] | 990 | .. versionadded:: 3.2 |
| 991 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 992 | |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 993 | .. method:: iterfind(match, namespaces=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 994 | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 995 | Finds all matching subelements, by tag name or |
| 996 | :ref:`path <elementtree-xpath>`. Returns an iterable yielding all |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 997 | matching elements in document order. *namespaces* is an optional mapping |
| 998 | from namespace prefix to full name. |
| 999 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1000 | |
Ezio Melotti | f8754a6 | 2010-03-21 07:16:43 +0000 | [diff] [blame] | 1001 | .. versionadded:: 3.2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1002 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1003 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1004 | .. method:: itertext() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1005 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1006 | Creates a text iterator. The iterator loops over this element and all |
| 1007 | subelements, in document order, and returns all inner text. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1008 | |
Ezio Melotti | f8754a6 | 2010-03-21 07:16:43 +0000 | [diff] [blame] | 1009 | .. versionadded:: 3.2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1010 | |
| 1011 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1012 | .. method:: makeelement(tag, attrib) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1013 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1014 | Creates a new element object of the same type as this element. Do not |
| 1015 | call this method, use the :func:`SubElement` factory function instead. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1016 | |
| 1017 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1018 | .. method:: remove(subelement) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1019 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1020 | Removes *subelement* from the element. Unlike the find\* methods this |
| 1021 | method compares elements based on the instance identity, not on tag value |
| 1022 | or contents. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1023 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1024 | :class:`Element` objects also support the following sequence type methods |
Serhiy Storchaka | 15e6590 | 2013-08-29 10:28:44 +0300 | [diff] [blame] | 1025 | for working with subelements: :meth:`~object.__delitem__`, |
| 1026 | :meth:`~object.__getitem__`, :meth:`~object.__setitem__`, |
| 1027 | :meth:`~object.__len__`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1028 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1029 | Caution: Elements with no subelements will test as ``False``. This behavior |
| 1030 | will change in future versions. Use specific ``len(elem)`` or ``elem is |
| 1031 | None`` test instead. :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1032 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1033 | element = root.find('foo') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1034 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1035 | if not element: # careful! |
| 1036 | print("element not found, or element has no subelements") |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1037 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1038 | if element is None: |
| 1039 | print("element not found") |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1040 | |
Stefan Behnel | a3697db | 2019-07-24 20:22:50 +0200 | [diff] [blame] | 1041 | Prior to Python 3.8, the serialisation order of the XML attributes of |
| 1042 | elements was artificially made predictable by sorting the attributes by |
| 1043 | their name. Based on the now guaranteed ordering of dicts, this arbitrary |
| 1044 | reordering was removed in Python 3.8 to preserve the order in which |
| 1045 | attributes were originally parsed or created by user code. |
| 1046 | |
| 1047 | In general, user code should try not to depend on a specific ordering of |
| 1048 | attributes, given that the `XML Information Set |
| 1049 | <https://www.w3.org/TR/xml-infoset/>`_ explicitly excludes the attribute |
| 1050 | order from conveying information. Code should be prepared to deal with |
| 1051 | any ordering on input. In cases where deterministic XML output is required, |
| 1052 | e.g. for cryptographic signing or test data sets, canonical serialisation |
| 1053 | is available with the :func:`canonicalize` function. |
| 1054 | |
| 1055 | In cases where canonical output is not applicable but a specific attribute |
| 1056 | order is still desirable on output, code should aim for creating the |
| 1057 | attributes directly in the desired order, to avoid perceptual mismatches |
| 1058 | for readers of the code. In cases where this is difficult to achieve, a |
| 1059 | recipe like the following can be applied prior to serialisation to enforce |
| 1060 | an order independently from the Element creation:: |
| 1061 | |
| 1062 | def reorder_attributes(root): |
| 1063 | for el in root.iter(): |
| 1064 | attrib = el.attrib |
| 1065 | if len(attrib) > 1: |
| 1066 | # adjust attribute order, e.g. by sorting |
| 1067 | attribs = sorted(attrib.items()) |
| 1068 | attrib.clear() |
| 1069 | attrib.update(attribs) |
| 1070 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1071 | |
| 1072 | .. _elementtree-elementtree-objects: |
| 1073 | |
| 1074 | ElementTree Objects |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1075 | ^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1076 | |
| 1077 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 1078 | .. class:: ElementTree(element=None, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1079 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1080 | ElementTree wrapper class. This class represents an entire element |
| 1081 | hierarchy, and adds some extra support for serialization to and from |
| 1082 | standard XML. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1083 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1084 | *element* is the root element. The tree is initialized with the contents |
| 1085 | of the XML *file* if given. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1086 | |
| 1087 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1088 | .. method:: _setroot(element) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1089 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1090 | Replaces the root element for this tree. This discards the current |
| 1091 | contents of the tree, and replaces it with the given element. Use with |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1092 | care. *element* is an element instance. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1093 | |
| 1094 | |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 1095 | .. method:: find(match, namespaces=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1096 | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1097 | Same as :meth:`Element.find`, starting at the root of the tree. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1098 | |
| 1099 | |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 1100 | .. method:: findall(match, namespaces=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1101 | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1102 | Same as :meth:`Element.findall`, starting at the root of the tree. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1103 | |
| 1104 | |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 1105 | .. method:: findtext(match, default=None, namespaces=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1106 | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1107 | Same as :meth:`Element.findtext`, starting at the root of the tree. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1108 | |
| 1109 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1110 | .. method:: getroot() |
Florent Xicluna | c17f172 | 2010-08-08 19:48:29 +0000 | [diff] [blame] | 1111 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1112 | Returns the root element for this tree. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1113 | |
| 1114 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1115 | .. method:: iter(tag=None) |
| 1116 | |
| 1117 | Creates and returns a tree iterator for the root element. The iterator |
| 1118 | loops over all elements in this tree, in section order. *tag* is the tag |
Martin Panter | d21e0b5 | 2015-10-10 10:36:22 +0000 | [diff] [blame] | 1119 | to look for (default is to return all elements). |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1120 | |
| 1121 | |
Eli Bendersky | 737b173 | 2012-05-29 06:02:56 +0300 | [diff] [blame] | 1122 | .. method:: iterfind(match, namespaces=None) |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1123 | |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1124 | Same as :meth:`Element.iterfind`, starting at the root of the tree. |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1125 | |
Ezio Melotti | f8754a6 | 2010-03-21 07:16:43 +0000 | [diff] [blame] | 1126 | .. versionadded:: 3.2 |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1127 | |
| 1128 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 1129 | .. method:: parse(source, parser=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1130 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1131 | Loads an external XML section into this element tree. *source* is a file |
Antoine Pitrou | 11cb961 | 2010-09-15 11:11:28 +0000 | [diff] [blame] | 1132 | name or :term:`file object`. *parser* is an optional parser instance. |
Eli Bendersky | 52467b1 | 2012-06-01 07:13:08 +0300 | [diff] [blame] | 1133 | If not given, the standard :class:`XMLParser` parser is used. Returns the |
| 1134 | section root element. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1135 | |
| 1136 | |
Eli Bendersky | f96cf91 | 2012-07-15 06:19:44 +0300 | [diff] [blame] | 1137 | .. method:: write(file, encoding="us-ascii", xml_declaration=None, \ |
Serhiy Storchaka | 9e189f0 | 2013-01-13 22:24:27 +0200 | [diff] [blame] | 1138 | default_namespace=None, method="xml", *, \ |
Eli Bendersky | e9af827 | 2013-01-13 06:27:51 -0800 | [diff] [blame] | 1139 | short_empty_elements=True) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1140 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1141 | Writes the element tree to a file, as XML. *file* is a file name, or a |
Eli Bendersky | f96cf91 | 2012-07-15 06:19:44 +0300 | [diff] [blame] | 1142 | :term:`file object` opened for writing. *encoding* [1]_ is the output |
| 1143 | encoding (default is US-ASCII). |
| 1144 | *xml_declaration* controls if an XML declaration should be added to the |
| 1145 | file. Use ``False`` for never, ``True`` for always, ``None`` |
| 1146 | for only if not US-ASCII or UTF-8 or Unicode (default is ``None``). |
Serhiy Storchaka | 03530b9 | 2013-01-13 21:58:04 +0200 | [diff] [blame] | 1147 | *default_namespace* sets the default XML namespace (for "xmlns"). |
Eli Bendersky | f96cf91 | 2012-07-15 06:19:44 +0300 | [diff] [blame] | 1148 | *method* is either ``"xml"``, ``"html"`` or ``"text"`` (default is |
| 1149 | ``"xml"``). |
Eli Bendersky | a9a2ef5 | 2013-01-13 06:04:43 -0800 | [diff] [blame] | 1150 | The keyword-only *short_empty_elements* parameter controls the formatting |
Serhiy Storchaka | a97cd2e | 2016-10-19 16:43:42 +0300 | [diff] [blame] | 1151 | of elements that contain no content. If ``True`` (the default), they are |
Eli Bendersky | a9a2ef5 | 2013-01-13 06:04:43 -0800 | [diff] [blame] | 1152 | emitted as a single self-closed tag, otherwise they are emitted as a pair |
| 1153 | of start/end tags. |
Eli Bendersky | f96cf91 | 2012-07-15 06:19:44 +0300 | [diff] [blame] | 1154 | |
| 1155 | The output is either a string (:class:`str`) or binary (:class:`bytes`). |
| 1156 | This is controlled by the *encoding* argument. If *encoding* is |
| 1157 | ``"unicode"``, the output is a string; otherwise, it's binary. Note that |
| 1158 | this may conflict with the type of *file* if it's an open |
| 1159 | :term:`file object`; make sure you do not try to write a string to a |
| 1160 | binary stream and vice versa. |
| 1161 | |
R David Murray | 575fb31 | 2013-12-25 23:21:03 -0500 | [diff] [blame] | 1162 | .. versionadded:: 3.4 |
| 1163 | The *short_empty_elements* parameter. |
Eli Bendersky | a9a2ef5 | 2013-01-13 06:04:43 -0800 | [diff] [blame] | 1164 | |
Raymond Hettinger | e3685fd | 2018-10-28 11:18:22 -0700 | [diff] [blame] | 1165 | .. versionchanged:: 3.8 |
| 1166 | The :meth:`write` method now preserves the attribute order specified |
| 1167 | by the user. |
| 1168 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1169 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1170 | This is the XML file that is going to be manipulated:: |
| 1171 | |
| 1172 | <html> |
| 1173 | <head> |
| 1174 | <title>Example page</title> |
| 1175 | </head> |
| 1176 | <body> |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 1177 | <p>Moved to <a href="http://example.org/">example.org</a> |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1178 | or <a href="http://example.com/">example.com</a>.</p> |
| 1179 | </body> |
| 1180 | </html> |
| 1181 | |
| 1182 | Example of changing the attribute "target" of every link in first paragraph:: |
| 1183 | |
| 1184 | >>> from xml.etree.ElementTree import ElementTree |
| 1185 | >>> tree = ElementTree() |
| 1186 | >>> tree.parse("index.xhtml") |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1187 | <Element 'html' at 0xb77e6fac> |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1188 | >>> p = tree.find("body/p") # Finds first occurrence of tag p in body |
| 1189 | >>> p |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1190 | <Element 'p' at 0xb77ec26c> |
| 1191 | >>> links = list(p.iter("a")) # Returns list of all links |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1192 | >>> links |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1193 | [<Element 'a' at 0xb77ec2ac>, <Element 'a' at 0xb77ec1cc>] |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1194 | >>> for i in links: # Iterates through all found links |
| 1195 | ... i.attrib["target"] = "blank" |
| 1196 | >>> tree.write("output.xhtml") |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1197 | |
| 1198 | .. _elementtree-qname-objects: |
| 1199 | |
| 1200 | QName Objects |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1201 | ^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1202 | |
| 1203 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 1204 | .. class:: QName(text_or_uri, tag=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1205 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1206 | QName wrapper. This can be used to wrap a QName attribute value, in order |
| 1207 | to get proper namespace handling on output. *text_or_uri* is a string |
| 1208 | containing the QName value, in the form {uri}local, or, if the tag argument |
| 1209 | is given, the URI part of a QName. If *tag* is given, the first argument is |
Martin Panter | 6245cb3 | 2016-04-15 02:14:19 +0000 | [diff] [blame] | 1210 | interpreted as a URI, and this argument is interpreted as a local name. |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1211 | :class:`QName` instances are opaque. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1212 | |
| 1213 | |
Antoine Pitrou | 5b235d0 | 2013-04-18 19:37:06 +0200 | [diff] [blame] | 1214 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1215 | .. _elementtree-treebuilder-objects: |
| 1216 | |
| 1217 | TreeBuilder Objects |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1218 | ^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1219 | |
| 1220 | |
Stefan Behnel | 43851a2 | 2019-05-01 21:20:38 +0200 | [diff] [blame] | 1221 | .. class:: TreeBuilder(element_factory=None, *, comment_factory=None, \ |
| 1222 | pi_factory=None, insert_comments=False, insert_pis=False) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1223 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1224 | Generic element structure builder. This builder converts a sequence of |
Stefan Behnel | 43851a2 | 2019-05-01 21:20:38 +0200 | [diff] [blame] | 1225 | start, data, end, comment and pi method calls to a well-formed element |
| 1226 | structure. You can use this class to build an element structure using |
| 1227 | a custom XML parser, or a parser for some other XML-like format. |
| 1228 | |
| 1229 | *element_factory*, when given, must be a callable accepting two positional |
| 1230 | arguments: a tag and a dict of attributes. It is expected to return a new |
| 1231 | element instance. |
| 1232 | |
| 1233 | The *comment_factory* and *pi_factory* functions, when given, should behave |
| 1234 | like the :func:`Comment` and :func:`ProcessingInstruction` functions to |
| 1235 | create comments and processing instructions. When not given, the default |
| 1236 | factories will be used. When *insert_comments* and/or *insert_pis* is true, |
| 1237 | comments/pis will be inserted into the tree if they appear within the root |
| 1238 | element (but not outside of it). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1239 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1240 | .. method:: close() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1241 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1242 | Flushes the builder buffers, and returns the toplevel document |
| 1243 | element. Returns an :class:`Element` instance. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1244 | |
| 1245 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1246 | .. method:: data(data) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1247 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1248 | Adds text to the current element. *data* is a string. This should be |
| 1249 | either a bytestring, or a Unicode string. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1250 | |
| 1251 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1252 | .. method:: end(tag) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1253 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1254 | Closes the current element. *tag* is the element name. Returns the |
| 1255 | closed element. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1256 | |
| 1257 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1258 | .. method:: start(tag, attrs) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1259 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1260 | Opens a new element. *tag* is the element name. *attrs* is a dictionary |
| 1261 | containing element attributes. Returns the opened element. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1262 | |
| 1263 | |
Stefan Behnel | 43851a2 | 2019-05-01 21:20:38 +0200 | [diff] [blame] | 1264 | .. method:: comment(text) |
| 1265 | |
| 1266 | Creates a comment with the given *text*. If ``insert_comments`` is true, |
| 1267 | this will also add it to the tree. |
| 1268 | |
| 1269 | .. versionadded:: 3.8 |
| 1270 | |
| 1271 | |
| 1272 | .. method:: pi(target, text) |
| 1273 | |
| 1274 | Creates a comment with the given *target* name and *text*. If |
| 1275 | ``insert_pis`` is true, this will also add it to the tree. |
| 1276 | |
| 1277 | .. versionadded:: 3.8 |
| 1278 | |
| 1279 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1280 | In addition, a custom :class:`TreeBuilder` object can provide the |
Stefan Behnel | dde3eeb | 2019-05-01 21:49:58 +0200 | [diff] [blame] | 1281 | following methods: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1282 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1283 | .. method:: doctype(name, pubid, system) |
| 1284 | |
| 1285 | Handles a doctype declaration. *name* is the doctype name. *pubid* is |
| 1286 | the public identifier. *system* is the system identifier. This method |
| 1287 | does not exist on the default :class:`TreeBuilder` class. |
| 1288 | |
Ezio Melotti | f8754a6 | 2010-03-21 07:16:43 +0000 | [diff] [blame] | 1289 | .. versionadded:: 3.2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1290 | |
Stefan Behnel | dde3eeb | 2019-05-01 21:49:58 +0200 | [diff] [blame] | 1291 | .. method:: start_ns(prefix, uri) |
| 1292 | |
| 1293 | Is called whenever the parser encounters a new namespace declaration, |
| 1294 | before the ``start()`` callback for the opening element that defines it. |
| 1295 | *prefix* is ``''`` for the default namespace and the declared |
| 1296 | namespace prefix name otherwise. *uri* is the namespace URI. |
| 1297 | |
| 1298 | .. versionadded:: 3.8 |
| 1299 | |
| 1300 | .. method:: end_ns(prefix) |
| 1301 | |
| 1302 | Is called after the ``end()`` callback of an element that declared |
| 1303 | a namespace prefix mapping, with the name of the *prefix* that went |
| 1304 | out of scope. |
| 1305 | |
| 1306 | .. versionadded:: 3.8 |
| 1307 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1308 | |
Stefan Behnel | e1d5dd6 | 2019-05-01 22:34:13 +0200 | [diff] [blame] | 1309 | .. class:: C14NWriterTarget(write, *, \ |
| 1310 | with_comments=False, strip_text=False, rewrite_prefixes=False, \ |
| 1311 | qname_aware_tags=None, qname_aware_attrs=None, \ |
| 1312 | exclude_attrs=None, exclude_tags=None) |
| 1313 | |
| 1314 | A `C14N 2.0 <https://www.w3.org/TR/xml-c14n2/>`_ writer. Arguments are the |
| 1315 | same as for the :func:`canonicalize` function. This class does not build a |
| 1316 | tree but translates the callback events directly into a serialised form |
| 1317 | using the *write* function. |
| 1318 | |
| 1319 | .. versionadded:: 3.8 |
| 1320 | |
| 1321 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1322 | .. _elementtree-xmlparser-objects: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1323 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1324 | XMLParser Objects |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1325 | ^^^^^^^^^^^^^^^^^ |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1326 | |
| 1327 | |
Serhiy Storchaka | 02ec92f | 2018-07-24 12:03:34 +0300 | [diff] [blame] | 1328 | .. class:: XMLParser(*, target=None, encoding=None) |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1329 | |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 1330 | This class is the low-level building block of the module. It uses |
| 1331 | :mod:`xml.parsers.expat` for efficient, event-based parsing of XML. It can |
Georg Brandl | adeffcc | 2016-02-26 19:13:47 +0100 | [diff] [blame] | 1332 | be fed XML data incrementally with the :meth:`feed` method, and parsing |
| 1333 | events are translated to a push API - by invoking callbacks on the *target* |
| 1334 | object. If *target* is omitted, the standard :class:`TreeBuilder` is used. |
Serhiy Storchaka | 02ec92f | 2018-07-24 12:03:34 +0300 | [diff] [blame] | 1335 | If *encoding* [1]_ is given, the value overrides the |
Georg Brandl | adeffcc | 2016-02-26 19:13:47 +0100 | [diff] [blame] | 1336 | encoding specified in the XML file. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1337 | |
Serhiy Storchaka | 02ec92f | 2018-07-24 12:03:34 +0300 | [diff] [blame] | 1338 | .. versionchanged:: 3.8 |
| 1339 | Parameters are now :ref:`keyword-only <keyword-only_parameter>`. |
| 1340 | The *html* argument no longer supported. |
| 1341 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1342 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1343 | .. method:: close() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1344 | |
Eli Bendersky | bfd7837 | 2013-08-24 15:11:44 -0700 | [diff] [blame] | 1345 | Finishes feeding data to the parser. Returns the result of calling the |
Eli Bendersky | bf8ab77 | 2013-08-25 15:27:36 -0700 | [diff] [blame] | 1346 | ``close()`` method of the *target* passed during construction; by default, |
| 1347 | this is the toplevel document element. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1348 | |
| 1349 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 1350 | .. method:: feed(data) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1351 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1352 | Feeds data to the parser. *data* is encoded data. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1353 | |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 1354 | :meth:`XMLParser.feed` calls *target*\'s ``start(tag, attrs_dict)`` method |
| 1355 | for each opening tag, its ``end(tag)`` method for each closing tag, and data |
Stefan Behnel | dde3eeb | 2019-05-01 21:49:58 +0200 | [diff] [blame] | 1356 | is processed by method ``data(data)``. For further supported callback |
| 1357 | methods, see the :class:`TreeBuilder` class. :meth:`XMLParser.close` calls |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 1358 | *target*\'s method ``close()``. :class:`XMLParser` can be used not only for |
| 1359 | building a tree structure. This is an example of counting the maximum depth |
| 1360 | of an XML file:: |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1361 | |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1362 | >>> from xml.etree.ElementTree import XMLParser |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1363 | >>> class MaxDepth: # The target object of the parser |
| 1364 | ... maxDepth = 0 |
| 1365 | ... depth = 0 |
| 1366 | ... def start(self, tag, attrib): # Called for each opening tag. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 1367 | ... self.depth += 1 |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1368 | ... if self.depth > self.maxDepth: |
| 1369 | ... self.maxDepth = self.depth |
| 1370 | ... def end(self, tag): # Called for each closing tag. |
| 1371 | ... self.depth -= 1 |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 1372 | ... def data(self, data): |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1373 | ... pass # We do not need to do anything with data. |
| 1374 | ... def close(self): # Called when all data has been parsed. |
| 1375 | ... return self.maxDepth |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 1376 | ... |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1377 | >>> target = MaxDepth() |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1378 | >>> parser = XMLParser(target=target) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 1379 | >>> exampleXml = """ |
| 1380 | ... <a> |
| 1381 | ... <b> |
| 1382 | ... </b> |
| 1383 | ... <b> |
| 1384 | ... <c> |
| 1385 | ... <d> |
| 1386 | ... </d> |
| 1387 | ... </c> |
| 1388 | ... </b> |
| 1389 | ... </a>""" |
| 1390 | >>> parser.feed(exampleXml) |
| 1391 | >>> parser.close() |
| 1392 | 4 |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 1393 | |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 1394 | |
| 1395 | .. _elementtree-xmlpullparser-objects: |
| 1396 | |
| 1397 | XMLPullParser Objects |
| 1398 | ^^^^^^^^^^^^^^^^^^^^^ |
| 1399 | |
| 1400 | .. class:: XMLPullParser(events=None) |
| 1401 | |
Eli Bendersky | 2c68e30 | 2013-08-31 07:37:23 -0700 | [diff] [blame] | 1402 | A pull parser suitable for non-blocking applications. Its input-side API is |
| 1403 | similar to that of :class:`XMLParser`, but instead of pushing calls to a |
| 1404 | callback target, :class:`XMLPullParser` collects an internal list of parsing |
| 1405 | events and lets the user read from it. *events* is a sequence of events to |
| 1406 | report back. The supported events are the strings ``"start"``, ``"end"``, |
Stefan Behnel | 43851a2 | 2019-05-01 21:20:38 +0200 | [diff] [blame] | 1407 | ``"comment"``, ``"pi"``, ``"start-ns"`` and ``"end-ns"`` (the "ns" events |
| 1408 | are used to get detailed namespace information). If *events* is omitted, |
| 1409 | only ``"end"`` events are reported. |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 1410 | |
| 1411 | .. method:: feed(data) |
| 1412 | |
| 1413 | Feed the given bytes data to the parser. |
| 1414 | |
| 1415 | .. method:: close() |
| 1416 | |
Nick Coghlan | 4cc2afa | 2013-09-28 23:50:35 +1000 | [diff] [blame] | 1417 | Signal the parser that the data stream is terminated. Unlike |
| 1418 | :meth:`XMLParser.close`, this method always returns :const:`None`. |
| 1419 | Any events not yet retrieved when the parser is closed can still be |
| 1420 | read with :meth:`read_events`. |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 1421 | |
| 1422 | .. method:: read_events() |
| 1423 | |
R David Murray | 410d320 | 2014-01-04 23:52:50 -0500 | [diff] [blame] | 1424 | Return an iterator over the events which have been encountered in the |
| 1425 | data fed to the |
| 1426 | parser. The iterator yields ``(event, elem)`` pairs, where *event* is a |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 1427 | string representing the type of event (e.g. ``"end"``) and *elem* is the |
Stefan Behnel | 43851a2 | 2019-05-01 21:20:38 +0200 | [diff] [blame] | 1428 | encountered :class:`Element` object, or other context value as follows. |
| 1429 | |
| 1430 | * ``start``, ``end``: the current Element. |
| 1431 | * ``comment``, ``pi``: the current comment / processing instruction |
| 1432 | * ``start-ns``: a tuple ``(prefix, uri)`` naming the declared namespace |
| 1433 | mapping. |
| 1434 | * ``end-ns``: :const:`None` (this may change in a future version) |
Nick Coghlan | 4cc2afa | 2013-09-28 23:50:35 +1000 | [diff] [blame] | 1435 | |
| 1436 | Events provided in a previous call to :meth:`read_events` will not be |
R David Murray | 410d320 | 2014-01-04 23:52:50 -0500 | [diff] [blame] | 1437 | yielded again. Events are consumed from the internal queue only when |
| 1438 | they are retrieved from the iterator, so multiple readers iterating in |
| 1439 | parallel over iterators obtained from :meth:`read_events` will have |
| 1440 | unpredictable results. |
Eli Bendersky | b586934 | 2013-08-30 05:51:20 -0700 | [diff] [blame] | 1441 | |
| 1442 | .. note:: |
| 1443 | |
| 1444 | :class:`XMLPullParser` only guarantees that it has seen the ">" |
| 1445 | character of a starting tag when it emits a "start" event, so the |
| 1446 | attributes are defined, but the contents of the text and tail attributes |
| 1447 | are undefined at that point. The same applies to the element children; |
| 1448 | they may or may not be present. |
| 1449 | |
| 1450 | If you need a fully populated element, look for "end" events instead. |
| 1451 | |
| 1452 | .. versionadded:: 3.4 |
| 1453 | |
Stefan Behnel | 43851a2 | 2019-05-01 21:20:38 +0200 | [diff] [blame] | 1454 | .. versionchanged:: 3.8 |
| 1455 | The ``comment`` and ``pi`` events were added. |
| 1456 | |
| 1457 | |
Eli Bendersky | 5b77d81 | 2012-03-16 08:20:05 +0200 | [diff] [blame] | 1458 | Exceptions |
Eli Bendersky | 3a4875e | 2012-03-26 20:43:32 +0200 | [diff] [blame] | 1459 | ^^^^^^^^^^ |
Eli Bendersky | 5b77d81 | 2012-03-16 08:20:05 +0200 | [diff] [blame] | 1460 | |
| 1461 | .. class:: ParseError |
| 1462 | |
| 1463 | XML parse error, raised by the various parsing methods in this module when |
| 1464 | parsing fails. The string representation of an instance of this exception |
| 1465 | will contain a user-friendly error message. In addition, it will have |
| 1466 | the following attributes available: |
| 1467 | |
| 1468 | .. attribute:: code |
| 1469 | |
| 1470 | A numeric error code from the expat parser. See the documentation of |
| 1471 | :mod:`xml.parsers.expat` for the list of error codes and their meanings. |
| 1472 | |
| 1473 | .. attribute:: position |
| 1474 | |
| 1475 | A tuple of *line*, *column* numbers, specifying where the error occurred. |
Christian Heimes | b186d00 | 2008-03-18 15:15:01 +0000 | [diff] [blame] | 1476 | |
| 1477 | .. rubric:: Footnotes |
| 1478 | |
Serhiy Storchaka | d97b7dc | 2017-05-16 23:18:09 +0300 | [diff] [blame] | 1479 | .. [1] The encoding string included in XML output should conform to the |
Florent Xicluna | f15351d | 2010-03-13 23:24:31 +0000 | [diff] [blame] | 1480 | appropriate standards. For example, "UTF-8" is valid, but "UTF8" is |
Serhiy Storchaka | 6dff020 | 2016-05-07 10:49:07 +0300 | [diff] [blame] | 1481 | not. See https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl |
| 1482 | and https://www.iana.org/assignments/character-sets/character-sets.xhtml. |