«
class documentation

class XMLFile:

Constructor: XMLFile(path)

Implements interfaces: twisted.web.iweb.ITemplateLoader

View In Hierarchy

An ITemplateLoader that loads and parses XML from a file.

Method __init__ Run the parser on a file.
Method __repr__ Undocumented
Method load Return the document, first loading it if necessary.
Method _loadDoc Read and parse the XML.
Instance Variable _loadedTemplate The loaded document, or None, if not loaded.
Instance Variable _path The file that is being loaded from.
def __init__(self, path: FilePath[Any]):

Run the parser on a file.

Parameters
path:FilePath[Any]The file from which to load the XML.
def __repr__(self) -> str:

Undocumented

def load(self) -> list[Flattenable]:

Return the document, first loading it if necessary.

Returns
list[Flattenable]the loaded document.
def _loadDoc(self) -> list[Flattenable]:

Read and parse the XML.

Returns
list[Flattenable]the loaded document.
_loadedTemplate: list[Flattenable] | None =

The loaded document, or None, if not loaded.

_path: FilePath[Any] =

The file that is being loaded from.