Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | |
| 2 | :mod:`xml.dom.minidom` --- Lightweight DOM implementation |
| 3 | ========================================================= |
| 4 | |
| 5 | .. module:: xml.dom.minidom |
| 6 | :synopsis: Lightweight Document Object Model (DOM) implementation. |
| 7 | .. moduleauthor:: Paul Prescod <paul@prescod.net> |
| 8 | .. sectionauthor:: Paul Prescod <paul@prescod.net> |
| 9 | .. sectionauthor:: Martin v. Lรถwis <martin@v.loewis.de> |
| 10 | |
| 11 | |
| 12 | .. versionadded:: 2.0 |
| 13 | |
| 14 | :mod:`xml.dom.minidom` is a light-weight implementation of the Document Object |
| 15 | Model interface. It is intended to be simpler than the full DOM and also |
| 16 | significantly smaller. |
| 17 | |
| 18 | DOM applications typically start by parsing some XML into a DOM. With |
| 19 | :mod:`xml.dom.minidom`, this is done through the parse functions:: |
| 20 | |
| 21 | from xml.dom.minidom import parse, parseString |
| 22 | |
| 23 | dom1 = parse('c:\\temp\\mydata.xml') # parse an XML file by name |
| 24 | |
| 25 | datasource = open('c:\\temp\\mydata.xml') |
| 26 | dom2 = parse(datasource) # parse an open file |
| 27 | |
| 28 | dom3 = parseString('<myxml>Some data<empty/> some more data</myxml>') |
| 29 | |
| 30 | The :func:`parse` function can take either a filename or an open file object. |
| 31 | |
| 32 | |
Georg Brandl | 29d3a04 | 2009-05-16 11:14:46 +0000 | [diff] [blame] | 33 | .. function:: parse(filename_or_file[, parser[, bufsize]]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 34 | |
| 35 | Return a :class:`Document` from the given input. *filename_or_file* may be |
| 36 | either a file name, or a file-like object. *parser*, if given, must be a SAX2 |
| 37 | parser object. This function will change the document handler of the parser and |
| 38 | activate namespace support; other parser configuration (like setting an entity |
| 39 | resolver) must have been done in advance. |
| 40 | |
| 41 | If you have XML in a string, you can use the :func:`parseString` function |
| 42 | instead: |
| 43 | |
| 44 | |
| 45 | .. function:: parseString(string[, parser]) |
| 46 | |
| 47 | Return a :class:`Document` that represents the *string*. This method creates a |
| 48 | :class:`StringIO` object for the string and passes that on to :func:`parse`. |
| 49 | |
| 50 | Both functions return a :class:`Document` object representing the content of the |
| 51 | document. |
| 52 | |
| 53 | What the :func:`parse` and :func:`parseString` functions do is connect an XML |
| 54 | parser with a "DOM builder" that can accept parse events from any SAX parser and |
| 55 | convert them into a DOM tree. The name of the functions are perhaps misleading, |
| 56 | but are easy to grasp when learning the interfaces. The parsing of the document |
| 57 | will be completed before these functions return; it's simply that these |
| 58 | functions do not provide a parser implementation themselves. |
| 59 | |
| 60 | You can also create a :class:`Document` by calling a method on a "DOM |
| 61 | Implementation" object. You can get this object either by calling the |
| 62 | :func:`getDOMImplementation` function in the :mod:`xml.dom` package or the |
| 63 | :mod:`xml.dom.minidom` module. Using the implementation from the |
| 64 | :mod:`xml.dom.minidom` module will always return a :class:`Document` instance |
| 65 | from the minidom implementation, while the version from :mod:`xml.dom` may |
| 66 | provide an alternate implementation (this is likely if you have the `PyXML |
| 67 | package <http://pyxml.sourceforge.net/>`_ installed). Once you have a |
| 68 | :class:`Document`, you can add child nodes to it to populate the DOM:: |
| 69 | |
| 70 | from xml.dom.minidom import getDOMImplementation |
| 71 | |
| 72 | impl = getDOMImplementation() |
| 73 | |
| 74 | newdoc = impl.createDocument(None, "some_tag", None) |
| 75 | top_element = newdoc.documentElement |
| 76 | text = newdoc.createTextNode('Some textual content.') |
| 77 | top_element.appendChild(text) |
| 78 | |
| 79 | Once you have a DOM document object, you can access the parts of your XML |
| 80 | document through its properties and methods. These properties are defined in |
| 81 | the DOM specification. The main property of the document object is the |
| 82 | :attr:`documentElement` property. It gives you the main element in the XML |
| 83 | document: the one that holds all others. Here is an example program:: |
| 84 | |
| 85 | dom3 = parseString("<myxml>Some data</myxml>") |
| 86 | assert dom3.documentElement.tagName == "myxml" |
| 87 | |
Andrew M. Kuchling | f8af7b4 | 2010-03-01 19:45:21 +0000 | [diff] [blame^] | 88 | When you are finished with a DOM tree, you may optionally call the |
| 89 | :meth:`unlink` method to encourage early cleanup of the now-unneeded |
| 90 | objects. :meth:`unlink` is a :mod:`xml.dom.minidom`\ -specific |
| 91 | extension to the DOM API that renders the node and its descendants are |
| 92 | essentially useless. Otherwise, Python's garbage collector will |
| 93 | eventually take care of the objects in the tree. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 94 | |
| 95 | .. seealso:: |
| 96 | |
| 97 | `Document Object Model (DOM) Level 1 Specification <http://www.w3.org/TR/REC-DOM-Level-1/>`_ |
| 98 | The W3C recommendation for the DOM supported by :mod:`xml.dom.minidom`. |
| 99 | |
| 100 | |
| 101 | .. _minidom-objects: |
| 102 | |
| 103 | DOM Objects |
| 104 | ----------- |
| 105 | |
| 106 | The definition of the DOM API for Python is given as part of the :mod:`xml.dom` |
| 107 | module documentation. This section lists the differences between the API and |
| 108 | :mod:`xml.dom.minidom`. |
| 109 | |
| 110 | |
| 111 | .. method:: Node.unlink() |
| 112 | |
| 113 | Break internal references within the DOM so that it will be garbage collected on |
| 114 | versions of Python without cyclic GC. Even when cyclic GC is available, using |
| 115 | this can make large amounts of memory available sooner, so calling this on DOM |
| 116 | objects as soon as they are no longer needed is good practice. This only needs |
| 117 | to be called on the :class:`Document` object, but may be called on child nodes |
| 118 | to discard children of that node. |
| 119 | |
| 120 | |
Georg Brandl | 8189310 | 2008-04-12 18:36:09 +0000 | [diff] [blame] | 121 | .. method:: Node.writexml(writer[, indent=""[, addindent=""[, newl=""[, encoding=""]]]]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 122 | |
| 123 | Write XML to the writer object. The writer should have a :meth:`write` method |
| 124 | which matches that of the file object interface. The *indent* parameter is the |
| 125 | indentation of the current node. The *addindent* parameter is the incremental |
| 126 | indentation to use for subnodes of the current one. The *newl* parameter |
| 127 | specifies the string to use to terminate newlines. |
| 128 | |
| 129 | .. versionchanged:: 2.1 |
| 130 | The optional keyword parameters *indent*, *addindent*, and *newl* were added to |
| 131 | support pretty output. |
| 132 | |
| 133 | .. versionchanged:: 2.3 |
Mark Summerfield | 43da35d | 2008-03-17 08:28:15 +0000 | [diff] [blame] | 134 | For the :class:`Document` node, an additional keyword argument |
Georg Brandl | 482d752 | 2008-03-19 07:56:40 +0000 | [diff] [blame] | 135 | *encoding* can be used to specify the encoding field of the XML header. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 136 | |
| 137 | |
| 138 | .. method:: Node.toxml([encoding]) |
| 139 | |
| 140 | Return the XML that the DOM represents as a string. |
| 141 | |
| 142 | With no argument, the XML header does not specify an encoding, and the result is |
| 143 | Unicode string if the default encoding cannot represent all characters in the |
| 144 | document. Encoding this string in an encoding other than UTF-8 is likely |
| 145 | incorrect, since UTF-8 is the default encoding of XML. |
| 146 | |
Mark Summerfield | 43da35d | 2008-03-17 08:28:15 +0000 | [diff] [blame] | 147 | With an explicit *encoding* [1]_ argument, the result is a byte string in the |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 148 | specified encoding. It is recommended that this argument is always specified. To |
| 149 | avoid :exc:`UnicodeError` exceptions in case of unrepresentable text data, the |
| 150 | encoding argument should be specified as "utf-8". |
| 151 | |
| 152 | .. versionchanged:: 2.3 |
Georg Brandl | 8189310 | 2008-04-12 18:36:09 +0000 | [diff] [blame] | 153 | the *encoding* argument was introduced; see :meth:`writexml`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 154 | |
| 155 | |
Georg Brandl | 8189310 | 2008-04-12 18:36:09 +0000 | [diff] [blame] | 156 | .. method:: Node.toprettyxml([indent=""[, newl=""[, encoding=""]]]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 157 | |
| 158 | Return a pretty-printed version of the document. *indent* specifies the |
| 159 | indentation string and defaults to a tabulator; *newl* specifies the string |
| 160 | emitted at the end of each line and defaults to ``\n``. |
| 161 | |
| 162 | .. versionadded:: 2.1 |
| 163 | |
| 164 | .. versionchanged:: 2.3 |
Georg Brandl | 8189310 | 2008-04-12 18:36:09 +0000 | [diff] [blame] | 165 | the encoding argument was introduced; see :meth:`writexml`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 166 | |
| 167 | The following standard DOM methods have special considerations with |
| 168 | :mod:`xml.dom.minidom`: |
| 169 | |
| 170 | |
| 171 | .. method:: Node.cloneNode(deep) |
| 172 | |
| 173 | Although this method was present in the version of :mod:`xml.dom.minidom` |
| 174 | packaged with Python 2.0, it was seriously broken. This has been corrected for |
| 175 | subsequent releases. |
| 176 | |
| 177 | |
| 178 | .. _dom-example: |
| 179 | |
| 180 | DOM Example |
| 181 | ----------- |
| 182 | |
| 183 | This example program is a fairly realistic example of a simple program. In this |
| 184 | particular case, we do not take much advantage of the flexibility of the DOM. |
| 185 | |
| 186 | .. literalinclude:: ../includes/minidom-example.py |
| 187 | |
| 188 | |
| 189 | .. _minidom-and-dom: |
| 190 | |
| 191 | minidom and the DOM standard |
| 192 | ---------------------------- |
| 193 | |
| 194 | The :mod:`xml.dom.minidom` module is essentially a DOM 1.0-compatible DOM with |
| 195 | some DOM 2 features (primarily namespace features). |
| 196 | |
| 197 | Usage of the DOM interface in Python is straight-forward. The following mapping |
| 198 | rules apply: |
| 199 | |
| 200 | * Interfaces are accessed through instance objects. Applications should not |
| 201 | instantiate the classes themselves; they should use the creator functions |
| 202 | available on the :class:`Document` object. Derived interfaces support all |
| 203 | operations (and attributes) from the base interfaces, plus any new operations. |
| 204 | |
| 205 | * Operations are used as methods. Since the DOM uses only :keyword:`in` |
| 206 | parameters, the arguments are passed in normal order (from left to right). |
Georg Brandl | b19be57 | 2007-12-29 10:57:00 +0000 | [diff] [blame] | 207 | There are no optional arguments. ``void`` operations return ``None``. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 208 | |
| 209 | * IDL attributes map to instance attributes. For compatibility with the OMG IDL |
| 210 | language mapping for Python, an attribute ``foo`` can also be accessed through |
Georg Brandl | b19be57 | 2007-12-29 10:57:00 +0000 | [diff] [blame] | 211 | accessor methods :meth:`_get_foo` and :meth:`_set_foo`. ``readonly`` |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 212 | attributes must not be changed; this is not enforced at runtime. |
| 213 | |
| 214 | * The types ``short int``, ``unsigned int``, ``unsigned long long``, and |
| 215 | ``boolean`` all map to Python integer objects. |
| 216 | |
| 217 | * The type ``DOMString`` maps to Python strings. :mod:`xml.dom.minidom` supports |
| 218 | either byte or Unicode strings, but will normally produce Unicode strings. |
| 219 | Values of type ``DOMString`` may also be ``None`` where allowed to have the IDL |
| 220 | ``null`` value by the DOM specification from the W3C. |
| 221 | |
Georg Brandl | b19be57 | 2007-12-29 10:57:00 +0000 | [diff] [blame] | 222 | * ``const`` declarations map to variables in their respective scope (e.g. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 223 | ``xml.dom.minidom.Node.PROCESSING_INSTRUCTION_NODE``); they must not be changed. |
| 224 | |
| 225 | * ``DOMException`` is currently not supported in :mod:`xml.dom.minidom`. |
| 226 | Instead, :mod:`xml.dom.minidom` uses standard Python exceptions such as |
| 227 | :exc:`TypeError` and :exc:`AttributeError`. |
| 228 | |
| 229 | * :class:`NodeList` objects are implemented using Python's built-in list type. |
| 230 | Starting with Python 2.2, these objects provide the interface defined in the DOM |
| 231 | specification, but with earlier versions of Python they do not support the |
| 232 | official API. They are, however, much more "Pythonic" than the interface |
| 233 | defined in the W3C recommendations. |
| 234 | |
| 235 | The following interfaces have no implementation in :mod:`xml.dom.minidom`: |
| 236 | |
| 237 | * :class:`DOMTimeStamp` |
| 238 | |
| 239 | * :class:`DocumentType` (added in Python 2.1) |
| 240 | |
| 241 | * :class:`DOMImplementation` (added in Python 2.1) |
| 242 | |
| 243 | * :class:`CharacterData` |
| 244 | |
| 245 | * :class:`CDATASection` |
| 246 | |
| 247 | * :class:`Notation` |
| 248 | |
| 249 | * :class:`Entity` |
| 250 | |
| 251 | * :class:`EntityReference` |
| 252 | |
| 253 | * :class:`DocumentFragment` |
| 254 | |
| 255 | Most of these reflect information in the XML document that is not of general |
| 256 | utility to most DOM users. |
| 257 | |
Mark Summerfield | 43da35d | 2008-03-17 08:28:15 +0000 | [diff] [blame] | 258 | .. rubric:: Footnotes |
| 259 | |
| 260 | .. [#] The encoding string included in XML output should conform to the |
| 261 | appropriate standards. For example, "UTF-8" is valid, but "UTF8" is |
| 262 | not. See http://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl |
| 263 | and http://www.iana.org/assignments/character-sets . |