Skip to content

Instantly share code, notes, and snippets.

@homoludens
Created April 22, 2010 20:58
Show Gist options
  • Save homoludens/375804 to your computer and use it in GitHub Desktop.
Save homoludens/375804 to your computer and use it in GitHub Desktop.
import urllib
# Get a file-like object for the Python Web site's home page.
f = urllib.urlopen("http://www.python.org")
# Read from the object, storing the page's contents in 's'.
s = f.read()
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment