Files
python-kasa/kasa/smartcam/__init__.py
Gabriele Pongelli 0cd0434160 Extend smartcam detection support (#1552)
New detection added with tests:

- bark detection
- glass detection
- line crossing detection
- meow detection
- vehicle detection
2025-08-25 15:20:33 +02:00

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"]