Skip to content

Instantly share code, notes, and snippets.

@ljuba-ned
Forked from mutaku/checkurl.py
Created January 27, 2013 01:09
Show Gist options
  • Select an option

  • Save ljuba-ned/4645648 to your computer and use it in GitHub Desktop.

Select an option

Save ljuba-ned/4645648 to your computer and use it in GitHub Desktop.
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