Note that users of ourdom should ensure that no code might still use
classes directly from minidom, like minidom.Element, minidom.Document or
methods such as minidom.parseString, since the functionality provided
here will not be in those objects.
|
writexml_helper(self,
writer,
indent='
' ,
addindent='
' ,
newl='
' )
A replacement for writexml that formats it like typical XML files. |
source code
|
|
|
|
|
searchElementsByTagName_helper(parent,
name,
onlysearch)
limits the search to within tags occuring in onlysearch |
source code
|
|
|
|
|
getnodetext(node)
returns the node's text by iterating through the child nodes |
source code
|
|
|
parse(file,
parser=None,
bufsize=None)
Parse a file into a DOM by filename or file object. |
source code
|
|
|
parseString(string,
parser=None)
Parse a file into a DOM from a string. |
source code
|
|