Skip to content

Instantly share code, notes, and snippets.

@SofianeHamlaoui
Last active September 11, 2019 22:52
Show Gist options
  • Save SofianeHamlaoui/a33cc85222a0b9400a757386262a7b1e to your computer and use it in GitHub Desktop.
Save SofianeHamlaoui/a33cc85222a0b9400a757386262a7b1e to your computer and use it in GitHub Desktop.
Check Internet Connection , Check Network Connection Python
def checkconnect():
url='http://www.google.com/'
try:
_ = requests.get(url, timeout=2)
return True
except requests.ConnectionError:
exit(" \033[1;33;40m-[!]- YOU NEED INTERNET CONNECTION CONTINUE -[!]-\033[0m")
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment