html.entities.name2codepoint
  • References/Python/Python/Structured Markup

html.entities.name2codepoint A dictionary that maps HTML entity names to the Unicode code points.

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
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.parsers.expat.xmlparser.CommentHandler()
  • References/Python/Python/Structured Markup

xmlparser.CommentHandler(data) Called for comments. data is the text of the comment, excluding the leading '<

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

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

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

Node.unlink() Break internal references within the DOM so that it will be garbage collected on versions of Python without cyclic

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

xml.sax.handler.feature_namespaces value: "http://xml.org/sax/features/namespaces"

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

iterfind(match, namespaces=None) Same as Element.iterfind(), starting at the root of the tree.

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

SAXException.getException() Return an encapsulated exception object, or None.

2025-01-10 15:47:30