mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 03:33:35 +00:00
6115d96c39
* discover runs, prints on since of device 0 * added preliminary support for HS300 * forgot to add smartdevice to commit * added index to CLI * clean up dirty code * added fake sysinfo_hs300 * changed device alias to match MAC * #131 Move _id_to_index into smartstrip so everyone can pass index * Update pyHS100/discover.py Co-Authored-By: jimboca <jimboca3@gmail.com> * refactoring to deduplicate code between smarplug and smartstrip * fixing CI failures for devices without children * incorporating feedback from pull request. * fixing hound violation * changed internal store from list of dicts to dict * changed other methods to dictionary store as well * removed unused optional type from imports * changed plugs to Dict, remove redundant sys_info calls * added more functionality for smart strip, added smart strip tests * updated FakeTransportProtocol for devices with children * corrected hound violations * add click-datetime
22 lines
788 B
Python
Executable File
22 lines
788 B
Python
Executable File
"""
|
|
This module provides a way to interface with TP-Link's smart home devices,
|
|
such as smart plugs (HS1xx), wall switches (HS2xx), and light bulbs (LB1xx).
|
|
|
|
All common, shared functionalities are available through `SmartDevice` class::
|
|
|
|
x = SmartDevice("192.168.1.1")
|
|
print(x.sys_info)
|
|
|
|
For device type specific actions `SmartBulb` or `SmartPlug` must be used instead.
|
|
|
|
Module-specific errors are raised as `SmartDeviceException` and are expected
|
|
to be handled by the user of the library.
|
|
"""
|
|
# flake8: noqa
|
|
from .smartdevice import SmartDevice, SmartDeviceException, EmeterStatus
|
|
from .smartplug import SmartPlug
|
|
from .smartbulb import SmartBulb
|
|
from .smartstrip import SmartStrip, SmartStripException
|
|
from .protocol import TPLinkSmartHomeProtocol
|
|
from .discover import Discover
|