vuer 0.0.29rc11__py3-none-any.whl → 0.0.31rc1__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/server.py CHANGED
@@ -3,7 +3,7 @@ from asyncio import sleep
3
3
  from collections import deque, defaultdict
4
4
  from functools import partial
5
5
  from pathlib import Path
6
- from typing import cast, Callable, Coroutine, Dict
6
+ from typing import cast, Callable, Dict, Union
7
7
  from uuid import uuid4
8
8
 
9
9
  from aiohttp.hdrs import UPGRADE
@@ -11,7 +11,7 @@ from aiohttp.web_request import Request, BaseRequest
11
11
  from aiohttp.web_response import Response
12
12
  from aiohttp.web_ws import WebSocketResponse
13
13
  from msgpack import packb, unpackb
14
- from params_proto import Proto, PrefixProto
14
+ from params_proto import Proto, PrefixProto, Flag
15
15
  from websockets import ConnectionClosedError
16
16
 
17
17
  from vuer.base import Server, handle_file_request, websocket_handler
@@ -89,7 +89,9 @@ class VuerSession:
89
89
  :return: dqueue
90
90
  """
91
91
  assert isinstance(event, ServerEvent), "msg must be a ServerEvent type object."
92
- assert not isinstance(event, Frame), "Frame event is only used in vuer.bind method."
92
+ assert not isinstance(
93
+ event, Frame
94
+ ), "Frame event is only used in vuer.bind method."
93
95
  assert self.CURRENT_WS_ID in self.vuer.ws, "Websocket session is missing."
94
96
 
95
97
  event_obj = event.serialize()
@@ -106,7 +108,9 @@ class VuerSession:
106
108
  :param subsample: The subsample of the render.
107
109
  :param ttl: The time to live for the handler. If the handler is not called within the time it gets removed from the handler list.
108
110
  """
109
- assert self.CURRENT_WS_ID is not None, "Websocket session is missing. CURRENT_WS_ID is None."
111
+ assert (
112
+ self.CURRENT_WS_ID is not None
113
+ ), "Websocket session is missing. CURRENT_WS_ID is None."
110
114
 
111
115
  event = GrabRender(**kwargs)
112
116
 
@@ -242,7 +246,7 @@ class VuerSession:
242
246
  return None
243
247
 
244
248
  def clear(self):
245
- "clears all client messages"
249
+ """clears all client messages"""
246
250
  self.downlink_queue.clear()
247
251
 
248
252
  def stream(self):
@@ -285,22 +289,28 @@ class Vuer(PrefixProto, Server):
285
289
  .. automethod:: run
286
290
  """
287
291
 
288
- name = "vuer"
289
- domain = "https://vuer.ai"
290
- port = DEFAULT_PORT
291
- free_port = True
292
- static_root = "."
293
- queue_len = 100 # use a max length to avoid the memory from blowing up.
294
- cors = "https://vuer.ai,https://dash.ml,http://localhost:8000,http://127.0.0.1:8000,*"
295
- queries = Proto({}, help="query parameters to pass")
296
-
297
- cert = Proto(None, dtype=str, help="the path to the SSL certificate")
298
- key = Proto(None, dtype=str, help="the path to the SSL key")
299
- ca_cert = Proto(None, dtype=str, help="the trusted root CA certificates")
300
-
301
- client_root = Path(__file__).parent / "client_build"
302
-
303
- device = "cuda"
292
+ domain = Proto("https://vuer.ai", help="default url of web client")
293
+ host = Proto("localhost", help="set to 0.0.0.0 to enable remote connections")
294
+ port = Proto(DEFAULT_PORT, help="port to use")
295
+ free_port: bool = Flag("Kill what is running on the requested port if True.")
296
+ static_root: str = Proto(".", help="root for file serving")
297
+ """todo: we want to support multiple paths."""
298
+ queue_len: int = Proto(
299
+ 100, help="use a max length to avoid the memory from blowing up."
300
+ )
301
+ cors = Proto(
302
+ "https://vuer.ai,https://dash.ml,http://localhost:8000,http://127.0.0.1:8000,*",
303
+ help="domains that are allowed for cross origin requests.",
304
+ )
305
+ queries: Dict = Proto({}, help="query parameters to pass")
306
+
307
+ cert: str = Proto(None, dtype=str, help="the path to the SSL certificate")
308
+ key: str = Proto(None, dtype=str, help="the path to the SSL key")
309
+ ca_cert: str = Proto(None, dtype=str, help="the trusted root CA certificates")
310
+
311
+ client_root: Path = Path(__file__).parent / "client_build"
312
+
313
+ verbose = Flag("Print the settings if True.")
304
314
 
305
315
  def _proxy(self, ws_id) -> "VuerSession":
306
316
  """This is a proxy object that allows us to use the @ notation
