You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.
https://docs.python.org/2/library/xml.dom.minidom.html
Minidom - Minimal DOM implementation DOM (Document Object Model interface)
1 from xml.dom import minidom 2 print("Hello world") 3 a="<a><b>aaaa</b><b>bbcc</b></a>" 4 doc = minidom.parseString(a) # return document 5 tags = doc.getElementsByTagName("b") 6 for t in tags: 7 print(t.firstChild.nodeValue) 8 9 print( doc.toprettyxml() )