Skip to content

Instantly share code, notes, and snippets.

@satwikkansal
Last active June 18, 2016 13:51
Show Gist options
  • Save satwikkansal/9871d1a345bfab08ab439fe109020f29 to your computer and use it in GitHub Desktop.
Save satwikkansal/9871d1a345bfab08ab439fe109020f29 to your computer and use it in GitHub Desktop.
Fetching the content
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