Skip to content

Instantly share code, notes, and snippets.

@yasinkuyu
Last active January 4, 2021 10:57
Show Gist options
  • Save yasinkuyu/aa505c1f4bbb4016281d7167b8fa2fc2 to your computer and use it in GitHub Desktop.
Save yasinkuyu/aa505c1f4bbb4016281d7167b8fa2fc2 to your computer and use it in GitHub Desktop.
Python Check Internet Connection
#@yasinkuyu 08/09/2017
def check_internet():
url='http://www.google.com/'
timeout=5
try:
_ = requests.get(url, timeout=timeout)
return True
except requests.ConnectionError:
print("İnternet bağlantısı yok.")
return False
@yasinkuyu
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment