You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
217 B

  1. # Using Python 3 standard library:
  2. import socket
  3. import urllib.request
  4. try:
  5. urllib.request.urlopen("PING_URL", timeout=10)
  6. except socket.error as e:
  7. # Log ping failure here...
  8. print("Ping failed: %s" % e)