Skip to content

Instantly share code, notes, and snippets.

@mape
Created May 28, 2010 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mape/417068 to your computer and use it in GitHub Desktop.
Save mape/417068 to your computer and use it in GitHub Desktop.
import urllib2
import sys
from BeautifulSoup import BeautifulSoup
print sys.argv[1]
page = urllib2.urlopen(sys.argv[1])
print page
soup = BeautifulSoup(page)
print soup.prettify()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment