Metadata-Version: 1.1
Name: dlipower
Version: 0.7.108
Summary: Control digital loggers web power switch
Home-page: http://pypi.python.org/pypi/dlipower/
Author: Dwight Hubbard
Author-email: dwight@dwighthubbard.com
License: License :: OSI Approved :: BSD License
Description: Digital Loggers Power Management Python Plugin
        **********************************************
        [![Build Status](https://travis-ci.org/dwighthubbard/python-dlipower.svg?branch=master)](https://travis-ci.org/dwighthubbard/python-dlipower)
        [![Coverage Status](https://coveralls.io/repos/dwighthubbard/python-dlipower/badge.svg)](https://coveralls.io/r/dwighthubbard/python-dlipower)
        [![Download Stats](https://pypip.in/download/dlipower/badge.svg)](https://pypi.python.org/pypi/dlipower/)
        [![Version Stats](https://pypip.in/version/dlipower/badge.svg)](https://pypi.python.org/pypi/dlipower)
        [![Python Version Stats](https://pypip.in/py_versions/dlipower/badge.svg)](https://pypi.python.org/pypi/dlipower/)
        [![License Info](https://pypip.in/license/dlipower/badge.svg)](https://pypi.python.org/pypi/dlipower/)
        [![Documentation Status](https://readthedocs.org/projects/dlipower/badge/?version=latest)](https://readthedocs.org/projects/dlipower/?badge=latest)
        
        DESCRIPTION
        ===========
        This is a python module and a script to mange the 
        Digital Loggers Web Power switch.
                      
        The module provides a python class named
        PowerSwitch that allows managing the web power
        switch from python programs.
        
        When run as a script this acts as a command
        line utility to manage the DLI Power switch.
        
        SUPPORTED DEVICES
        =================
        This module has been tested against the following 
        Digital Loggers Power network power switches:
        * WebPowerSwitch II
        * WebPowerSwitch III
        * WebPowerSwitch IV
        * WebPowerSwitch V
        * Ethernet Power Controller III
        
        Example
        =======
        PYTHON USAGE
        ============
        ```python
        from __future__ import print_function
        import dlipower
        
        
        print('Connecting to a DLI PowerSwitch at lpc.digital-loggers.com')
        switch = dlipower.PowerSwitch(hostname="lpc.digital-loggers.com", userid="admin")
        
        print('Turning off the first outlet')
        switch[0].state = 'OFF'
        
        print('The powerstate of the first outlet is currently', switch[0].state)
        
        print('Renaming the first outlet as "Traffic light"')
        switch[0].description = 'Traffic light'
        
        print('The current status of the powerswitch is:')
        print(switch)
        ```
        
        ```
        Connecting to a DLI PowerSwitch at lpc.digital-loggers.com
        Turning off the first outlet
        The powerstate of the first outlet is currently OFF
        Renaming the first outlet as "Traffic light"
        The current status of the powerswitch is:
        DLIPowerSwitch at lpc.digital-loggers.com
        Outlet	Hostname       	State
        1	Traffic light  	OFF
        2	killer robot   	ON
        3	Buiten verlicti	ON
        4	Meeting Room Li	OFF
        5	Brocade LVM123 	ON
        6	Shoretel ABC123	ON
        7	Shortel 24V - T	ON
        8	Shortel 24V - T	ON
        ```
        
        For more information see the [![Documentation](https://readthedocs.org/projects/dlipower/badge/?version=latest)]
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: BSD :: FreeBSD
Classifier: Operating System :: POSIX :: SunOS/Solaris
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Hardware :: Hardware Drivers
Classifier: Topic :: System :: Power (UPS)
Requires: six
Requires: BeautifulSoup
