Metadata-Version: 1.1
Name: dlipower
Version: 0.2.33
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.txt
Description: Help on module dlipower:
        
        NAME
            dlipower
        
        FILE
            /home/dhubbard/devel/python-dlipower/dlipower/dlipower.py
        
        DESCRIPTION
            ###############################################################
            Digital Loggers Web Power Switch management
            ###############################################################
             Description: This is both a module and a script
            
                          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.
            
                          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
                          
             Author: Dwight Hubbard d@dhub.me
        
        CLASSES
            powerswitch
            
            class powerswitch
             |  Powerswitch class to manage the Digital Loggers Web power switch
             |  
             |  Methods defined here:
             |  
             |  __init__(self, userid=None, password=None, hostname=None, timeout=None, cycletime=None)
             |  
             |  command_on_outlets(self, command, outlets)
             |      If a single outlet is passed, handle it as a single outlet and 
             |      pass back the return code.  Otherwise run the operation on multiple
             |      outlets in parallel the return code will be failure if any operation
             |      fails.  Operations that return a string will return a list of strings.
             |  
             |  cycle(self, outlet=0)
             |      Cycle power to an outlet 
             |      False = Power off Success
             |      True = Power off Fail
             |      Note, does not return any status info about the power on part of the operation by design
             |  
             |  determine_outlet(self, outlet=None)
             |      Get the correct outlet number from the outlet passed in, this
             |      allows specifying the outlet by the name and making sure the
             |      returned outlet is an int
             |  
             |  get_outlet_name(self, outlet=0)
             |      Return the name of the outlet
             |  
             |  geturl(self, url='index.htm')
             |      Get a URL from the userid/password protected powerswitch page 
             |      Return None on failure
             |  
             |  load_configuration(self)
             |      Return a configuration dictionary
             |  
             |  off(self, outlet=0)
             |      Turn off a power to an outlet 
             |      False = Success
             |      True = Fail
             |  
             |  on(self, outlet=0)
             |      Turn on power to an outlet 
             |      False = Success
             |      True = Fail
             |  
             |  printstatus(self)
             |      Print the status off all the outlets as a table to stdout
             |  
             |  save_configuration(self)
             |      Update the configuration file with the object's settings
             |  
             |  set_outlet_name(self, outlet=0, name='Unknown')
             |      Set the name of an outlet
             |  
             |  status(self, outlet=1)
             |      Return the status of an outlet, returned value will be one of: ON, OFF, Unknown
             |  
             |  statuslist(self)
             |      Return the status of all outlets in a list, 
             |      each item will contain 3 items plugnumber, hostname and state
             |  
             |  verify(self)
             |      Verify we can reach the switch, returns true if ok
        
        DATA
            CONFIG_DEFAULTS = {'cycletime': 3, 'hostname': '192.168.0.100', 'passw...
            CONFIG_FILE = '~/.dlipower.conf'
            CYCLETIME = 3
            TIMEOUT = 30
        
        
        
Platform: UNKNOWN
Requires: BeautifulSoup
