vuer 0.0.20__py3-none-any.whl → 0.0.22__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.
Potentially problematic release.
This version of vuer might be problematic. Click here for more details.
- vuer/__pycache__/server.cpython-38.pyc +0 -0
- vuer/server.py +5 -5
- {vuer-0.0.20.dist-info → vuer-0.0.22.dist-info}/METADATA +1 -1
- {vuer-0.0.20.dist-info → vuer-0.0.22.dist-info}/RECORD +8 -8
- {vuer-0.0.20.dist-info → vuer-0.0.22.dist-info}/LICENSE +0 -0
- {vuer-0.0.20.dist-info → vuer-0.0.22.dist-info}/WHEEL +0 -0
- {vuer-0.0.20.dist-info → vuer-0.0.22.dist-info}/entry_points.txt +0 -0
- {vuer-0.0.20.dist-info → vuer-0.0.22.dist-info}/top_level.txt +0 -0
|
Binary file
|
vuer/server.py
CHANGED
|
@@ -554,9 +554,10 @@ class Vuer(PrefixProto, Server):
|
|
|
554
554
|
async def handler():
|
|
555
555
|
try:
|
|
556
556
|
await self.socket_handler(vuer_proxy)
|
|
557
|
-
except Exception:
|
|
557
|
+
except Exception as e:
|
|
558
558
|
await self.close_ws(ws_id)
|
|
559
|
-
|
|
559
|
+
# todo: absorb non-user induced exceptions.
|
|
560
|
+
raise e
|
|
560
561
|
|
|
561
562
|
await self.close_ws(ws_id)
|
|
562
563
|
|
|
@@ -598,12 +599,11 @@ class Vuer(PrefixProto, Server):
|
|
|
598
599
|
vuer_proxy @ serverEvent
|
|
599
600
|
|
|
600
601
|
print("websocket is now disconnected. Removing the socket.")
|
|
601
|
-
self.
|
|
602
|
+
self.close_ws(ws_id)
|
|
602
603
|
except Exception as e:
|
|
603
604
|
print("websocket is now disconnected. Removing the socket.")
|
|
604
|
-
print("Exception: ", e)
|
|
605
605
|
raise e
|
|
606
|
-
self.
|
|
606
|
+
self.close_ws(ws_id)
|
|
607
607
|
|
|
608
608
|
def add_handler(
|
|
609
609
|
self,
|
|
@@ -3,14 +3,14 @@ vuer/base.py,sha256=R-PtD39ouihiEGmSfJL26chlU0XkFJP-JmBNYzDdEvM,3068
|
|
|
3
3
|
vuer/events.py,sha256=8AAzkfbm5jHkeMh17Z57n8YTxF4mheWC3Qbya4XkQSc,7291
|
|
4
4
|
vuer/schemas.py,sha256=aZOocE02gO43SLLfeYSxxac0x38TmyTcfs_iFh5hsJ4,18152
|
|
5
5
|
vuer/serdes.py,sha256=gD2iA9Yypu1QjocneOT3Nc0y6q_mdHn9zW1ko5j3I7c,2600
|
|
6
|
-
vuer/server.py,sha256=
|
|
6
|
+
vuer/server.py,sha256=bF9fszx-8JW6XVY6qNYAT-BF0nOfBunE5IBLob37tQ0,20877
|
|
7
7
|
vuer/types.py,sha256=N2KLa0fl6z8Jm6cJwZoD8Vqrins_AayG5BCGk1p3Eek,1279
|
|
8
8
|
vuer/__pycache__/__init__.cpython-38.pyc,sha256=rS-9zzAjFEXnObk5q3E5Rex_uvoJ-Ccfz7Hs9DGNVgs,188
|
|
9
9
|
vuer/__pycache__/base.cpython-38.pyc,sha256=Z5EFlRX9RqZsQUszvqPtAhLv_5QG5wlUXW7JbFd_XDc,3824
|
|
10
10
|
vuer/__pycache__/events.cpython-38.pyc,sha256=zx3bXeJixqOyCFe2nA7qpq6jiCJ49kRaXO-xONGUyeQ,9616
|
|
11
11
|
vuer/__pycache__/schemas.cpython-38.pyc,sha256=hvY9Aak8zE-zKcWiwuNe6DghOw9qH_zSe_FtkBOAPPk,23234
|
|
12
12
|
vuer/__pycache__/serdes.cpython-38.pyc,sha256=KMxTjPEWuSGn2bqBAl5OLIDSCSoqfPDGfk3fvNnRDYA,2253
|
|
13
|
-
vuer/__pycache__/server.cpython-38.pyc,sha256=
|
|
13
|
+
vuer/__pycache__/server.cpython-38.pyc,sha256=kandOv5qgW_K76KuyZoJT9XqRWtBFOpnEL1-k3w4lqg,19629
|
|
14
14
|
vuer/__pycache__/types.cpython-38.pyc,sha256=IhlXtkT-XWM0V1420FDuoqIYnpvRvekYVkGqEK7fAV8,1819
|
|
15
15
|
vuer/addons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
vuer/addons/nerf_vuer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -29,9 +29,9 @@ vuer/schemas/__pycache__/__init__.cpython-38.pyc,sha256=NRnVrpIDBKne93xOUY1-Wpav
|
|
|
29
29
|
vuer/schemas/__pycache__/drei_components.cpython-38.pyc,sha256=g_ufcKxf-XKfZLdUV-HqKnjIrgxGWFv51aHLWQgH-ws,7712
|
|
30
30
|
vuer/schemas/__pycache__/html_components.cpython-38.pyc,sha256=q0DMFwNkYbnaH1A8w3BowMiQAlmGpFWOOKsjLVE6CIk,8215
|
|
31
31
|
vuer/schemas/__pycache__/scene_components.cpython-38.pyc,sha256=8v2PNB2aUVr-5C8AwBEQ8zpp2744P4KY26398XmaM1o,19161
|
|
32
|
-
vuer-0.0.
|
|
33
|
-
vuer-0.0.
|
|
34
|
-
vuer-0.0.
|
|
35
|
-
vuer-0.0.
|
|
36
|
-
vuer-0.0.
|
|
37
|
-
vuer-0.0.
|
|
32
|
+
vuer-0.0.22.dist-info/LICENSE,sha256=MGF-inVBUaGe2mEjqT0g6XsHIXwoNXgNHqD7Z1MzR0k,1063
|
|
33
|
+
vuer-0.0.22.dist-info/METADATA,sha256=1pwuH3AwWepT0vxy8nllWhlg0ElYQ4rj58k7WUneISg,4277
|
|
34
|
+
vuer-0.0.22.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
35
|
+
vuer-0.0.22.dist-info/entry_points.txt,sha256=J_NM6fbpipmD9oP7cdxd1UyBR8mVEQVx0xjlE_56yss,41
|
|
36
|
+
vuer-0.0.22.dist-info/top_level.txt,sha256=ermmVkwvGFAK4gfSgDIwOmKpxwpqNt-oo7gVQQUSHok,5
|
|
37
|
+
vuer-0.0.22.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|