Skip to content

Instantly share code, notes, and snippets.

@panchambharadwaj
Last active April 26, 2018 07:57
Show Gist options
  • Select an option

  • Save panchambharadwaj/82e6019886ea94d8350f3022d75c2fcd to your computer and use it in GitHub Desktop.

Select an option

Save panchambharadwaj/82e6019886ea94d8350f3022d75c2fcd to your computer and use it in GitHub Desktop.
Graceful way to handle requests exception handling
import requests
try:
r = requests.get('url')
except requests.exceptions.RequestException as e:
print e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment