lifx-emulator 3.1.0__py3-none-any.whl → 4.2.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.
- {lifx_emulator-3.1.0.dist-info → lifx_emulator-4.2.0.dist-info}/METADATA +2 -1
- lifx_emulator-4.2.0.dist-info/RECORD +43 -0
- lifx_emulator_app/__main__.py +693 -137
- lifx_emulator_app/api/__init__.py +0 -4
- lifx_emulator_app/api/app.py +122 -16
- lifx_emulator_app/api/models.py +32 -1
- lifx_emulator_app/api/routers/__init__.py +5 -1
- lifx_emulator_app/api/routers/devices.py +64 -10
- lifx_emulator_app/api/routers/products.py +42 -0
- lifx_emulator_app/api/routers/scenarios.py +55 -52
- lifx_emulator_app/api/routers/websocket.py +70 -0
- lifx_emulator_app/api/services/__init__.py +21 -4
- lifx_emulator_app/api/services/device_service.py +188 -1
- lifx_emulator_app/api/services/event_bridge.py +234 -0
- lifx_emulator_app/api/services/scenario_service.py +153 -0
- lifx_emulator_app/api/services/websocket_manager.py +326 -0
- lifx_emulator_app/api/static/_app/env.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/assets/0.DOQLX7EM.css +1 -0
- lifx_emulator_app/api/static/_app/immutable/assets/2.CU0O2Xrb.css +1 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/BORyfda6.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/BTLkiQR5.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/BaoxLdOF.js +2 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/Binc8JbE.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/CDSQEL5N.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/DfIkQq0Y.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/MAGDeS2Z.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/N3z8axFy.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/chunks/yhjkpkcN.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/entry/app.Dhwm664s.js +2 -0
- lifx_emulator_app/api/static/_app/immutable/entry/start.Nqz6UJJT.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/nodes/0.CPncm6RP.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/nodes/1.x-f3libw.js +1 -0
- lifx_emulator_app/api/static/_app/immutable/nodes/2.BP5Yvqf4.js +6 -0
- lifx_emulator_app/api/static/_app/version.json +1 -0
- lifx_emulator_app/api/static/index.html +38 -0
- lifx_emulator_app/api/static/robots.txt +3 -0
- lifx_emulator_app/config.py +316 -0
- lifx_emulator-3.1.0.dist-info/RECORD +0 -19
- lifx_emulator_app/api/static/dashboard.js +0 -588
- lifx_emulator_app/api/templates/dashboard.html +0 -357
- {lifx_emulator-3.1.0.dist-info → lifx_emulator-4.2.0.dist-info}/WHEEL +0 -0
- {lifx_emulator-3.1.0.dist-info → lifx_emulator-4.2.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lifx-emulator
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.2.0
|
|
4
4
|
Summary: Standalone LIFX Emulator with CLI and HTTP management API
|
|
5
5
|
Author-email: Avi Miller <me@dje.li>
|
|
6
6
|
Maintainer-email: Avi Miller <me@dje.li>
|
|
@@ -25,6 +25,7 @@ Requires-Dist: fastapi>=0.115.0
|
|
|
25
25
|
Requires-Dist: lifx-emulator-core>=2.4.0
|
|
26
26
|
Requires-Dist: rich>=14.2.0
|
|
27
27
|
Requires-Dist: uvicorn>=0.34.0
|
|
28
|
+
Requires-Dist: websockets>=16.0
|
|
28
29
|
Description-Content-Type: text/markdown
|
|
29
30
|
|
|
30
31
|
# lifx-emulator
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
lifx_emulator_app/__init__.py,sha256=AJahGiWKb8U8yLQbJX21takbf-SoxDxMOGxjJeM7M5c,222
|
|
2
|
+
lifx_emulator_app/__main__.py,sha256=uVSlOQFWwkYLIXuMfyR7-rnyLxIrl5n5TKAfRlleaKg,42402
|
|
3
|
+
lifx_emulator_app/config.py,sha256=7NrcCEMTw5kPlFjcNrQ58k9aQlnQILs1EtCofE9-hV0,9606
|
|
4
|
+
lifx_emulator_app/api/__init__.py,sha256=bBOvo8V-jRrja_7EfFVEUwX3O8htH_iw6RjSzRsyZiM,478
|
|
5
|
+
lifx_emulator_app/api/app.py,sha256=utLERCLXL81S7iNKl5goRfleZlbH74LOz_A3IjX1jJ8,8539
|
|
6
|
+
lifx_emulator_app/api/models.py,sha256=Fb8LC_2UXryJ88u1UC6Ie1NDJWJtrKwX71z1WLw2tGQ,4890
|
|
7
|
+
lifx_emulator_app/api/mappers/__init__.py,sha256=-lGAg-s16eTMl2_D-3bPu-EMqD2kaPzXHqSrKCnmW2w,156
|
|
8
|
+
lifx_emulator_app/api/mappers/device_mapper.py,sha256=WAo-_PJ2kX3J4GUW_Sjoype1d_uaIh-PtXPfMUAujUY,4155
|
|
9
|
+
lifx_emulator_app/api/routers/__init__.py,sha256=wngfHz3BWSBhQDofegCy3VIhFazd-o3clVuACuW6wI0,592
|
|
10
|
+
lifx_emulator_app/api/routers/devices.py,sha256=VrAaWCO1Lrlgob1ffwMsVdAUqEPt1Q6HFf_clk9epxQ,6330
|
|
11
|
+
lifx_emulator_app/api/routers/monitoring.py,sha256=i82_s61caYd9UvMb4MqWPLP7LuFh5KN8Qkw4_dZr3O0,1460
|
|
12
|
+
lifx_emulator_app/api/routers/products.py,sha256=YJTIZ4UXqhy31OuKdGP41CEwxxKDv4WIKPkzFBdLrO4,1271
|
|
13
|
+
lifx_emulator_app/api/routers/scenarios.py,sha256=kUNcxxZbR_OMHVB-BM9znP7yKNNpPhCL6Qpcv3SFF_I,9521
|
|
14
|
+
lifx_emulator_app/api/routers/websocket.py,sha256=cyiUOkXT-YW7vgt0PJacOoREr5Oz8Yz928fCu4DmFFk,2019
|
|
15
|
+
lifx_emulator_app/api/services/__init__.py,sha256=e9GppGDarH26CASiOieXMV9QzKl5ynUzXqQU72B09wo,648
|
|
16
|
+
lifx_emulator_app/api/services/device_service.py,sha256=E1a-PQ1AKmOTmt6dx40MaLj5mnc_DNz4mG4eqeW4cM4,12932
|
|
17
|
+
lifx_emulator_app/api/services/event_bridge.py,sha256=oB34fM8XE2-ZJaUGOcrJKRsyj62LzBORgHmTE5yGn34,7843
|
|
18
|
+
lifx_emulator_app/api/services/scenario_service.py,sha256=zVBtBsf0nG-iGZLvPjQyIwil80tWk3ICx9fGsFLyFsE,5860
|
|
19
|
+
lifx_emulator_app/api/services/websocket_manager.py,sha256=JTgfYfo8jm_eoYPGA17aZ-dYg-DljfFWhEqnkS-c9gQ,10300
|
|
20
|
+
lifx_emulator_app/api/static/index.html,sha256=ZMiL4lm-Juc9kEZoNqsgeE40_kno0_nHhSjySWiPKeI,1291
|
|
21
|
+
lifx_emulator_app/api/static/robots.txt,sha256=sDMkMme8vauEywHpQIEdbXeolNePBHD6rw60P45O_Mk,63
|
|
22
|
+
lifx_emulator_app/api/static/_app/env.js,sha256=Iu6wbiiLCcW1n9HhTsju7Y83nmMPQC3Myj_B4dOvWXM,20
|
|
23
|
+
lifx_emulator_app/api/static/_app/version.json,sha256=I_nQhdqpDQFBXPoMM4XSrnpRi1VDFjX9tuqXRz5lPeE,28
|
|
24
|
+
lifx_emulator_app/api/static/_app/immutable/assets/0.DOQLX7EM.css,sha256=l4crI2LGkKwPrBjfS2VhodMh_MO-Q1zVcXsKyymJh-k,6558
|
|
25
|
+
lifx_emulator_app/api/static/_app/immutable/assets/2.CU0O2Xrb.css,sha256=dFyY-aBNgdCqLldT_8KuedurSdWiJLlW5XYKE8GFq_A,6955
|
|
26
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/BORyfda6.js,sha256=HF2RRzn5DD4c0A3xjueWbs0htVHr1g0XxTNcujwkmg0,523
|
|
27
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/BTLkiQR5.js,sha256=1ruoxwIaTPdiiVHFhOPQ4S-ArwhXWWJYXUKLF49gMUM,375
|
|
28
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/BaoxLdOF.js,sha256=g8YQ8djVfZiJP41wtJztMiMEirHHiAwxoecQ-PtQwbE,6150
|
|
29
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/Binc8JbE.js,sha256=JPl4dPNUoCEXC1bbzj3vbAhQBZTPdLtbEnpRYBY9sLg,1068
|
|
30
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/CDSQEL5N.js,sha256=7bRXymbc4QDcpj3uBzyn6SsXz3L1z4Sxednc8KACn74,5511
|
|
31
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/DfIkQq0Y.js,sha256=jFLhx2UXRYkuldJjyM4ljyDDDs2tTo15BEoT-aut64k,21957
|
|
32
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/MAGDeS2Z.js,sha256=UtYJSUIlrSdrbWm9OQVo74bcDOFv8elKHuW_BMviWOQ,26068
|
|
33
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/N3z8axFy.js,sha256=QbqudTZYFirOclU5qWuqfStQOYHYur3TrSWf7qWdEEo,1528
|
|
34
|
+
lifx_emulator_app/api/static/_app/immutable/chunks/yhjkpkcN.js,sha256=cNaUEkLimf9FEBmEHfprdHsvcHKGCpNOfjZVEWe-TVg,370
|
|
35
|
+
lifx_emulator_app/api/static/_app/immutable/entry/app.Dhwm664s.js,sha256=GZuIPfD0v9P6HWVVUyAYR4PJBil21blmb7qRXieVauU,6687
|
|
36
|
+
lifx_emulator_app/api/static/_app/immutable/entry/start.Nqz6UJJT.js,sha256=bchZkS9By-K2qepPc-i5ULY0DT6RYceEM2cGA9K5a7A,83
|
|
37
|
+
lifx_emulator_app/api/static/_app/immutable/nodes/0.CPncm6RP.js,sha256=9Un9WFVPvbSxbhGXFkk4sZWnTcDLtgXOulr1CDewG54,1093
|
|
38
|
+
lifx_emulator_app/api/static/_app/immutable/nodes/1.x-f3libw.js,sha256=72HaUFmedR2uD0gCxZy_a84lQRdEYUgRKP4imw5P0PY,556
|
|
39
|
+
lifx_emulator_app/api/static/_app/immutable/nodes/2.BP5Yvqf4.js,sha256=yyGAY6GX7SYKRX9NNwgby_myabE5hpxCVUt1BM0aKkw,46908
|
|
40
|
+
lifx_emulator-4.2.0.dist-info/METADATA,sha256=TEvcyB8F3Ku6LBsKkDENONjHyJvBLdra8k2QsfHuBZU,3257
|
|
41
|
+
lifx_emulator-4.2.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
42
|
+
lifx_emulator-4.2.0.dist-info/entry_points.txt,sha256=tNZHeJTPUXNxu_nuk99ArXLKgwYLhIVVxN7YiaiXBOA,66
|
|
43
|
+
lifx_emulator-4.2.0.dist-info/RECORD,,
|