mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-25 04:33:33 +00:00
0d119e63d0
* Refactor devices into subpackages and deprecate old names * Tweak and add tests * Fix linting * Remove duplicate implementations affecting project coverage * Update post review * Add device base class attributes and rename subclasses * Rename Module to BaseModule * Remove has_emeter_history * Fix missing _time in init * Update post review * Fix test_readmeexamples * Fix erroneously duped files * Clean up iot and smart imports * Update post latest review * Tweak Device docstring
17 lines
362 B
Python
17 lines
362 B
Python
"""Package for supporting legacy kasa devices."""
|
|
from .iotbulb import IotBulb
|
|
from .iotdevice import IotDevice
|
|
from .iotdimmer import IotDimmer
|
|
from .iotlightstrip import IotLightStrip
|
|
from .iotplug import IotPlug
|
|
from .iotstrip import IotStrip
|
|
|
|
__all__ = [
|
|
"IotDevice",
|
|
"IotPlug",
|
|
"IotBulb",
|
|
"IotStrip",
|
|
"IotDimmer",
|
|
"IotLightStrip",
|
|
]
|