Metadata-Version: 1.2
Name: pymihome
Version: 0.0.7
Summary: Library to access Energenie MiHome devices via the web API.
Home-page: https://github.com/ng110/pymihome
Author: Neil Griffin
Author-email: ngriffin110@gmail.com
License: LGPLv3
Download-URL: https://github.com/ng110/pymihome/tarball/0.0.7
Description: pymihome

        ===============================

        

        version number: 0.0.7

        

        author: Neil Griffin

        

        Overview

        --------

        

        Library to access Energenie MiHome devices via the web API.

        

        Work in progress.  Currently has some functionality, but limited and not

        properly tested.  Use with care.

        

        Installation / Usage

        --------------------

        

        To install use pip:

        

            $ pip install pymihome

        

        

        Or clone the repo:

        

            $ git clone https://github.com/ng110/pymihome.git

            $ python setup.py install

            

        Contributing

        ------------

        

        Offers welcome, as I don't have much time to work on this!

        

        License

        -------

        

        LGPLv3

        

        Example

        -------

        

            $ from pymihome import Connection, EnergenieSwitch

        

            $ mihome = Connection([username], [key|password])

            $ switches = [EnergenieSwitch(mihome, dev) for dev in mihome.subdevices if dev['is_switch']]

            $ for switch in switches:

            $     print(switch.name)

        

        
Keywords: energenie mihome
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Utilities
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Requires-Python: >3.5
