Skip to content

Instantly share code, notes, and snippets.

@spellancer
Created March 12, 2014 15:02
Show Gist options
  • Select an option

  • Save spellancer/9508746 to your computer and use it in GitHub Desktop.

Select an option

Save spellancer/9508746 to your computer and use it in GitHub Desktop.
connection_test
import urllib2
def internet_on():
try:
response=urllib2.urlopen('http://74.125.228.100',timeout=1)
return True
except urllib2.URLError as err: pass
return False
print internet_on()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment