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
196 B

  1. # Using the requests library:
  2. import requests
  3. try:
  4. requests.get("PING_URL", timeout=10)
  5. except requests.RequestException as e:
  6. # Log ping failure here...
  7. print("Ping failed: %s" % e)