Skip to content

Instantly share code, notes, and snippets.

@afaqk9394
Created November 3, 2019 06:05
Show Gist options
  • Select an option

  • Save afaqk9394/06293e85e90d9b6b4426661e4e78a7d3 to your computer and use it in GitHub Desktop.

Select an option

Save afaqk9394/06293e85e90d9b6b4426661e4e78a7d3 to your computer and use it in GitHub Desktop.
HTTP response code 404
import requests as req
response = req.get('https://github.com/apps/devnet-app/blah')
print (response.status_code)
if response.status_code == 200:
print('Success!')
elif response.status_code == 404:
print('Not Found.')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment