exml = {} """ This is a restricted version of standard Python xml modules. It provides the same classes and functions. --- Adapting the example from [docs.python.org](docs.python.org): ``` import extronlib.standard.exml.etree.ElementTree as ET country_data_as_string = \"\"\" - 1 - 2008 - 141100 - - - 4 - 2011 - 59900 - - 68 - 2011 - 13600 - - \"\"\" root = ET.fromstring(country_data_as_string) print(root.tag) ``` """