xml.sax.parseString()
  • References/Python/Python/Structured Markup

xml.sax.parseString(string, handler, error_handler=handler.ErrorHandler()) Similar to parse(), but parses from

2025-01-10 15:47:30
xml.etree.ElementTree.QName
  • References/Python/Python/Structured Markup

class xml.etree.ElementTree.QName(text_or_uri, tag=None) QName wrapper. This can be used to wrap a QName attribute value, in

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

itertext() Creates a text iterator. The iterator loops over this element and all subelements, in document order, and returns

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

Locator.getLineNumber() Return the line number where the current event begins.

2025-01-10 15:47:30
xml.dom.Text.data
  • References/Python/Python/Structured Markup

Text.data The content of the text node as a string.

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

ContentHandler.ignorableWhitespace(whitespace) Receive notification of ignorable whitespace in element content.

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

Element.getAttributeNS(namespaceURI, localName) Return the value of the attribute named by namespaceURI and localName

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

HTMLParser.unknown_decl(data) This method is called when an unrecognized declaration is read by the parser.

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

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

2025-01-10 15:47:30
xml.sax.saxutils.escape()
  • References/Python/Python/Structured Markup

xml.sax.saxutils.escape(data, entities={}) Escape '&', '<', and '>' in a string

2025-01-10 15:47:30