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