dexcomm 0.1.9__cp313-cp313-win_amd64.whl → 0.1.10__cp313-cp313-win_amd64.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dexcomm
3
- Version: 0.1.9
3
+ Version: 0.1.10
4
4
  Summary: Communication library using Zenoh with ROS-like functionality
5
5
  Author-email: Dexmate <contact@dexmate.ai>
6
6
  Maintainer-email: Dexmate <contact@dexmate.ai>
@@ -1,5 +1,5 @@
1
- dexcomm.cp313-win_amd64.pyd,sha256=zVWsWOPahdag6qONADNHSvVkkT4z1ljwlOGa8Frd1zk,1315328
2
- dexcomm.pyi,sha256=RcmkbCx3dnXhLsZVm8b96tdU1sgrcr4LU7hz76I4_W0,3572
1
+ dexcomm.cp313-win_amd64.pyd,sha256=rS14hkvm-PivMGfzNnxAjvgLF5uaAaA-BcXS6RSdspc,1316352
2
+ dexcomm.pyi,sha256=5qVRU7uf0VzdsipL0OXAK0R0NSZXfAOHxkSzalN7bds,3678
3
3
  dexcomm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  dexcomm/serialization/protobuf/control_msg_pb2.pyi,sha256=Q_x2JF9r5n-NGgzHjK7cQUtGly67gNeYyxW4QsN8w44,8878
5
5
  dexcomm/serialization/protobuf/control_query_pb2.pyi,sha256=2sP15LttgofviPiDHFoEL2jvHFD09WMuK495luIPa0E,7749
@@ -7,9 +7,9 @@ dexcomm/serialization/protobuf/image_pb2.pyi,sha256=xfELb-TQcJ_Kl6HhoFU0adRBYy2F
7
7
  dexcomm/serialization/protobuf/imu_pb2.pyi,sha256=EsXcUSQfhAvBqyo2QucZJrgUX72pZc-urGrxxcJ2_tY,1434
8
8
  dexcomm/serialization/protobuf/lidar2d_pb2.pyi,sha256=77hQycxjoSxqnLwolSS4nrkqTCn_B-GA1ynhfH_6QH8,2175
9
9
  dexcomm/serialization/protobuf/soc_internal_pb2.pyi,sha256=OJbjqM5VLxmByJjpT-Gm0Qsfa88sh4L3jI6B7xGtIL4,2385
10
- dexcomm-0.1.9.dist-info/licenses/LICENSE,sha256=qbcPJZWsafz-NJrAz2J_cFCricFk2DFSsCUqs3ELtM8,31929
10
+ dexcomm-0.1.10.dist-info/licenses/LICENSE,sha256=qbcPJZWsafz-NJrAz2J_cFCricFk2DFSsCUqs3ELtM8,31929
11
11
  dexcomm.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
12
- dexcomm-0.1.9.dist-info/METADATA,sha256=IvFgSWCEJ5HWI6vjmj7SBNSNyLKK4DqEvGX4SCfwP7o,10155
13
- dexcomm-0.1.9.dist-info/WHEEL,sha256=d2WxmbmKvrk_r3HG4mLQwWrSKN0GIQyQAUifCoiSmIg,97
14
- dexcomm-0.1.9.dist-info/top_level.txt,sha256=HxOSa-2r1LWUCgaGigQiF4n_u5VjFQpIFg9bGcggaqQ,8
15
- dexcomm-0.1.9.dist-info/RECORD,,
12
+ dexcomm-0.1.10.dist-info/METADATA,sha256=B6IouW1a7R4hEes97d2BQr8ScoJWwXIoe9Q8E6it71U,10156
13
+ dexcomm-0.1.10.dist-info/WHEEL,sha256=d2WxmbmKvrk_r3HG4mLQwWrSKN0GIQyQAUifCoiSmIg,97
14
+ dexcomm-0.1.10.dist-info/top_level.txt,sha256=HxOSa-2r1LWUCgaGigQiF4n_u5VjFQpIFg9bGcggaqQ,8
15
+ dexcomm-0.1.10.dist-info/RECORD,,
Binary file
dexcomm.pyi CHANGED
@@ -8,9 +8,11 @@ from dexcomm.core.constants import UNSET
8
8
  from dexcomm.patterns import CommunicationManager, Node, PublisherManager, ServiceConfig, ServiceManager, SubscriberManager, TopicConfig
9
9
  from dexcomm.serialization import deserialize_auto, deserialize_depth, deserialize_image, deserialize_numpy, serialize_auto, serialize_depth, serialize_image, serialize_numpy
10
10
  from dexcomm.utils import RateLimiter
11
+ from importlib.metadata import version
11
12
  from pathlib import Path
12
13
 
13
14
  LIB_PATH = Path(__file__).parent
15
+ __version__ = 'unknown'
14
16
  __all__ = ['ZenohConfig', 'SessionManager', 'get_session', 'get_session_manager', 'cleanup_session', 'get_active_topics', 'get_active_services', 'env_vars', 'UNSET', 'Publisher', 'Subscriber', 'Service', 'ServiceClient', 'RateLimitedPublisher', 'BufferedSubscriber', 'publish', 'subscribe', 'call_service', 'serve', 'get_latest', 'wait_for_message', 'Node', 'PublisherManager', 'SubscriberManager', 'ServiceManager', 'CommunicationManager', 'TopicConfig', 'ServiceConfig', 'serialize_auto', 'deserialize_auto', 'serialize_numpy', 'deserialize_numpy', 'serialize_image', 'deserialize_image', 'serialize_depth', 'deserialize_depth', 'serialize_protobuf', 'deserialize_protobuf', 'RateLimiter', '__version__', 'LIB_PATH']
15
17
 
16
18
  __name__ = ...
@@ -55,6 +57,8 @@ import dexcomm.serialization.serialize_depth
55
57
  import dexcomm.serialization.deserialize_depth
56
58
  import pathlib
57
59
  import pathlib.Path
60
+ import importlib
61
+ import importlib.metadata
58
62
  import dexcomm.utils.RateLimiter
59
63
  import typing
60
64
  import threading