Revision 1708
Added by Aaron Marcuse-Kubitza almost 13 years ago
lib/xml_parse.py | ||
---|---|---|
1 |
# XML parsing |
|
2 |
|
|
3 |
import xml.dom.minidom as minidom |
|
4 |
|
|
5 |
def parse_str(str_): return minidom.parseString(str_).documentElement |
Also available in: Unified diff
Added xml_parse.py