XmlDict¶
Attributes¶
Classes¶
xmltodict type dictionary providing and propagating access to keys without @ sign |
|
xmltodict type list propagating access to keys without @ sign |
Functions¶
|
|
|
Module Contents¶
- class XmlDict.XmlDict¶
Bases:
dictxmltodict type dictionary providing and propagating access to keys without @ sign
- __getitem__(key: str)¶
x.__getitem__(y) <==> x[y]
- get(key: str, default=None)¶
Return the value for key if key is in the dictionary, else default.
- class XmlDict.XmlList¶
Bases:
listxmltodict type list propagating access to keys without @ sign
- __getitem__(index: int)¶
x.__getitem__(y) <==> x[y]
- __next__()¶
- XmlDict.xml2dict(xml_metadata: str) dict¶
- XmlDict.dict2xml(dct: dict) str¶
- XmlDict.dct¶