Skip to content

Instantly share code, notes, and snippets.

@kristopherjohnson
Created June 5, 2012 15:20
Show Gist options
  • Save kristopherjohnson/2875623 to your computer and use it in GitHub Desktop.
Save kristopherjohnson/2875623 to your computer and use it in GitHub Desktop.
Read XML file from stdin; write pretty-printed XML to stdout
#!/usr/bin/python
from lxml import etree
from sys import stdin
t = etree.parse(stdin)
print etree.tostring(t, pretty_print=True)
@kristopherjohnson
Copy link
Author

Note that this requires the lxml module, which can be installed via "sudo easy_install lxml". See http://lxml.de/ for more info.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment