livisi 0.0.25__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- livisi/__init__.py +91 -4
- livisi/livisi_connector.py +689 -0
- livisi/livisi_const.py +30 -0
- livisi/livisi_controller.py +17 -0
- livisi/livisi_device.py +53 -0
- livisi/livisi_errors.py +124 -0
- livisi/livisi_json_util.py +23 -0
- livisi/livisi_websocket.py +108 -0
- livisi/livisi_websocket_event.py +13 -0
- livisi-1.0.0.dist-info/METADATA +27 -0
- livisi-1.0.0.dist-info/RECORD +15 -0
- {livisi-0.0.25.dist-info → livisi-1.0.0.dist-info}/WHEEL +1 -1
- livisi-1.0.0.dist-info/licenses/LICENSE +0 -0
- livisi/aiolivisi.py +0 -270
- livisi/const.py +0 -40
- livisi/errors.py +0 -20
- livisi/websocket.py +0 -113
- livisi-0.0.25.dist-info/LICENSE +0 -201
- livisi-0.0.25.dist-info/METADATA +0 -24
- livisi-0.0.25.dist-info/RECORD +0 -11
- {livisi-0.0.25.dist-info → livisi-1.0.0.dist-info}/top_level.txt +0 -0
livisi/__init__.py
CHANGED
@@ -1,4 +1,91 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
# __init__.py
|
2
|
+
|
3
|
+
# Import key classes, constants, and exceptions
|
4
|
+
|
5
|
+
# livisi_connector.py
|
6
|
+
from .livisi_connector import LivisiConnection, connect
|
7
|
+
|
8
|
+
# livisi_controller.py
|
9
|
+
from .livisi_controller import LivisiController
|
10
|
+
|
11
|
+
# livisi_device.py
|
12
|
+
from .livisi_device import LivisiDevice
|
13
|
+
|
14
|
+
# livisi_websocket.py
|
15
|
+
from .livisi_websocket import LivisiWebsocket
|
16
|
+
|
17
|
+
# livisi_websocket_event.py
|
18
|
+
from .livisi_websocket_event import LivisiWebsocketEvent
|
19
|
+
|
20
|
+
# livisi_const.py
|
21
|
+
from .livisi_const import (
|
22
|
+
LOGGER,
|
23
|
+
V2_NAME,
|
24
|
+
V1_NAME,
|
25
|
+
V2_WEBSOCKET_PORT,
|
26
|
+
CLASSIC_WEBSOCKET_PORT,
|
27
|
+
WEBSERVICE_PORT,
|
28
|
+
REQUEST_TIMEOUT,
|
29
|
+
CONTROLLER_DEVICE_TYPES,
|
30
|
+
BATTERY_LOW,
|
31
|
+
UPDATE_AVAILABLE,
|
32
|
+
LIVISI_EVENT_STATE_CHANGED,
|
33
|
+
LIVISI_EVENT_BUTTON_PRESSED,
|
34
|
+
LIVISI_EVENT_MOTION_DETECTED,
|
35
|
+
IS_REACHABLE,
|
36
|
+
EVENT_BUTTON_PRESSED,
|
37
|
+
EVENT_BUTTON_LONG_PRESSED,
|
38
|
+
EVENT_MOTION_DETECTED,
|
39
|
+
COMMAND_RESTART,
|
40
|
+
)
|
41
|
+
|
42
|
+
# livisi_errors.py
|
43
|
+
from .livisi_errors import (
|
44
|
+
LivisiException,
|
45
|
+
ShcUnreachableException,
|
46
|
+
WrongCredentialException,
|
47
|
+
IncorrectIpAddressException,
|
48
|
+
ErrorCodeException,
|
49
|
+
ERROR_CODES,
|
50
|
+
)
|
51
|
+
|
52
|
+
# Define __all__ to specify what is exported when using 'from livisi import *'
|
53
|
+
__all__ = [
|
54
|
+
# From livisi_connector.py
|
55
|
+
"LivisiConnection",
|
56
|
+
"connect",
|
57
|
+
# From livisi_controller.py
|
58
|
+
"LivisiController",
|
59
|
+
# From livisi_device.py
|
60
|
+
"LivisiDevice",
|
61
|
+
# From livisi_websocket.py
|
62
|
+
"LivisiWebsocket",
|
63
|
+
# From livisi_websocket_event.py
|
64
|
+
"LivisiWebsocketEvent",
|
65
|
+
# From livisi_const.py
|
66
|
+
"LOGGER",
|
67
|
+
"V2_NAME",
|
68
|
+
"V1_NAME",
|
69
|
+
"V2_WEBSOCKET_PORT",
|
70
|
+
"CLASSIC_WEBSOCKET_PORT",
|
71
|
+
"WEBSERVICE_PORT",
|
72
|
+
"REQUEST_TIMEOUT",
|
73
|
+
"CONTROLLER_DEVICE_TYPES",
|
74
|
+
"BATTERY_LOW",
|
75
|
+
"UPDATE_AVAILABLE",
|
76
|
+
"LIVISI_EVENT_STATE_CHANGED",
|
77
|
+
"LIVISI_EVENT_BUTTON_PRESSED",
|
78
|
+
"LIVISI_EVENT_MOTION_DETECTED",
|
79
|
+
"IS_REACHABLE",
|
80
|
+
"EVENT_BUTTON_PRESSED",
|
81
|
+
"EVENT_BUTTON_LONG_PRESSED",
|
82
|
+
"EVENT_MOTION_DETECTED",
|
83
|
+
"COMMAND_RESTART",
|
84
|
+
# From livisi_errors.py
|
85
|
+
"LivisiException",
|
86
|
+
"ShcUnreachableException",
|
87
|
+
"WrongCredentialException",
|
88
|
+
"IncorrectIpAddressException",
|
89
|
+
"ErrorCodeException",
|
90
|
+
"ERROR_CODES",
|
91
|
+
]
|