Metadata-Version: 2.1
Name: pyuptimerobot
Version: 0.0.3
Summary: A python module to monitor Uptime Robot monitors.
Home-page: https://github.com/ludeeus/pyuptimerobot
Author: Joakim Sorensen
Author-email: joasoe@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# pyuptimerobot - A python module to monitor Uptime Robot monitors.

#### Notes
This has been tested with python 3.6  
This module require an API key from Uptime Robot.
This module uses these external libararies:
- requests

#### Install
```bash
pip install pyuptimerobot
```

#### Usage:
```python
from pyuptimerobot import UptimeRobot

apikey = 'u432898-d2507e493b31217e6c64fd35'
monitor = '1527172614' #optional
ur = UptimeRobot()

#Get monitor information:
result = ur.getMonitors(apikey, monitor)

#Print the result:
print(result)
```

