Last active
December 10, 2015 17:58
-
-
Save ashish173/4470826 to your computer and use it in GitHub Desktop.
this is simple gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_page(): | |
import urllib2 | |
f = urlib2.urlopen("https://www.google.com") | |
content = f.read() | |
return content | |
content = get_page() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment