• Home
  • Raw
  • Download

Lines Matching refs:DOM

1 :mod:`xml.dom.minidom` --- Minimal DOM implementation
5 :synopsis: Minimal Document Object Model (DOM) implementation.
17 to be simpler than the full DOM and also significantly smaller. Users who are
18 not already proficient with the DOM should consider using the
29 DOM applications typically start by parsing some XML into a DOM. With
65 parser with a "DOM builder" that can accept parse events from any SAX parser and
66 convert them into a DOM tree. The name of the functions are perhaps misleading,
71 You can also create a :class:`Document` by calling a method on a "DOM
75 can add child nodes to it to populate the DOM::
86 Once you have a DOM document object, you can access the parts of your XML
88 the DOM specification. The main property of the document object is the
95 When you are finished with a DOM tree, you may optionally call the
98 extension to the DOM API that renders the node and its descendants are
104 `Document Object Model (DOM) Level 1 Specification <https://www.w3.org/TR/REC-DOM-Level-1/>`_
105 The W3C recommendation for the DOM supported by :mod:`xml.dom.minidom`.
110 DOM Objects
113 The definition of the DOM API for Python is given as part of the :mod:`xml.dom`
120 Break internal references within the DOM so that it will be garbage collected on
122 this can make large amounts of memory available sooner, so calling this on DOM
150 the DOM node.
171 DOM Example
175 particular case, we do not take much advantage of the flexibility of the DOM.
182 minidom and the DOM standard
185 The :mod:`xml.dom.minidom` module is essentially a DOM 1.0-compatible DOM with
186 some DOM 2 features (primarily namespace features).
188 Usage of the DOM interface in Python is straight-forward. The following mapping
196 * Operations are used as methods. Since the DOM uses only :keyword:`in`
211 ``null`` value by the DOM specification from the W3C.
221 These objects provide the interface defined in the DOM specification, but with
247 utility to most DOM users.