2016-09-13 21:27:10 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import time, setuptools, httptools, twitools
|
|
|
|
|
2017-03-19 20:11:16 +00:00
|
|
|
def check(site, recipient, two = twitools.twObject()):
|
2016-09-13 21:27:10 +00:00
|
|
|
status = httptools.getStatus(site)
|
|
|
|
if not status == 200:
|
|
|
|
if status == None:
|
|
|
|
two.tweet("@%s Site %s looks down from here!" % (recipient, site))
|
|
|
|
else:
|
|
|
|
two.tweet("@%s Site %s returns status code %s!" % (recipient, site, status))
|
|
|
|
|
2017-03-19 20:11:16 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
sites = setuptools.getListSetting("HTTP", "sites")
|
|
|
|
|
|
|
|
for s in sites:
|
|
|
|
check(s[0], s[1])
|