Functions | |
| def | prettify |
| Return a pretty-printed XML string for the given XML element. More... | |
| def | write_result |
| Write an XML element into a pretty XML output file. More... | |
| def | parse_xml |
| Parse an XML file. More... | |
| def pylmflib.pylmflib.utils.xml_format.parse_xml | ( | filename | ) |
Parse an XML file.
| filename | The name of the XML file to parse with full path, for instance 'input.xml'. |
Definition at line 35 of file xml_format.py.
| def pylmflib.pylmflib.utils.xml_format.prettify | ( | element, | |
encoding = ENCODING |
|||
| ) |
Return a pretty-printed XML string for the given XML element.
| element | An XML element. |
| encoding | Encoding mode. Default value is 'utf-8'. |
Definition at line 13 of file xml_format.py.
| def pylmflib.pylmflib.utils.xml_format.write_result | ( | element, | |
| filename, | |||
encoding = ENCODING |
|||
| ) |
Write an XML element into a pretty XML output file.
| element | An XML element. |
| filename | The name of the XML file to write with full path, for instance 'output.xml'. |
| encoding | Encoding mode. Default value is 'utf-8'. |
Definition at line 24 of file xml_format.py.
1.8.7