mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-10-11 01:48:03 +00:00

New detection added with tests: - bark detection - glass detection - line crossing detection - meow detection - vehicle detection
8 lines
247 B
Python
8 lines
247 B
Python
"""Package for supporting tapo-branded cameras."""
|
|
|
|
from .detectionmodule import DetectionModule
|
|
from .smartcamchild import SmartCamChild
|
|
from .smartcamdevice import SmartCamDevice
|
|
|
|
__all__ = ["SmartCamDevice", "SmartCamChild", "DetectionModule"]
|