Metadata-Version: 2.1
Name: YandexIOT
Version: 0.1
Summary: Library for controlling Yandex Smart Devices in Python
Home-page: https://github.com/Artingl/YandexIOT
Author: Artingl
Author-email: mikrobamboni@yandex.ru
Project-URL: Bug Tracker, https://github.com/Artingl/YandexIOT/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests (==2.27.1)

# YandexIOT
Library for controlling Yandex Smart Devices in Python.

## Install

```shell
pip install YandexIOT
```

## Devices
Currently, it supports only controlling light, but other devices are going to be implemented soon.

## Example

```python
from YandexIOT import SmartHome

home = SmartHome("YOUR_TOKEN_HERE")

light = home.get_device_by_name("Лампочка")
light.turn_on()

```