@@ -316,6 +326,13 @@ class Vuer(PrefixProto, Server):
316
326
 
317
327
  def __post_init__(self):
318
328
  # todo: what is this?
329
+
330
+ if self.verbose:
331
+ print("========= Arguments =========")
332
+ for k, v in vars(self).items():
333
+ print(f" {k} = {v},")
334
+ print("-----------------------------")
335
+
319
336
  Server.__post_init__(self)
320
337
 
321
338
  self.handlers = defaultdict(dict)
@@ -348,15 +365,17 @@ class Vuer(PrefixProto, Server):
348
365
  return Response(400)
349
366
  elif session_id in self.ws:
350
367
  self.send(ws_id=session_id, event_bytes=bytes)
368
+
351
369
  return Response(status=200)
352
- elif session_id == "all":
370
+ elif session_id == "*":
353
371
  # print broadcast
354
372
  for ws_id in self.ws:
355
373
  try:
356
374
  self.send(ws_id=ws_id, event_bytes=bytes)
357
375
  except Exception as e:
358
376
  print("Exception: ", e)
359
- pass
377
+ return Response(status=502, text=str(e))
378
+
360
379
  return Response(status=200)
361
380
  else:
362
381
  return Response(status=400)
@@ -396,7 +415,8 @@ class Vuer(PrefixProto, Server):
396
415
  return loop.create_task(task)
397
416
 
398
417
  def spawn(self, fn: SocketHandler = None, start=False):
399
- """
418
+ """bind the socket handler function `fn` to vuer, and start
419
+ the event loop if `start is` `True`.
400
420
 
401
421
  Note: this is really a misnomer.
402
422
 
@@ -459,7 +479,9 @@ class Vuer(PrefixProto, Server):
459
479
  ws = self.ws[ws_id]
460
480
 
461
481
  if event_bytes is None:
462
- assert isinstance(event, ServerEvent), "event must be a ServerEvent type object."
482
+ assert isinstance(
483
+ event, ServerEvent
484
+ ), "event must be a ServerEvent type object."
463
485
  event_obj = event.serialize()
464
486
  event_bytes = packb(event_obj, use_single_float=True, use_bin_type=True)
465
487
  else:
@@ -467,7 +489,7 @@ class Vuer(PrefixProto, Server):
467
489
 
468
490
  return await ws.send_bytes(event_bytes)
469
491
 
470
- async def rpc(self, ws_id, event: ServerRPC, ttl=2.0) -> ClientEvent:
492
+ async def rpc(self, ws_id, event: ServerRPC, ttl=2.0) -> Union[ClientEvent, None]:
471
493
  """RPC only takes a single response. For multi-response streaming,
472
494
  we need to build a new one
473
495
 
@@ -483,7 +505,9 @@ class Vuer(PrefixProto, Server):
483
505
  rpc_event = asyncio.Event()
484
506
  response = None
485
507
 
486
- async def response_handler(response_event: ClientEvent, _: "VuerSession") -> Coroutine:
508
+ async def response_handler(
509
+ response_event: ClientEvent, _: "VuerSession"
510
+ ) -> None:
487
511
  nonlocal response
488
512
 
489
513
  response = response_event
@@ -509,7 +533,7 @@ class Vuer(PrefixProto, Server):
509
533
  raise NotImplementedError("This is not implemented yet.")
510
534
 
511
535
  async def close_ws(self, ws_id):
512
- # uplink is moved to the proxy object. Clearned by garbage collection.
536
+ # uplink is moved to the proxy object. Cleaned by garbage collection.
513
537
  # self.uplink_queue.pop(ws_id)
514
538
  try:
515
539
  ws = self.ws.pop(ws_id)
@@ -624,10 +648,10 @@ class Vuer(PrefixProto, Server):
624
648
  await self.close_ws(ws_id)
625
649
 
626
650
  def add_handler(
627
- self,
628
- event_type: str,
629
- fn: EventHandler = None,
630
- once: bool = False,
651
+ self,
652
+ event_type: str,
653
+ fn: EventHandler = None,
654
+ once: bool = False,
631
655
  ) -> Callable[[], None]:
632
656
  """Adding event handlers to the vuer server.
