XmlDict ======= .. py:module:: XmlDict Attributes ---------- .. autoapisummary:: XmlDict.dct Classes ------- .. autoapisummary:: XmlDict.XmlDict XmlDict.XmlList Functions --------- .. autoapisummary:: XmlDict.xml2dict XmlDict.dict2xml Module Contents --------------- .. py:class:: XmlDict Bases: :py:obj:`dict` xmltodict type dictionary providing and propagating access to keys without @ sign .. py:method:: __getitem__(key: str) x.__getitem__(y) <==> x[y] .. py:method:: get(key: str, default=None) Return the value for key if key is in the dictionary, else default. .. py:method:: copy() -> XmlDict D.copy() -> a shallow copy of D .. py:class:: XmlList Bases: :py:obj:`list` xmltodict type list propagating access to keys without @ sign .. py:method:: __getitem__(index: int) x.__getitem__(y) <==> x[y] .. py:method:: __iter__() -> XmlList Implement iter(self). .. py:method:: __next__() .. py:function:: xml2dict(xml_metadata: str) -> dict .. py:function:: dict2xml(dct: dict) -> str .. py:data:: dct