xml.dom.Node.nodeName
  • References/Python/Python/Structured Markup

Node.nodeName This has a different meaning for each node type; see the DOM specification for details. You can always get the

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

XMLReader.getEntityResolver() Return the current

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

Node.toxml(encoding=None) Return a string or byte string containing the XML represented by the DOM node. With

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

DOMImplementation.createDocument(namespaceUri, qualifiedName, doctype) Return a new Document object (the root of

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

ExpatError.offset Character offset into the line where the error occurred. The first column is numbered 0.

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

DTDHandler.unparsedEntityDecl(name, publicId, systemId, ndata) Handle an unparsed entity declaration event.

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

ContentHandler.skippedEntity(name) Receive notification of a skipped entity. The Parser will

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

xml.sax.saxutils.unescape(data, entities={}) Unescape '&', '<', and '>'

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

findtext(match, default=None, namespaces=None) Finds text for the first subelement matching match. match may

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

set(key, value) Set the attribute key on the element to value.

2025-01-10 15:47:30