|
1 | | -:mod:`xml.dom.minidom` --- Lightweight DOM implementation |
2 | | -========================================================= |
| 1 | +:mod:`xml.dom.minidom` --- Minimal DOM implementation |
| 2 | +===================================================== |
3 | 3 |
|
4 | 4 | .. module:: xml.dom.minidom |
5 | | - :synopsis: Lightweight Document Object Model (DOM) implementation. |
| 5 | + :synopsis: Minimal Document Object Model (DOM) implementation. |
6 | 6 | .. moduleauthor:: Paul Prescod <[email protected]> |
7 | 7 | .. sectionauthor:: Paul Prescod <[email protected]> |
8 | 8 | .. sectionauthor:: Martin v. Löwis <[email protected]> |
|
11 | 11 |
|
12 | 12 | -------------- |
13 | 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 | | -.. note:: |
19 | | - |
20 | | - The :mod:`xml.dom.minidom` module provides an implementation of the W3C-DOM, |
21 | | - with an API similar to that in other programming languages. Users who are |
22 | | - unfamiliar with the W3C-DOM interface or who would like to write less code |
23 | | - for processing XML files should consider using the |
24 | | - :mod:`xml.etree.ElementTree` module instead. |
| 14 | +:mod:`xml.dom.minidom` is a minimal implementation of the Document Object |
| 15 | +Model interface, with an API similar to that in other languages. It is intended |
| 16 | +to be simpler than the full DOM and also significantly smaller. Users who are |
| 17 | +not already proficient with the DOM should consider using the |
| 18 | +:mod:`xml.etree.ElementTree` module for their XML processing instead |
25 | 19 |
|
26 | 20 | DOM applications typically start by parsing some XML into a DOM. With |
27 | 21 | :mod:`xml.dom.minidom`, this is done through the parse functions:: |
|
0 commit comments