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

xmlparser.NotationDeclHandler(notationName, base, systemId, publicId) Called for notation declarations. notationName

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

iter(tag=None) Creates and returns a tree iterator for the root element. The iterator loops over all elements in this tree,

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

xml.etree.ElementTree.XML(text, parser=None) Parses an XML section from a string constant. This function can be used to embed

2025-01-10 15:47:30
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.dom.DOMImplementation.hasFeature()
  • References/Python/Python/Structured Markup

DOMImplementation.hasFeature(feature, version) Return true if the feature identified by the pair of strings feature

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.DTDHandler.notationDecl()
  • References/Python/Python/Structured Markup

DTDHandler.notationDecl(name, publicId, systemId) Handle a notation declaration event.

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

class xml.etree.ElementTree.TreeBuilder(element_factory=None) Generic element structure builder. This builder converts a sequence

2025-01-10 15:47:30