python how to check network connections code example
Example: python check if internet is available
import urllib.request
def internet_on():
try:
urllib.request.urlopen('http://216.58.192.142', timeout=2)
return True
except:
return False