python-uptimerobot
python-uptimerobot copied to clipboard
python-uptimerobot is an Uptime Robot http://uptimerobot.com integration for your Python project.
According to https://uptimerobot.com/apiv1 the version 1 of the API was retired on 1 Jan 2017.
https://github.com/CodeBradley/python-uptimerobot/blob/master/uptimerobot/uptimerobot.py#L228
Allows iterating all the monitors, regardless of the getMonitors limit, which defaults to 50. IterMonitors is a Python generator. The API calls are done on demand, using Python yield. Thus...
alert_contact.py from **future** import absolute_import, division, print_function, unicode_literals from termcolor import colored class AlertContact(object): class Type: SMS = 1 EMAIL = 2 TWITTER = 3 BOXCAR = 4 PUSHBULLET =...
Hi @CodeBradley I'm happy that you continue the development of python-uptimerobot and maintain the package. We should transfer the project on the [Python Package Index](https://pypi.python.org/pypi/python-uptimerobot) as well - otherwise you...