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.sax.xmlreader.XMLReader
  • References/Python/Python/Structured Markup

class xml.sax.xmlreader.XMLReader Base class which can be inherited by SAX parsers.

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

Document.createAttribute(name) Create and return an attribute node. This method does not associate the attribute node with any

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

HTMLParser.handle_charref(name) This method is called to process decimal and hexadecimal numeric character references of the

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

Element.setAttributeNS(namespaceURI, qname, value) Set an attribute value from a string, given a namespaceURI and a

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

exception xml.dom.InvalidAccessErr Raised if a parameter or an operation is not supported on the underlying object.

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

Element.setAttribute(name, value) Set an attribute value from a string.

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.dom.DOMImplementation.createDocumentType()
  • References/Python/Python/Structured Markup

DOMImplementation.createDocumentType(qualifiedName, publicId, systemId) Return a new DocumentType object that encapsulates

2025-01-10 15:47:30