What is the best way (or even the various ways) to pretty print xml in python?

link|improve this question

feedback

9 Answers

up vote 44 down vote accepted
import xml.dom.minidom

xml = xml.dom.minidom.parse(xml_fname) # or xml.dom.minidom.parseString(xml_string)
pretty_xml_as_string = xml.toprettyxml()
link|improve this answer
1  
This will get you pretty xml, but note that what comes out in the text node is actually different than what came in - there are new whitespaces on text nodes. This may cause you trouble if you are expecting EXACTLY what fed in to feed out. – icnivad Jan 12 at 18:03
1  
@icnivad: while it is important to point that fact, it seems strange to me that somebody would want to prettify its XML if spaces were of some importance for them ! – vaab Jan 30 at 9:49
1  
Nice! Can collapse this to a one liner: python -c 'import sys;import xml.dom.minidom;s=sys.stdin.read();print xml.dom.minidom.parseString(s).toprettyxml()' – Anton I. Sipos Apr 17 at 22:17
minidom is widely panned as a pretty bad xml implementation. If you allow yourself to add external depenencies, lxml is far superior. – bukzor Apr 20 at 16:34
1  
Not a fan of redefining xml there from being a module to the output object, but the method otherwise works. I'd love to find a nicer way to go from the core etree to pretty printing. While lxml is cool, there are times when I'd prefer to keep to the core if I can. – Danny Staple May 1 at 16:05
feedback

Here's my (hacky?) solution to get around the ugly text node problem.

uglyXml = doc.toprettyxml(indent='  ')

text_re = re.compile('>\n\s+([^<>\s].*?)\n\s+</', re.DOTALL)    
prettyXml = text_re.sub('>\g<1></', uglyXml)

print prettyXml

The above code will produce:

<?xml version="1.0" ?>
<issues>
  <issue>
    <id>1</id>
    <title>Add Visual Studio 2005 and 2008 solution files</title>
    <details>We need Visual Studio 2005/2008 project files for Windows.</details>
  </issue>
</issues>

Instead of this:

<?xml version="1.0" ?>
<issues>
  <issue>
    <id>
      1
    </id>
    <title>
      Add Visual Studio 2005 and 2008 solution files
    </title>
    <details>
      We need Visual Studio 2005/2008 project files for Windows.
    </details>
  </issue>
</issues>

Disclaimer: There are probably some limitations.

link|improve this answer
Thank you! This was my one gripe with all the pretty printing methods. Works well with the few files I tried. – iano Sep 17 '10 at 17:00
Works pretty well! – Xavier Jan 19 '11 at 22:04
I found a pretty 'almost identical' solution, but yours is more direct, using re.compile prior to sub operation (I was using re.findall() twice, zip and a for loop with str.replace()...) – heltonbiker Sep 16 '11 at 20:49
Hacky Schmacky : works for me! +1 – monojohnny Feb 22 at 20:33
damm good, worked like charm! – krisdigitx Mar 8 at 10:21
show 1 more comment
feedback

lxml is recent, updated, and includes a pretty print function

import lxml.etree as etree

x = etree.parse("filename")
print etree.tostring(x, pretty_print = True)

Check out the lxml tutorial: http://codespeak.net/lxml/tutorial.html

link|improve this answer
1  
Only downside to lxml is a dependency on external libraries. This I think is not so bad under Windows the libraries are packaged with the module. Under linux they are an aptitude install away. Under OS/X I'm not sure. – intuited Oct 15 '10 at 5:08
2  
On OS X you just need a functioning gcc and easy_install/pip. – pkoch Feb 8 '11 at 16:09
4  
lxml pretty printer isn't reliable and won't pretty print your XML properly in lots of cases explained in lxml FAQ. I quit using lxml for pretty printing after several corner cases that just don't work (ie this won't fix: Bug #910018). All these problem is related to uses of XML values containing spaces that should be preserved. – vaab Jan 30 at 9:57
This is the industry standard. – bukzor Apr 20 at 16:35
feedback

Another solution is to use this indent function: http://effbot.org/zone/element-lib.htm#prettyprint and the elementtree library that's built in to Python since 2.4. Here's what that would look like:



from xml.etree import ElementTree

def indent(elem, level=0):
    i = "\n" + level*"  "
    if len(elem):
        if not elem.text or not elem.text.strip():
            elem.text = i + "  "
        if not elem.tail or not elem.tail.strip():
            elem.tail = i
        for elem in elem:
            indent(elem, level+1)
        if not elem.tail or not elem.tail.strip():
            elem.tail = i
    else:
        if level and (not elem.tail or not elem.tail.strip()):
            elem.tail = i

root = ElementTree.parse('/tmp/xmlfile').getroot()
indent(root)

link|improve this answer
...and then just use lxml tostring! – Stefano Nov 21 '11 at 19:53
That works perfectly. – deuberger Apr 27 at 20:44
feedback

As others pointed out, lxml has a pretty printer built in.

Be aware though that by default it changes CDATA sections to normal text, which can have nasty results.

Here's a Python function that preserves the input file and only changes the indentation (notice the strip_cdata=False). Furthermore it makes sure the output uses UTF-8 as encoding instead of the default ASCII (notice the encoding='utf-8'):

from lxml import etree

def prettyPrintXml(xmlFilePathToPrettyPrint):
    assert xmlFilePathToPrettyPrint is not None
    parser = etree.XMLParser(resolve_entities=False, strip_cdata=False)
    document = etree.parse(xmlFilePathToPrettyPrint, parser)
    document.write(xmlFilePathToPrettyPrint, pretty_print=True, encoding='utf-8')

Example usage:

prettyPrintXml('some_folder/some_file.xml')
link|improve this answer
+1 for mentioning CDATA. – Attila O. May 31 '11 at 12:14
feedback

If you're using a DOM implementation, each has their own form of pretty-printing built-in:

# minidom
#
document.toprettyxml()

# 4DOM
#
xml.dom.ext.PrettyPrint(document, stream)

# pxdom (or other DOM Level 3 LS-compliant imp)
#
serializer.domConfig.setParameter('format-pretty-print', True)
serializer.writeToString(document)

If you're using something else without its own pretty-printer — or those pretty-printers don't quite do it the way you want —  you'd probably have to write or subclass your own serialiser.

link|improve this answer
feedback

I had some problems with minidom's pretty print. I'd get a UnicodeError whenever I tried pretty-printing a document with characters outside the given encoding, eg if I had a β in a document and I tried doc.toprettyxml(encoding='latin-1'). Here's my workaround for it:

def toprettyxml(doc, encoding):
    """Return a pretty-printed XML document in a given encoding."""
    unistr = doc.toprettyxml().replace(u'<?xml version="1.0" ?>',
                          u'<?xml version="1.0" encoding="%s"?>' % encoding)
    return unistr.encode(encoding, 'xmlcharrefreplace')
link|improve this answer
feedback

XML pretty print for python looks pretty good for this task. (Appropriately named, too.)

An alternative is to use pyXML, which has a PrettyPrint function.

link|improve this answer
feedback

If you have xmllint you can spawn a subprocess and use it. xmllint --format <file> pretty-prints its input XML to standard output.

Note that this method uses an program external to python, which makes it sort of a hack.

def pretty_print_xml(xml):
    proc = subprocess.Popen(
        ['xmllint', '--format', '/dev/stdin'],
        stdin=subprocess.PIPE,
        stdout=subprocess.PIPE,
    )
    (output, error_output) = proc.communicate(xml);
    return output

print(pretty_print_xml(data))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.