html.parser.HTMLParser.handle_endtag()

HTMLParser.handle_endtag(tag) This method is called to handle the end tag of an element (e.g. </div>).

2016-10-07 17:33:48
xml.sax.make_parser()

xml.sax.make_parser(parser_list=[]) Create and return a SAX

2016-10-07 17:48:22
xml.dom.Node.replaceChild()

Node.replaceChild(newChild, oldChild) Replace an existing node with a new node. It must be the case that oldChild is

2016-10-07 17:47:53
xml.dom.Element.setAttributeNodeNS()

Element.setAttributeNodeNS(newAttr) Add a new attribute node to the element, replacing an existing attribute if necessary if

2016-10-07 17:47:45
xml.parsers.expat.error

exception xml.parsers.expat.error Alias for ExpatError.

2016-10-07 17:48:07
xml.dom.Element.setAttributeNode()

Element.setAttributeNode(newAttr) Add a new attribute node to the element, replacing an existing attribute if necessary if the

2016-10-07 17:47:45
xml.sax.handler.ContentHandler.startElementNS()

ContentHandler.startElementNS(name, qname, attrs) Signals the start of an element in namespace mode. The

2016-10-07 17:48:18
xml.etree.ElementTree.TreeBuilder.start()

start(tag, attrs) Opens a new element. tag is the element name. attrs is a dictionary containing element attributes

2016-10-07 17:48:05
xml.dom.minidom.parseString()

xml.dom.minidom.parseString(string, parser=None) Return a Document that represents the string. This method

2016-10-07 17:47:48
xml.parsers.expat.xmlparser.ExternalEntityRefHandler()

xmlparser.ExternalEntityRefHandler(context, base, systemId, publicId) Called for references to external entities. base

2016-10-07 17:48:13