Skip to content

Instantly share code, notes, and snippets.

@FloPinguin
Created February 2, 2020 13:54
Show Gist options
  • Save FloPinguin/8224acfb1e49a4346448f038b9e2afe4 to your computer and use it in GitHub Desktop.
Save FloPinguin/8224acfb1e49a4346448f038b9e2afe4 to your computer and use it in GitHub Desktop.
Wait for internet connection in python
import socket
import time
def is_connected():
try:
socket.create_connection(("www.google.com", 80))
return True
except OSError:
pass
return False
while True:
print("Checking connection")
if is_connected():
print ("Connected!")
raise SystemExit
else:
print("No connection - Waiting 15s")
time.sleep(15)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment