pymammotion 0.4.0b6__py3-none-any.whl → 0.4.0b8__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.
- pymammotion/data/state_manager.py +9 -7
- pymammotion/mammotion/devices/mammotion.py +6 -0
- pymammotion/mammotion/devices/mammotion_bluetooth.py +1 -1
- pymammotion/mammotion/devices/mammotion_cloud.py +4 -1
- pymammotion/mqtt/linkkit/__init__.py +5 -0
- pymammotion/mqtt/linkkit/h2client.py +585 -0
- pymammotion/mqtt/linkkit/linkkit.py +3020 -0
- pymammotion/mqtt/mammotion_mqtt.py +1 -1
- {pymammotion-0.4.0b6.dist-info → pymammotion-0.4.0b8.dist-info}/METADATA +2 -3
- {pymammotion-0.4.0b6.dist-info → pymammotion-0.4.0b8.dist-info}/RECORD +12 -9
- {pymammotion-0.4.0b6.dist-info → pymammotion-0.4.0b8.dist-info}/LICENSE +0 -0
- {pymammotion-0.4.0b6.dist-info → pymammotion-0.4.0b8.dist-info}/WHEEL +0 -0
@@ -10,13 +10,13 @@ import logging
|
|
10
10
|
from logging import getLogger
|
11
11
|
|
12
12
|
import betterproto
|
13
|
-
from linkkit.linkkit import LinkKit
|
14
13
|
from paho.mqtt.client import MQTTMessage
|
15
14
|
|
16
15
|
from pymammotion.aliyun.cloud_gateway import CloudIOTGateway
|
17
16
|
from pymammotion.data.mqtt.event import ThingEventMessage
|
18
17
|
from pymammotion.data.mqtt.properties import ThingPropertiesMessage
|
19
18
|
from pymammotion.data.mqtt.status import ThingStatusMessage
|
19
|
+
from pymammotion.mqtt.linkkit.linkkit import LinkKit
|
20
20
|
from pymammotion.proto.luba_msg import LubaMsg
|
21
21
|
|
22
22
|
logger = getLogger(__name__)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pymammotion
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.0b8
|
4
4
|
Summary:
|
5
5
|
License: GPL-3.0
|
6
6
|
Author: Michael Arthur
|
@@ -15,7 +15,6 @@ Requires-Dist: aiohttp (>=3.9.1,<4.0.0)
|
|
15
15
|
Requires-Dist: alibabacloud-apigateway-util (>=0.0.2,<0.0.3)
|
16
16
|
Requires-Dist: alibabacloud-iot-api-gateway (>=0.0.4,<0.0.5)
|
17
17
|
Requires-Dist: alicloud-gateway-iot (>=1.0.0,<2.0.0)
|
18
|
-
Requires-Dist: aliyun-iot-linkkit (>=1.2.12,<2.0.0)
|
19
18
|
Requires-Dist: async-timeout (>=4.0.3,<5.0.0)
|
20
19
|
Requires-Dist: betterproto (>=1.2.5,<2.0.0)
|
21
20
|
Requires-Dist: bleak (>=0.21.0)
|
@@ -26,7 +25,7 @@ Requires-Dist: jsonic (>=1.0.0,<2.0.0)
|
|
26
25
|
Requires-Dist: mashumaro (>=3.13,<4.0)
|
27
26
|
Requires-Dist: numpy (>=1.26.0)
|
28
27
|
Requires-Dist: orjson (>=3.9.15,<4.0.0)
|
29
|
-
Requires-Dist: paho-mqtt (>=1.
|
28
|
+
Requires-Dist: paho-mqtt (>=2.1.0,<3.0.0)
|
30
29
|
Requires-Dist: protobuf (>=4.23.1)
|
31
30
|
Requires-Dist: py-jsonic (>=0.0.2,<0.0.3)
|
32
31
|
Description-Content-Type: text/markdown
|
@@ -43,7 +43,7 @@ pymammotion/data/mqtt/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdr
|
|
43
43
|
pymammotion/data/mqtt/event.py,sha256=r14gzZVxmlGVAwFdZQ1CUsMZFHHwRKnbt2VHnjugP28,5123
|
44
44
|
pymammotion/data/mqtt/properties.py,sha256=pX5JRVmmpVO04CSPm5xAGcSWA_OeLd0JnBagLsfiSEc,3755
|
45
45
|
pymammotion/data/mqtt/status.py,sha256=DuNC3JdewLPKNqNHx76_FPXRvheYSiM-CdiVTCCYY8s,1079
|
46
|
-
pymammotion/data/state_manager.py,sha256=
|
46
|
+
pymammotion/data/state_manager.py,sha256=7NjzupxP-B9BDXTBNrdm7fcryW24-QZ5vJyjv6Y_dEU,8071
|
47
47
|
pymammotion/event/__init__.py,sha256=mgATR6vPHACNQ-0zH5fi7NdzeTCDV1CZyaWPmtUusi8,115
|
48
48
|
pymammotion/event/event.py,sha256=bj2RirSIRyBs0QvkcrOtwZWUX_8F3m1sySuHVyKmZLs,2143
|
49
49
|
pymammotion/http/_init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -66,12 +66,15 @@ pymammotion/mammotion/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
66
66
|
pymammotion/mammotion/control/joystick.py,sha256=QfBVxM_gxpWsZAGO90whtgxCI2tIZ3TTad9wHIPsU9s,5640
|
67
67
|
pymammotion/mammotion/devices/__init__.py,sha256=f2qQFPgLGmV85W2hSlMUh5BYuht9o_Ar_JEAAMD4fsE,102
|
68
68
|
pymammotion/mammotion/devices/base.py,sha256=evNKt1PDDGPkm4wleIEC2dtHuyDP_nHRCg35nrQg6qg,10260
|
69
|
-
pymammotion/mammotion/devices/mammotion.py,sha256
|
70
|
-
pymammotion/mammotion/devices/mammotion_bluetooth.py,sha256=
|
71
|
-
pymammotion/mammotion/devices/mammotion_cloud.py,sha256=
|
69
|
+
pymammotion/mammotion/devices/mammotion.py,sha256=W5kzq-1nzianRMNDR2YXgc5KenjxS95EDRcczgi75TA,12817
|
70
|
+
pymammotion/mammotion/devices/mammotion_bluetooth.py,sha256=XFnbAz3l9QWBf0JMhR79bR59gnuesjnOprSbEoUNoUI,19613
|
71
|
+
pymammotion/mammotion/devices/mammotion_cloud.py,sha256=ai9wZf-nBz9pDlEKsRef-Fsp9PNIonM0zWdHvA5IVKs,13967
|
72
72
|
pymammotion/mqtt/__init__.py,sha256=Ocs5e-HLJvTuDpVXyECEsWIvwsUaxzj7lZ9mSYutNDY,105
|
73
|
+
pymammotion/mqtt/linkkit/__init__.py,sha256=ENgc3ynd2kd9gMQR3-kgmCu6Ed9Y6XCIzU0zFReUlkk,80
|
74
|
+
pymammotion/mqtt/linkkit/h2client.py,sha256=w9Nvi_nY4CLD_fw-pHtYChwQf7e2TiAGeqkY_sF4cf0,19659
|
75
|
+
pymammotion/mqtt/linkkit/linkkit.py,sha256=NzFpdtfxNHQ6xNu-POyp45fTK7AWUAWV7RavFevX4m4,132772
|
73
76
|
pymammotion/mqtt/mammotion_future.py,sha256=_OWqKOlUGl2yT1xOsXFQYpGd-1zQ63OxqXgy7KRQgYc,710
|
74
|
-
pymammotion/mqtt/mammotion_mqtt.py,sha256=
|
77
|
+
pymammotion/mqtt/mammotion_mqtt.py,sha256=csnKHAOqjmNYtk2uAly2_Qg7J6ZNtiULZO7q5Poua30,8876
|
75
78
|
pymammotion/proto/__init__.py,sha256=v3_P1LOsYRBN9qCAhaWrWMX7GWHrox9XD3hdZQxcPZM,190
|
76
79
|
pymammotion/proto/basestation.proto,sha256=_x5gAz3FkZXS1jtq4GgZgaDCuRU-UV-7HTFdsfQ3zbo,1034
|
77
80
|
pymammotion/proto/basestation.py,sha256=js64_N2xQYRxWPRdVNEapO0qe7vBlfYnjW5sE8hi7hw,2026
|
@@ -124,7 +127,7 @@ pymammotion/utility/map.py,sha256=GYscVMg2cX3IPlNpCBNHDW0S55yS1WGRf1iHnNZ7TfQ,22
|
|
124
127
|
pymammotion/utility/movement.py,sha256=N75oAoAgFydqoaOedYIxGUHmuTCtPzAOtb-d_29tpfI,615
|
125
128
|
pymammotion/utility/periodic.py,sha256=MbeSb9cfhxzYmdT_RiE0dZe3H9IfbQW_zSqhmSX2RUc,3321
|
126
129
|
pymammotion/utility/rocker_util.py,sha256=6tX7sS87qoQC_tsxbx3NLL-HgS08wtzXiZkhDiz7uo0,7179
|
127
|
-
pymammotion-0.4.
|
128
|
-
pymammotion-0.4.
|
129
|
-
pymammotion-0.4.
|
130
|
-
pymammotion-0.4.
|
130
|
+
pymammotion-0.4.0b8.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
131
|
+
pymammotion-0.4.0b8.dist-info/METADATA,sha256=47kTxiMfeOfiLnem-ta88h91Wec53wuQY_XauFORA8I,3886
|
132
|
+
pymammotion-0.4.0b8.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
133
|
+
pymammotion-0.4.0b8.dist-info/RECORD,,
|
File without changes
|
File without changes
|