Last active
June 18, 2016 13:51
-
-
Save satwikkansal/9871d1a345bfab08ab439fe109020f29 to your computer and use it in GitHub Desktop.
Fetching the content
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
import requests | |
response = requests.get('https://in.pycon.org/cfp/2016/proposals/') | |
if response.status_code == 200: | |
print "Fetched the page sucessfully" | |
print response.content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment