Created
June 5, 2012 15:20
-
-
Save kristopherjohnson/2875623 to your computer and use it in GitHub Desktop.
Read XML file from stdin; write pretty-printed XML to stdout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
from lxml import etree | |
from sys import stdin | |
t = etree.parse(stdin) | |
print etree.tostring(t, pretty_print=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note that this requires the lxml module, which can be installed via "sudo easy_install lxml". See http://lxml.de/ for more info.