Answers for "how to check if internet is working in python"

2

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
Posted by: Guest on December-30-2020

Code answers related to "how to check if internet is working in python"

Python Answers by Framework

Browse Popular Code Answers by Language