Skip to content

Instantly share code, notes, and snippets.

@daGrevis
Created October 24, 2012 08:15
Show Gist options
  • Select an option

  • Save daGrevis/3944768 to your computer and use it in GitHub Desktop.

Select an option

Save daGrevis/3944768 to your computer and use it in GitHub Desktop.
Pretty HTML
def pretty_html(html):
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(html)
return soup.prettify()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment