14 lines
401 B
Python
14 lines
401 B
Python
|
"""
|
||
|
Utilities for XML generation/parsing.
|
||
|
"""
|
||
|
|
||
|
from xml.sax.saxutils import XMLGenerator
|
||
|
|
||
|
class SimplerXMLGenerator(XMLGenerator):
|
||
|
def addQuickElement(self, name, contents=None, attrs={}):
|
||
|
"Convenience method for adding an element with no children"
|
||
|
self.startElement(name, attrs)
|
||
|
if contents is not None:
|
||
|
self.characters(contents)
|
||
|
self.endElement(name)
|