xml.etree.ElementTree.Element.findall()
  • References/Python/Python/Structured Markup

findall(match, namespaces=None) Finds all matching subelements, by tag name or path. Returns a list containing

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

EntityResolver.resolveEntity(publicId, systemId) Resolve the system identifier of an entity and return either the system identifier

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.handler.ErrorHandler.fatalError()
  • References/Python/Python/Structured Markup

ErrorHandler.fatalError(exception) Called when the parser encounters an error it cannot recover from; parsing is expected to

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

XMLReader.getProperty(propertyname) Return the current setting for property propertyname. If the property is not recognized

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.dom.DocumentType.name
  • References/Python/Python/Structured Markup

DocumentType.name The name of the root element as given in the DOCTYPE declaration, if present.

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