HTMLParser.handle_starttag(tag, attrs) This method is called to handle the start of a tag (e.g. <div id="main">)
class xml.etree.ElementTree.XMLPullParser(events=None) A pull parser suitable for non-blocking applications. Its input-side
start(tag, attrs) Opens a new element. tag is the element name. attrs is a dictionary containing element attributes
Document.createTextNode(data) Create and return a text node containing the data passed as a parameter. As with the other creation
Document.createElement(tagName) Create and return a new element node. The element is not inserted into the document when it
XMLReader.parse(source) Process an input source, producing SAX events. The source object can be a system identifier
tag A string identifying what kind of data this element represents (the element type, in other words).
AttributesNS.getNameByQName(name) Return the (namespace, localname) pair for a qualified name.
xml.sax.handler.all_features List of all features.
xml.dom.minidom.parseString(string, parser=None) Return a Document that represents the string. This method
Page 18 of 34