Metadata-Version: 1.1
Name: python-uptimerobot
Version: 0.1.5
Summary: Uptime Robot http://uptimerobot.com integration for your Python project. 
    There is a Django version (https://github.com/arteria/django-uptimerobot) available containing the Uptime Robot 
    API implementation and the infrastructure stuff used by Djangonauts. 
Home-page: https://github.com/arteria/python-uptimerobot
Author: arteria GmbH
Author-email: admin@arteria.ch
License: The MIT License
Description: Uptime Robot integration for Python
        ============
        
        Uptime Robot http://uptimerobot.com integration for your Python project. 
        There is a Django version (https://github.com/arteria/django-uptimerobot) available containing the Uptime Robot API 
        implementation and the infrastructure stuff used by Djangonauts.
        
        Installation
        ------------
        
        To get the latest stable release from PyPi
        
        .. code-block:: bash
        	
        	$ pip install python-uptimerobot
        
        To get the latest commit from GitHub
        
        .. code-block:: bash
        
            $ pip install -e git+git://github.com/arteria/python-uptimerobot.git#egg=uptimerobot
        
         
        
        
        Usage
        -----
        
        Use with Python:
        
        .. code-block:: python
        
            >>> from uptimerobot.uptimerobot import UptimeRobot
            >>> up = UptimeRobot(UPTIME_ROBOT_API_KEY)
            >>> up.addMonitor("arteria-webpage", "https://www.arteria.ch/")
            True
        
        
        Use in Shell: (success if return value is 0, null)
        
        .. code-block:: bash
        
            cd /path/to/script/
            chmod 755 uptimerobot.py # if necessary
            ./uptimerobot.py monitorFriendlyName=arteria-webpage monitorURL=https://www.arteria.ch/
        
        
        History
        -------
        
        latest
        
        0.1.4
        
        - Extended API with `.editMonitor()`.
        - Updated to use HTTPs by default.
        
        0.1.3
        
        - Extended API with `.deleteMonitorById()`.
        
        0.1.1 
        
        - Extended API with `.getMonitors()`.
        
        0.1.0
        
        - Releveled version
        
        0.0.7
        
        - Python 3.x support
        
        
        About the API
        -------------
        The full API is documented here: https://uptimerobot.com/api
        
Keywords: uptime robot,API,monitoring
Platform: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
