xml.sax.xmlreader.Locator

class xml.sax.xmlreader.Locator Interface for associating a SAX event with a document location. A locator object will return

2016-10-07 17:48:28
xml.dom.Document.getElementsByTagNameNS()

Document.getElementsByTagNameNS(namespaceURI, localName) Search for all descendants (direct children, children’s children, etc

2016-10-07 17:47:41
xml.dom.Document.createElement()

Document.createElement(tagName) Create and return a new element node. The element is not inserted into the document when it

2016-10-07 17:47:41
xml.dom.IndexSizeErr

exception xml.dom.IndexSizeErr Raised when an index or size parameter to a method is negative or exceeds the allowed values

2016-10-07 17:47:47
xml.dom.DocumentType.internalSubset

DocumentType.internalSubset A string giving the complete internal subset from the document. This does not include the brackets

2016-10-07 17:47:42
xml.etree.ElementTree.parse()

xml.etree.ElementTree.parse(source, parser=None) Parses an XML section into an element tree. source is a filename or

2016-10-07 17:48:03
html.parser.HTMLParser.handle_starttag()

HTMLParser.handle_starttag(tag, attrs) This method is called to handle the start of a tag (e.g. <div id="main">)

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

Element.getElementsByTagNameNS(namespaceURI, localName) Same as equivalent method in the Document class.

2016-10-07 17:47:44
xml.sax.xmlreader.XMLReader.parse()

XMLReader.parse(source) Process an input source, producing SAX events. The source object can be a system identifier

2016-10-07 17:48:29
xml.etree.ElementTree.fromstring()

xml.etree.ElementTree.fromstring(text) Parses an XML section from a string constant. Same as XML(). text

2016-10-07 17:48:02