Metadata-Version: 2.1
Name: pymoodo
Version: 0.0.2
Summary: Python client to communicate with Moodo API
Home-page: https://github.com/avassem85/pymoodo
Author: Alex van Assem
Author-email: avassem@gmail.com
License: UNKNOWN
Description: # pymoodo
        Python client to communicate with Moodo API.
        
        # How to use
        ```python
        from pymoodo.Controller import Controller
        import asyncio
        
        async def main():
            controller = Controller('<email>', '<password>')
        
            # Turn on MoodoBox
            for id in controller.boxes:
                controller.boxes[id].turn_on()
                controller.boxes[id].set_fan_speed(50)
        
                for slot_id in controller.boxes[id].slots:
                    slot = controller.boxes[id].slots[slot_id]
                    slot.turn_on()
                    slot.set_fan_speed(75)
                    slot.turn_off()
        
                controller.boxes[id].turn_off()
        
        asyncio.get_event_loop().run_until_complete(main())
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
