Guest User

Untitled

a guest
May 27th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. from urllib.request import urlopen
  2.  
  3. def internet_on():
  4. try:
  5. response = urlopen('https://www.google.com/', timeout=10)
  6. return True
  7. except:
  8. return False
Add Comment
Please, Sign In to add comment