What is the best way (or even the various ways) to pretty print xml in python?
|
|||||||||||||||||||
|
|
Here's my (hacky?) solution to get around the ugly text node problem.
The above code will produce:
Instead of this:
Disclaimer: There are probably some limitations. |
|||||||||||
|
|
lxml is recent, updated, and includes a pretty print function
Check out the lxml tutorial: http://lxml.de/tutorial.html |
|||||||||||||||
|
|
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:
|
|||
|
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
Example usage:
|
||||
|
If you're using a DOM implementation, each has their own form of pretty-printing built-in:
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. |
|||
|
|
|
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
|
|||
|
|
|
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. |
|||
|
|
|
If you have Note that this method uses an program external to python, which makes it sort of a hack.
|
|||
|
|
|
I tried to edit "ade"s answer above, but Stack Overflow wouldn't let me edit after I had initially provided feedback anonymously. This is a less buggy version of the function to pretty-print an ElementTree.
|
||||
|
|