dexcomm 0.1.9__cp313-cp313-win_amd64.whl → 0.1.11__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.
- {dexcomm-0.1.9.dist-info → dexcomm-0.1.11.dist-info}/METADATA +1 -1
- {dexcomm-0.1.9.dist-info → dexcomm-0.1.11.dist-info}/RECORD +7 -7
- dexcomm.cp313-win_amd64.pyd +0 -0
- dexcomm.pyi +4 -0
- {dexcomm-0.1.9.dist-info → dexcomm-0.1.11.dist-info}/WHEEL +0 -0
- {dexcomm-0.1.9.dist-info → dexcomm-0.1.11.dist-info}/licenses/LICENSE +0 -0
- {dexcomm-0.1.9.dist-info → dexcomm-0.1.11.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
dexcomm.cp313-win_amd64.pyd,sha256=
|
|
2
|
-
dexcomm.pyi,sha256=
|
|
1
|
+
dexcomm.cp313-win_amd64.pyd,sha256=iBIvADzBvh1fDOvzfpNaC8PG1X-F7gQXNgHKkhQQpow,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.
|
|
10
|
+
dexcomm-0.1.11.dist-info/licenses/LICENSE,sha256=qbcPJZWsafz-NJrAz2J_cFCricFk2DFSsCUqs3ELtM8,31929
|
|
11
11
|
dexcomm.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
|
|
12
|
-
dexcomm-0.1.
|
|
13
|
-
dexcomm-0.1.
|
|
14
|
-
dexcomm-0.1.
|
|
15
|
-
dexcomm-0.1.
|
|
12
|
+
dexcomm-0.1.11.dist-info/METADATA,sha256=yFbxtLH9znoSfwe7R4BzVAkxfNlaFGFKZppxr2H6tkE,10156
|
|
13
|
+
dexcomm-0.1.11.dist-info/WHEEL,sha256=d2WxmbmKvrk_r3HG4mLQwWrSKN0GIQyQAUifCoiSmIg,97
|
|
14
|
+
dexcomm-0.1.11.dist-info/top_level.txt,sha256=HxOSa-2r1LWUCgaGigQiF4n_u5VjFQpIFg9bGcggaqQ,8
|
|
15
|
+
dexcomm-0.1.11.dist-info/RECORD,,
|
dexcomm.cp313-win_amd64.pyd
CHANGED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|