Metadata-Version: 2.1
Name: hassapi
Version: 0.1.0
Summary: Home Assistant Python API
Home-page: https://github.com/hass-api/hassapi
Author: Vadim Titov
Author-email: titov.hse@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/hass-api/hassapi/issues
Description: ## [Home Assistant](https://www.home-assistant.io/) Web API Client for Python
        
        ## Examples
        ```python
        from hassapi import Hass
        
        hass = Hass(hassurl="http://IP_ADDRESS:8123/", token="YOUR_HASS_TOKEN")
        
        hass.turn_on("light.bedroom_light")
        hass.run_script("good_morning")
        ```
        ## Installation
        ```
        pip install hassapi
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Home Automation
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
