What is the best way (or even the various ways) to pretty print xml in python?
|
feedback
|
| |||||||||||||||||||
feedback
|
|
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. | |||||||||||
feedback
|
|
lxml is recent, updated, and includes a pretty print function
Check out the lxml tutorial: http://codespeak.net/lxml/tutorial.html | |||||||||||||||
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:
| |||||
|
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
Example usage:
| ||||
|
feedback
|
|
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. | |||
|
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
| |||
|
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. | |||
|
feedback
|
|
If you have Note that this method uses an program external to python, which makes it sort of a hack.
| |||
|
feedback
|