Skip to content

Instantly share code, notes, and snippets.

@tunaranch
tunaranch / gist:1294370
Created October 18, 2011 01:05
BeautifulSoup wrapper than prettifies stdin
#!/usr/bin/python
from BeautifulSoup import BeautifulSoup
import sys
soup = BeautifulSoup(sys.stdin.read())
print soup.prettify()