Metadata-Version: 2.1
Name: xcomfort
Version: 0.0.2
Summary: Integration with Eaton xComfort Bridge
Home-page: https://github.com/jankrib/xcomfort-python
Author: Jan Kristian Bjerke
Author-email: jan.bjerke@gmail.com
License: UNKNOWN
Description: # xcomfort-python
        Unofficial python package for communicating with Eaton xComfort Bridge
        
        ## Usage
        ```python
        import asyncio
        from xcomfort import Bridge
        
        
        async def main():
            bridge = await Bridge.connect(<ip_address>, <auth_key>)
        
            devices = await bridge.get_devices()
            print(devices)
            
            await bridge.close()
        
        asyncio.run(main())
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Requires-Python: >=3.7
Description-Content-Type: text/markdown
