Skip to content

Instantly share code, notes, and snippets.

@mutaku
Created December 14, 2012 04:14
Show Gist options
  • Select an option

  • Save mutaku/4282652 to your computer and use it in GitHub Desktop.

Select an option

Save mutaku/4282652 to your computer and use it in GitHub Desktop.
Check that a URL goes somewhere
from urllib2 import urlopen
URLfail = False
try:
code = urlopen(the_url).code
if code >= 400:
URLfail = True
except:
URLfail = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment