Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | #!/usr/bin/env python3 |
||
2 | # -*- coding: utf-8 -*- |
||
3 | |||
4 | # pylint: disable=C0111,C0326,C0103 |
||
5 | |||
6 | """XML tools.""" |
||
7 | |||
8 | import xml.dom.minidom |
||
9 | |||
10 | |||
11 | def pretty_xml(xmlstr): |
||
12 | """Prettify input XML with ``xml.dom.minidom``.""" |
||
13 | mdx = xml.dom.minidom.parseString(xmlstr) |
||
14 | return mdx.toprettyxml(indent=" ") |
||
15 |