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.
|
import requests
|
|
URL = "PING_URL"
|
|
|
|
def do_work():
|
|
# Do your number crunching, backup dumping, newsletter sending work here.
|
|
# Return a truthy value on success.
|
|
# Return a falsy value or throw an exception on failure.
|
|
return True
|
|
|
|
success = False
|
|
try:
|
|
success = do_work()
|
|
finally:
|
|
# On success, requests PING_URL
|
|
# On failure, requests PING_URL/fail
|
|
requests.get(URL if success else URL + "/fail")
|