xml.dom.NotFoundErr
  • References/Python/Python/Structured Markup

exception xml.dom.NotFoundErr Exception when a node does not exist in the referenced context. For example, NamedNodeMap

2025-01-10 15:47:30
xml.dom.NamedNodeMap.item()
  • References/Python/Python/Structured Markup

NamedNodeMap.item(index) Return an attribute with a particular index. The order you get the attributes in is arbitrary but will

2025-01-10 15:47:30
xml.dom.Document.createTextNode()
  • References/Python/Python/Structured Markup

Document.createTextNode(data) Create and return a text node containing the data passed as a parameter. As with the other creation

2025-01-10 15:47:30
html.parser.HTMLParser.handle_starttag()
  • References/Python/Python/Structured Markup

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

2025-01-10 15:47:30
xml.dom.Node.replaceChild()
  • References/Python/Python/Structured Markup

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

2025-01-10 15:47:30
xml.parsers.expat.xmlparser.CurrentLineNumber
  • References/Python/Python/Structured Markup

xmlparser.CurrentLineNumber Current line number in the parser input.

2025-01-10 15:47:30
xml.sax.handler.ContentHandler.characters()
  • References/Python/Python/Structured Markup

ContentHandler.characters(content) Receive notification of character data. The Parser will call

2025-01-10 15:47:30
xml.parsers.expat.xmlparser.DefaultHandler()
  • References/Python/Python/Structured Markup

xmlparser.DefaultHandler(data) Called for any characters in the XML document for which no applicable handler has been specified

2025-01-10 15:47:30
xml.sax.handler.feature_external_pes
  • References/Python/Python/Structured Markup

xml.sax.handler.feature_external_pes value: "http://xml.org/sax/features/exte

2025-01-10 15:47:30
xml.sax.xmlreader.XMLReader.parse()
  • References/Python/Python/Structured Markup

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

2025-01-10 15:47:30