html.parser.HTMLParser.handle_startendtag()

HTMLParser.handle_startendtag(tag, attrs) Similar to handle_starttag(), but called when the parser encounters an

2016-10-07 17:33:48
xml.parsers.expat.xmlparser.StartElementHandler()

xmlparser.StartElementHandler(name, attributes) Called for the start of every element. name is a string containing

2016-10-07 17:48:15
xml.parsers.expat.xmlparser.NotationDeclHandler()

xmlparser.NotationDeclHandler(notationName, base, systemId, publicId) Called for notation declarations. notationName

2016-10-07 17:48:13
xml.sax.xmlreader.InputSource

class xml.sax.xmlreader.InputSource(system_id=None) Encapsulation of the information needed by the XMLReader to

2016-10-07 17:48:26
xml.sax.xmlreader.IncrementalParser

class xml.sax.xmlreader.IncrementalParser In some cases, it is desirable not to parse an input source at once, but to feed chunks

2016-10-07 17:48:26
xml.parsers.expat.xmlparser.StartNamespaceDeclHandler()

xmlparser.StartNamespaceDeclHandler(prefix, uri) Called when an element contains a namespace declaration. Namespace declarations

2016-10-07 17:48:15
XML Processing Modules

Source code: Lib/xml/

2016-10-07 17:47:39
html.unescape()

html.unescape(s) Convert all named and numeric character references (e.g. >, >,

2016-10-07 17:33:49
html.parser.HTMLParser.feed()

HTMLParser.feed(data) Feed some text to the parser. It is processed insofar as it consists of complete elements; incomplete

2016-10-07 17:33:46
xml.sax.saxutils.prepare_input_source()

xml.sax.saxutils.prepare_input_source(source, base='') This function takes an input source and an optional base URL and returns

2016-10-07 17:48:23