Skip to content

Instantly share code, notes, and snippets.

@mpkocher
Created October 10, 2012 22:12
Show Gist options
  • Save mpkocher/3868815 to your computer and use it in GitHub Desktop.
Save mpkocher/3868815 to your computer and use it in GitHub Desktop.
Example of HTML parsing with Beautiful Soup
import sys
from bs4 import BeautifulSoup
html_file = sys.argv[1]
with open(html_file, 'r') as f:
s = BeautifulSoup(f)
print s.title.string
sys.exit(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment