blob: 913456a1a8890f91d553acf012ec53bea2a7bc8f [file] [log] [blame]
Dan Timoneyb2175582017-03-31 17:47:19 -04001import xml.dom.minidom
2import lxml.etree as etree
3import sys
4
5xml_fname=sys.argv[1]
6#xml = xml.dom.minidom.parse(xml_fname) # or xml.dom.minidom.parseString(xml_string)
7#pretty_xml_as_string = xml.toprettyxml()
8#print pretty_xml_as_string
9
10x = etree.parse(xml_fname)
11print etree.tostring(x, pretty_print = True)