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.etree.ElementTree.XMLPullParser
  • References/Python/Python/Structured Markup

class xml.etree.ElementTree.XMLPullParser(events=None) A pull parser suitable for non-blocking applications. Its input-side

2025-01-10 15:47:30
xml.etree.ElementTree.TreeBuilder.start()
  • References/Python/Python/Structured Markup

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

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
xml.dom.Document.createElement()
  • References/Python/Python/Structured Markup

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

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
xml.etree.ElementTree.Element.tag
  • References/Python/Python/Structured Markup

tag A string identifying what kind of data this element represents (the element type, in other words).

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

AttributesNS.getNameByQName(name) Return the (namespace, localname) pair for a qualified name.

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

xml.sax.handler.all_features List of all features.

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

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

2025-01-10 15:47:30