17 lines
446 B
Python
Executable file
17 lines
446 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import time, setuptools, httptools, twitools
|
|
|
|
sites = setuptools.getListSetting("HTTP", "sites")
|
|
two = twitools.twObject()
|
|
|
|
def check(site, recipient):
|
|
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))
|
|
|
|
for s in sites:
|
|
check(s[0], s[1])
|