Skip to content

Instantly share code, notes, and snippets.

@l1x
Created April 22, 2016 11:32
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save l1x/3d51446db222a9ee7a06e55dd462820a to your computer and use it in GitHub Desktop.
import mechanize
def viewPage(url):
browser = mechanize.Browser()
page = browser.open(url)
source_code = page.read()
print source_code
viewPage('https://atw.hu/')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment