Metadata-Version: 1.1
Name: energenie
Version: 0.1.6
Summary: Python module to control the Energenie add-on board for the Raspberry Pi used for remotely turning power sockets on and off.
Home-page: https://github.com/bennuttall/energenie
Author: Ben Nuttall
Author-email: ben@raspberrypi.org
License: BSD
Description: This module provides simple control of Energenie power sockets directly from Python.
        
        Example usage:::
        
            from energenie import switch_on, switch_off
            from time import sleep
        
            # turn a plug socket on and off by number
            switch_on(1)
            switch_off(1)
        
            switch_on(3)
            switch_off(3)
        
            # turn all plug sockets on and off
            switch_on(0)
            switch_off(0)
        
            # turn some plug sockets on, then turn them off after 10 seconds
            switch_on(1)
            switch_on(4)
            sleep(10)
            switch_off(1)
            switch_off(4)
        
        
Keywords: energenie,raspberrypi
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Home Automation
Classifier: License :: OSI Approved :: BSD License
