Skip to content

Instantly share code, notes, and snippets.

@tunaranch
Created October 18, 2011 01:05
Show Gist options
  • Save tunaranch/1294370 to your computer and use it in GitHub Desktop.
Save tunaranch/1294370 to your computer and use it in GitHub Desktop.
BeautifulSoup wrapper than prettifies stdin
#!/usr/bin/python
from BeautifulSoup import BeautifulSoup
import sys
soup = BeautifulSoup(sys.stdin.read())
print soup.prettify()
@brazilbean
Copy link

Good work. Just what I needed!

@michaelgugino
Copy link

#!/usr/bin/python
from bs4 import BeautifulSoup
import sys

soup = BeautifulSoup(sys.stdin.read())
print soup.prettify()

Update for BeautifulSoup4

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