633
657
 
@@ -705,7 +729,9 @@ class Vuer(PrefixProto, Server):
705
729
  """
706
730
  headers = request.headers
707
731
  if "websocket" != headers.get(UPGRADE, "").lower().strip():
708
- return await handle_file_request(request, self.client_root, filename="index.html")
732
+ return await handle_file_request(
733
+ request, self.client_root, filename="index.html"
734
+ )
709
735
  else:
710
736
  return await websocket_handler(request, self.downlink)
711
737
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vuer
3
- Version: 0.0.29rc11
3
+ Version: 0.0.31rc1
4
4
  Home-page: https://github.com/geyang/vuer
5
5
  Author: Ge Yang<ge.ike.yang@gmail.com>
6
6
  Author-email: ge.ike.yang@gmail.com
@@ -1,16 +1,16 @@
1
1
  vuer/__init__.py,sha256=kbjORSc64WWVHcx3eJB1wnCzhIF76eX5g-JAXYEDM4Q,519
2
- vuer/base.py,sha256=eorvvCmvOufxqnmXUc7zFDD91Trrh7a5hODNm4J4C9w,4146
2
+ vuer/base.py,sha256=wzJoR57hjRreMBPR2zCqARhap2NF_dnizGouKaOMiog,4224
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=tsOXagIpKPk7056vUz1AnmOgluKlhTNwYXoAbWiq-lI,22616
6
+ vuer/server.py,sha256=d1MgXCcs7WCG87uTUcFezW4UKxQp3nTMzWeDrONHjg4,23553
7
7
  vuer/types.py,sha256=N2KLa0fl6z8Jm6cJwZoD8Vqrins_AayG5BCGk1p3Eek,1279
8
8
  vuer/__pycache__/__init__.cpython-38.pyc,sha256=5iTFXy2ivwedwlehtJwBje7Bh3j86bu9TZh_waR8kvs,644
9
- vuer/__pycache__/base.cpython-38.pyc,sha256=U-ZxX__tpodeFai2-f6ZADy9gAG6xsYCPQPLrFljt3A,4579
9
+ vuer/__pycache__/base.cpython-38.pyc,sha256=0U6qDasrEqc8tsLvlmw5grPX_htqPxbmQpZ5R760Rso,4768
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=GncycLg8qwrlKR-X5el9txThHkY_zqejmZlpQKAeJnA,2253
13
- vuer/__pycache__/server.cpython-38.pyc,sha256=HhrlTfHGBrl43_SQV65Rhw7gYNxix6LA-SZ-yst8X00,20667
13
+ vuer/__pycache__/server.cpython-38.pyc,sha256=rlfXkgvQGNT04X_p_s1oZPIsSauNVA66eL9NRjWOMJQ,21559
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
@@ -21,11 +21,12 @@ vuer/addons/nerf_vuer/render_components.py,sha256=XilHnJySJWVgmdUbPFNYyc_YWV8O5A
21
21
  vuer/addons/nerf_vuer/render_nodes.py,sha256=5TKqIbMPiOtBxfF4FQI6uB0w_9FTfGiwS8xRbhPa0_g,14441
22
22
  vuer/addons/nerfuer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  vuer/addons/nerfuer/render_nodes.py,sha256=EJK5N3xne5n7abTaAoLPX7SRqQ_tEen9zNypvSnZTTw,4465
24
- vuer/client_build/404.html,sha256=fDAJ1tE47e_rEjJgDQ1QgPG4eweM8-jXzdlXrPNlmv8,1532
25
- vuer/client_build/index.html,sha256=WLsqCc6IMhG50Vd4Yq6rt2ddl5shESu28bJFgzALofE,1550
24
+ vuer/client_build/404.html,sha256=IFWSpCaaWpTPMFgfv7qj6xzohyA_y9yhtJznMQOy7yU,1532
25
+ vuer/client_build/index.html,sha256=dwFSSr-3A1AJ1iEZED6VZhDqUkTX6J4oloa6fJxrl8s,1550
26
26
  vuer/client_build/index.pageContext.json,sha256=cDzjtPrpBS_xn6mAImpqN95PBiIlsHlXTCxI_6aDFkY,276
27
27
  vuer/client_build/vike.json,sha256=ySG86nFxLXP-i4T3iTf11H9QlSce0aritnTRU40ySIY,242
28
28
  vuer/client_build/assets/chunks/chunk-033cd999.js,sha256=srTkxxlDzZwlotX77EmhmM9GCTOMf_uk1U5K5YGTXp0,438180
29
+ vuer/client_build/assets/chunks/chunk-099500ef.js,sha256=fad6-Biq3lvNTNzCipwIkSFCcoLV0cxi6jmB600AQ1g,831
29
30
  vuer/client_build/assets/chunks/chunk-0c07adda.js,sha256=G-_ZoAa3vh97Mffg3FzsD53DnrfNCwjithd03WfVpck,8249
30
31
  vuer/client_build/assets/chunks/chunk-0c7b0c67.js,sha256=-HoKnpN3SSOW5k8g1dTc00cH_1tQcGqf2mLpV6DOn0Y,1986485
31
32
  vuer/client_build/assets/chunks/chunk-11242fef.js,sha256=rMJDyqJJSOmBFlKKX-hFqhG9BTKaP5AJO_n1vko6oFU,438180
@@ -34,6 +35,7 @@ vuer/client_build/assets/chunks/chunk-1573e13d.js,sha256=T1gtBBdbijaTSgZtOrXn3wd
34
35
  vuer/client_build/assets/chunks/chunk-1581dd07.js,sha256=lXC1jZEAJa9Aknb67oJafur29GxxXQfm8knXE7QkfOg,1983748
35
36
  vuer/client_build/assets/chunks/chunk-181cf52e.js,sha256=ijdEC1I3I0ZcGNqKJH7e20VTFW8NPfpYyBV8GIP-BuI,1985389
36
37
  vuer/client_build/assets/chunks/chunk-1ffa2560.js,sha256=BqaBhBVihBaFAUHyCknvEHqcN6g4UOqMbOdpvsNxB8k,831
38
+ vuer/client_build/assets/chunks/chunk-296fa6e9.js,sha256=S9Z9qZZlnZ8c8_3nLWVIZfGWuIkGwlsBUmqVGwULxdw,438180
37
39
  vuer/client_build/assets/chunks/chunk-2b009735.js,sha256=D0xb98lm9mmtOnycN5BSU55q73Sk7RSk62fB6soKEoE,438180
38
40
  vuer/client_build/assets/chunks/chunk-2c9e68dc.js,sha256=c5MF_5q3C232xwiKVmQqLe26xJ1uFq3PouIuUrx6FsU,108791
39
41
  vuer/client_build/assets/chunks/chunk-32d88b6c.js,sha256=L661GV4fm90Ysju4-fFp5PBU6yw2r0vimbgDcU4wm9w,438180
@@ -48,6 +50,7 @@ vuer/client_build/assets/chunks/chunk-86f0507b.js,sha256=CQpxQFj5GYJXKogTG1jw77N
48
50
  vuer/client_build/assets/chunks/chunk-98620ee4.js,sha256=fqZ66IPMc_9VxCkURkK6lFWpUHju9XfvV4NtGMlClUE,438180
49
51
  vuer/client_build/assets/chunks/chunk-9d4c7361.js,sha256=cVtnI8nzruGMgme5nu14zwFo7pGrE6NXbZr6x7MuYG8,108791
50
52
  vuer/client_build/assets/chunks/chunk-a6eac392.js,sha256=BQM-PwZU5K2h4C_bcD64xnl0s030c-OqzlqiLeyjN1A,108791
53
+ vuer/client_build/assets/chunks/chunk-a9637f17.js,sha256=u3fsrgFjrv_JiTZf-DVbALJg-muuv4VNHFIFs8Nk9Qo,108791
51
54
  vuer/client_build/assets/chunks/chunk-b0bf2d23.js,sha256=chxgRiqHEiRhMzpHjPQ22CHjG-9b7c7inIiMjn4epz8,831
52
55
  vuer/client_build/assets/chunks/chunk-bdd7c22e.js,sha256=HK8G4gGI8PP-iuOa16kUfkQ4YjYH8Pnr3kcUnEuk4mQ,108791
53
56
  vuer/client_build/assets/chunks/chunk-c1144ce7.js,sha256=d1c-hLKQD6l8LZO87iYF3QOJxlGxl9dj4meHtFFm9w4,1986702
@@ -60,8 +63,10 @@ vuer/client_build/assets/chunks/chunk-cf010ec4.js,sha256=xyzNT9selncq9GK6bqVO9HH
60
63
  vuer/client_build/assets/chunks/chunk-d7665daa.js,sha256=aGH3ahNp1JeDOP3PWv8a2FFuFHVvVfFUqPR_ta6exL0,831
61
64
  vuer/client_build/assets/chunks/chunk-d8996854.js,sha256=O6sup2_Hwe6dbCRio7aaAuzcyf86JWl4wpflqV2RwqQ,831
62
65
  vuer/client_build/assets/chunks/chunk-e1dbff7e.js,sha256=Fzv9qC0wXc3KGA8_LL5GVjdbJF9NTSgcWz8ZwpDDPMg,108791
66
+ vuer/client_build/assets/chunks/chunk-f1f5ab43.js,sha256=9sbnNFqHVMiYEH8vXbNTI_AGsQFrFDoHg-Awr4jtiGE,1986770
63
67
  vuer/client_build/assets/chunks/chunk-f6ac826f.js,sha256=gDHbpGbi3ws7yDXqo8vAUAW4FQdD4j9hq-Brsh51sK8,1984031
64
68
  vuer/client_build/assets/entries/entry-client-routing.09665e16.js,sha256=cNvp0SW4Q_0eVSNp8lqov3BPt9Q2r_xbch7MiEOcD9E,40226
69
+ vuer/client_build/assets/entries/entry-client-routing.366b6f36.js,sha256=tl0tc_HcIrpbUGOZTvNio-BwJ_7qQZ64fryTQ4YBbRQ,40226
65
70
  vuer/client_build/assets/entries/entry-client-routing.9b421a83.js,sha256=pitGYTn0-EcTbxr8u0xAW0QVanHYKbjOyT2sSzo83IU,40226
66
71
  vuer/client_build/assets/entries/entry-client-routing.b091f770.js,sha256=39n7GGL5DtqcplTpaaZjk7VewkRKhSDwk6motdQ-5js,40226
67
72
  vuer/client_build/assets/entries/entry-client-routing.b0e9432f.js,sha256=f_m_anbjnvgSDlEDjCYpBLxLqfqdgqACUbek3C8hiqM,40226
@@ -72,6 +77,7 @@ vuer/client_build/assets/entries/entry-client-routing.fef74cf7.js,sha256=Cjp9RmT
72
77
  vuer/client_build/assets/entries/entry-server-routing.05de3b91.js,sha256=eMzKqCaeDxwJEvtV7k1YUcVieXeHAX100q3C_ArC46o,2920
73
78
  vuer/client_build/assets/entries/entry-server-routing.05f74fe9.js,sha256=2AEFQmHYC2DOkLrBJQ6vddxJ0kYnkT09chnUjhpC5Tc,2920
74
79
  vuer/client_build/assets/entries/entry-server-routing.09d025fe.js,sha256=Si0ItD5y3onrgXtX4bEDrU44k-FENJMlPoJ2V0AyLpw,2920
80
+ vuer/client_build/assets/entries/entry-server-routing.3c78054e.js,sha256=gvBx1fya8nXylhn64vULFHZ5rK32I0gEHBM8NAh27Vg,2920
75
81
  vuer/client_build/assets/entries/entry-server-routing.9a7f23b8.js,sha256=vaYB3LWsZK-xZY22-NbdThmYJsCoW7Mny7ai2Rx_O7o,2920
76
82
  vuer/client_build/assets/entries/entry-server-routing.c86174f6.js,sha256=iqVaAXVGvyzCOf9tLvl735Yj3mVrMn5v-0_QvA01kB0,2920
77
83
  vuer/client_build/assets/entries/entry-server-routing.cdb49a95.js,sha256=8gQurl-HIY-Va6oYyR1opS6MrzYLIxpNw55QVas_ZDg,2920
@@ -84,10 +90,12 @@ vuer/client_build/assets/entries/pages_hands.page.40ebd865.js,sha256=gY2XmWc6Ez2
84
90
  vuer/client_build/assets/entries/pages_hands.page.6f1e3303.js,sha256=GI1MPYBkVVPReZCUnhKOhu9Z5I2EEtASWxibQbV8KIE,689
85
91
  vuer/client_build/assets/entries/pages_hands.page.724feffe.js,sha256=l2Ok2Zwwje_8Jy3do7AURAbs0LNRNK9pGUB-2O0rnwI,689
86
92
  vuer/client_build/assets/entries/pages_hands.page.85f51479.js,sha256=BJ24r5ERj6orO6_gg_VTOzACC0PlmAvR3a597w89OhM,689
93
+ vuer/client_build/assets/entries/pages_hands.page.f1b58e26.js,sha256=UTceh4_vp_dYKZvy7Bx1QGius5NG9hD3l-FIN5-tR8A,689
87
94
  vuer/client_build/assets/entries/pages_hands.page.fb90f80e.js,sha256=KSOJSp92sXCorG56oSymbsM3s3DJm3FUNGeX4eLOUTo,689
88
95
  vuer/client_build/assets/entries/pages_index.page.25e5c467.js,sha256=Ha5iy2n14MjyeniYLydv0wa6rGDWvAdIQl5eCUzygoY,46281
89
96
  vuer/client_build/assets/entries/pages_index.page.25ffff8e.js,sha256=qySOw0QRaM-nAlB1ZmLlcWO9T7m1WfCtwOEx1IKSu0Q,46266
90
97
  vuer/client_build/assets/entries/pages_index.page.323784ad.js,sha256=oknAjjztKr2-jlrG1fIL_aahhGz15wntLeQKlNy65n8,46281
98
+ vuer/client_build/assets/entries/pages_index.page.6cc7880e.js,sha256=Tzma-VBAehhrb3vNp4KjVmUKAzGmanbBbATwgh1_l5w,46281
91
99
  vuer/client_build/assets/entries/pages_index.page.731f7c9f.js,sha256=4vB8uVG9anL_WXw3pcM7xThy3viw6bOM5Ph5Cw3A9dQ,46281
92
100
  vuer/client_build/assets/entries/pages_index.page.76e4864a.js,sha256=PcV5xJ7FH7-DI7nWgrNBOvf9Bh1RDInhp2DUQDrQ47A,46281
93
101
  vuer/client_build/assets/entries/pages_index.page.95009002.js,sha256=u0uhWAYwEM2Jhq63qhAGMEw-izkoyKSvqtI26cYzAZA,46281
@@ -99,19 +107,19 @@ vuer/client_build/assets/entries/renderer_error.page.4485c2ac.js,sha256=NWA-7ne7
99
107
  vuer/client_build/assets/static/default.page.client.7be06a4d.css,sha256=e-BqTfB-OA4YWwF_M13Vx0MmFjx2VI2J7NFAziGM4hU,725
100
108
  vuer/client_build/assets/static/loading.ade72bfe.svg,sha256=recr_hKSLeAIQFkCv9XEi5pIXJCdXgohH4WNBeYcqu8,504
101
109
  vuer/client_build/assets/static/logo.bebe2e90.svg,sha256=vr4ukFyN_pgQCYZZTj73l8rIXKUB0SvkrqNcgmebgLA,5786
102
- vuer/client_build/hands/index.html,sha256=HdWVMXXa75U_178t-fcCzu_TFCQEueshanNgi2umoAM,1554
110
+ vuer/client_build/hands/index.html,sha256=E18xQ0UCKT2KP3w6O11UB0VUiTWbd6Og4ibXNrxQyps,1554
103
111
  vuer/client_build/hands/index.pageContext.json,sha256=nRC_8Jo3t6gqQUHn2FDfo6cPOJPMonkkWWBfoBG1wzI,276
104
112
  vuer/schemas/__init__.py,sha256=ZI6UyeLZXqJbHmp6LiE3Q3mHvt1zeV-SJmmcqq-wBZE,94
105
113
  vuer/schemas/drei_components.py,sha256=U9svEOnNprhZaobLagaFnqEtZxo5hiriSqjDnvQutoA,6989
106
- vuer/schemas/html_components.py,sha256=KGvRo8b-34Kch81cTNPffRLKuU8oa5SX_0xZ1lkJhxY,6134
114
+ vuer/schemas/html_components.py,sha256=At6DUVyxXGJRRcI3I4fdNasKHw97kDY-9CwRZsH6vZk,6757
107
115
  vuer/schemas/scene_components.py,sha256=-4EqZSpDbv_EOCZarPgqSwxR1cAnjLKX3rP8f1Db1X0,18902
108
116
  vuer/schemas/__pycache__/__init__.cpython-38.pyc,sha256=NRnVrpIDBKne93xOUY1-WpavCG7vwYiqU3VDTEEwuUE,221
109
117
  vuer/schemas/__pycache__/drei_components.cpython-38.pyc,sha256=g_ufcKxf-XKfZLdUV-HqKnjIrgxGWFv51aHLWQgH-ws,7712
110
- vuer/schemas/__pycache__/html_components.cpython-38.pyc,sha256=sk2gDqu_zNQMS-PC8d3L90bvjFjTBb8-UKK9Ka5aoAw,8348
118
+ vuer/schemas/__pycache__/html_components.cpython-38.pyc,sha256=vvQM_hls_jCR_XhTH-4wowWBYsomuRBwaP3L63KjC7U,8712
111
119
  vuer/schemas/__pycache__/scene_components.cpython-38.pyc,sha256=FCBjSZs-lX5YvhcL3K0s_T_oz2Fm8NAdd-XsPoXQc9s,22109
112
- vuer-0.0.29rc11.dist-info/LICENSE,sha256=MGF-inVBUaGe2mEjqT0g6XsHIXwoNXgNHqD7Z1MzR0k,1063
113
- vuer-0.0.29rc11.dist-info/METADATA,sha256=W4tvIzedNKixLgToBIZt5EzoUlTmlwxf2jG4bm31ltI,5350
114
- vuer-0.0.29rc11.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
115
- vuer-0.0.29rc11.dist-info/entry_points.txt,sha256=J_NM6fbpipmD9oP7cdxd1UyBR8mVEQVx0xjlE_56yss,41
116
- vuer-0.0.29rc11.dist-info/top_level.txt,sha256=ermmVkwvGFAK4gfSgDIwOmKpxwpqNt-oo7gVQQUSHok,5
117
- vuer-0.0.29rc11.dist-info/RECORD,,
120
+ vuer-0.0.31rc1.dist-info/LICENSE,sha256=MGF-inVBUaGe2mEjqT0g6XsHIXwoNXgNHqD7Z1MzR0k,1063
121
+ vuer-0.0.31rc1.dist-info/METADATA,sha256=Lg1Ru6QCfCc7ixNH2nhhs8zmlXqW60eSdgTt8rnYyH8,5349
122
+ vuer-0.0.31rc1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
123
+ vuer-0.0.31rc1.dist-info/entry_points.txt,sha256=J_NM6fbpipmD9oP7cdxd1UyBR8mVEQVx0xjlE_56yss,41
124
+ vuer-0.0.31rc1.dist-info/top_level.txt,sha256=ermmVkwvGFAK4gfSgDIwOmKpxwpqNt-oo7gVQQUSHok,5
125
+ vuer-0.0.31rc1.dist-info/RECORD,,