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

itertext() Creates a text iterator. The iterator loops over this element and all subelements, in document order, and returns

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
html.parser.HTMLParser.feed()
  • References/Python/Python/Structured Markup

HTMLParser.feed(data) Feed some text to the parser. It is processed insofar as it consists of complete elements; incomplete

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
html.entities.entitydefs
  • References/Python/Python/Structured Markup

html.entities.entitydefs A dictionary mapping XHTML 1.0 entity definitions to their replacement text in ISO Latin-1.

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

HTMLParser.handle_entityref(name) This method is called to process a named character reference of the form &name;

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

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

2025-01-10 15:47:30