MaaFw 4.4.0b2__py3-none-win_amd64.whl → 4.5.0a1__py3-none-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.
Binary file
Binary file
Binary file
Binary file
Binary file
maa/bin/MaaFramework.dll CHANGED
Binary file
maa/bin/MaaToolkit.dll CHANGED
Binary file
maa/bin/MaaUtils.dll CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
maa/controller.py CHANGED
@@ -56,7 +56,21 @@ class Controller:
56
56
  return self._gen_ctrl_job(ctrl_id)
57
57
 
58
58
  def post_press_key(self, key: int) -> Job:
59
- ctrl_id = Library.framework().MaaControllerPostPressKey(self._handle, key)
59
+ """
60
+ Deprecated: Use post_click_key instead.
61
+ """
62
+ return self.post_click_key(key)
63
+
64
+ def post_click_key(self, key: int) -> Job:
65
+ ctrl_id = Library.framework().MaaControllerPostClickKey(self._handle, key)
66
+ return self._gen_ctrl_job(ctrl_id)
67
+
68
+ def post_key_down(self, key: int) -> Job:
69
+ ctrl_id = Library.framework().MaaControllerPostKeyDown(self._handle, key)
70
+ return self._gen_ctrl_job(ctrl_id)
71
+
72
+ def post_key_up(self, key: int) -> Job:
73
+ ctrl_id = Library.framework().MaaControllerPostKeyUp(self._handle, key)
60
74
  return self._gen_ctrl_job(ctrl_id)
61
75
 
62
76
  def post_input_text(self, text: str) -> Job:
@@ -216,12 +230,22 @@ class Controller:
216
230
  c_int32,
217
231
  ]
218
232
 
219
- Library.framework().MaaControllerPostPressKey.restype = MaaCtrlId
220
- Library.framework().MaaControllerPostPressKey.argtypes = [
233
+ Library.framework().MaaControllerPostClickKey.restype = MaaCtrlId
234
+ Library.framework().MaaControllerPostClickKey.argtypes = [
221
235
  MaaControllerHandle,
222
236
  c_int32,
223
237
  ]
224
238
 
239
+ Library.framework().MaaControllerPostKeyDown.restype = MaaCtrlId
240
+ Library.framework().MaaControllerPostKeyDown.argtypes = [
241
+ MaaControllerHandle,
242
+ c_int32,
243
+ ]
244
+ Library.framework().MaaControllerPostKeyUp.restype = MaaCtrlId
245
+ Library.framework().MaaControllerPostKeyUp.argtypes = [
246
+ MaaControllerHandle,
247
+ c_int32,
248
+ ]
225
249
  Library.framework().MaaControllerPostInputText.restype = MaaCtrlId
226
250
  Library.framework().MaaControllerPostInputText.argtypes = [
227
251
  MaaControllerHandle,
@@ -440,8 +464,10 @@ class CustomController(Controller):
440
464
  CustomController._c_touch_down_agent,
441
465
  CustomController._c_touch_move_agent,
442
466
  CustomController._c_touch_up_agent,
443
- CustomController._c_press_key_agent,
467
+ CustomController._c_click_key_agent,
444
468
  CustomController._c_input_text_agent,
469
+ CustomController._c_key_down_agent,
470
+ CustomController._c_key_up_agent,
445
471
  )
446
472
 
447
473
  self._handle = Library.framework().MaaCustomControllerCreate(
@@ -514,13 +540,21 @@ class CustomController(Controller):
514
540
  raise NotImplementedError
515
541
 
516
542
  @abstractmethod
517
- def press_key(self, keycode: int) -> bool:
543
+ def click_key(self, keycode: int) -> bool:
518
544
  raise NotImplementedError
519
545
 
520
546
  @abstractmethod
521
547
  def input_text(self, text: str) -> bool:
522
548
  raise NotImplementedError
523
549
 
550
+ @abstractmethod
551
+ def key_down(self, keycode: int) -> bool:
552
+ raise NotImplementedError
553
+
554
+ @abstractmethod
555
+ def key_up(self, keycode: int) -> bool:
556
+ raise NotImplementedError
557
+
524
558
  @staticmethod
525
559
  @MaaCustomControllerCallbacks.ConnectFunc
526
560
  def _c_connect_agent(
@@ -703,8 +737,40 @@ class CustomController(Controller):
703
737
  return int(self.touch_up(int(c_contact)))
704
738
 
705
739
  @staticmethod
706
- @MaaCustomControllerCallbacks.PressKeyFunc
707
- def _c_press_key_agent(
740
+ @MaaCustomControllerCallbacks.ClickKeyFunc
741
+ def _c_click_key_agent(
742
+ c_keycode: ctypes.c_int32,
743
+ trans_arg: ctypes.c_void_p,
744
+ ) -> int:
745
+ if not trans_arg:
746
+ return int(False)
747
+
748
+ self: CustomController = ctypes.cast(
749
+ trans_arg,
750
+ ctypes.py_object,
751
+ ).value
752
+
753
+ return int(self.click_key(int(c_keycode)))
754
+
755
+ @staticmethod
756
+ @MaaCustomControllerCallbacks.KeyDownFunc
757
+ def _c_key_down_agent(
758
+ c_keycode: ctypes.c_int32,
759
+ trans_arg: ctypes.c_void_p,
760
+ ) -> int:
761
+ if not trans_arg:
762
+ return int(False)
763
+
764
+ self: CustomController = ctypes.cast(
765
+ trans_arg,
766
+ ctypes.py_object,
767
+ ).value
768
+
769
+ return int(self.key_down(int(c_keycode)))
770
+
771
+ @staticmethod
772
+ @MaaCustomControllerCallbacks.KeyUpFunc
773
+ def _c_key_up_agent(
708
774
  c_keycode: ctypes.c_int32,
709
775
  trans_arg: ctypes.c_void_p,
710
776
  ) -> int:
@@ -716,7 +782,7 @@ class CustomController(Controller):
716
782
  ctypes.py_object,
717
783
  ).value
718
784
 
719
- return int(self.press_key(int(c_keycode)))
785
+ return int(self.key_up(int(c_keycode)))
720
786
 
721
787
  @staticmethod
722
788
  @MaaCustomControllerCallbacks.InputTextFunc
maa/custom_action.py CHANGED
@@ -88,5 +88,8 @@ class CustomAction(ABC):
88
88
  elif isinstance(result, bool):
89
89
  return int(result)
90
90
 
91
+ elif result is None:
92
+ return int(True)
93
+
91
94
  else:
92
95
  raise TypeError(f"Invalid return type: {result!r}")
maa/custom_recognition.py CHANGED
@@ -95,9 +95,6 @@ class CustomRecognition(ABC):
95
95
  detail_buffer.set(result.detail)
96
96
  return int(result.box is not None)
97
97
 
98
- elif result is None:
99
- return int(False)
100
-
101
98
  # RectType
102
99
  elif (
103
100
  isinstance(result, Rect)
@@ -108,5 +105,8 @@ class CustomRecognition(ABC):
108
105
  rect_buffer.set(result)
109
106
  return int(True)
110
107
 
108
+ elif result is None:
109
+ return int(False)
110
+
111
111
  else:
112
- raise ValueError("Invalid return type")
112
+ raise TypeError(f"Invalid return type: {result!r}")
maa/define.py CHANGED
@@ -66,11 +66,12 @@ class MaaGlobalOptionEnum(IntEnum):
66
66
  # value: bool, eg: true; val_size: sizeof(bool)
67
67
  SaveDraw = 2
68
68
 
69
+ # Deprecated
69
70
  # Dump all screenshots and actions
70
71
  #
71
72
  # Recording will evaluate to true if any of this or MaaCtrlOptionEnum::MaaCtrlOption_Recording
72
73
  # is true. value: bool, eg: true; val_size: sizeof(bool)
73
- Recording = 3
74
+ # Recording = 3
74
75
 
75
76
  # The level of log output to stdout
76
77
  #
@@ -105,10 +106,11 @@ class MaaCtrlOptionEnum(IntEnum):
105
106
  # value: bool, eg: true; val_size: sizeof(bool)
106
107
  ScreenshotUseRawSize = 3
107
108
 
109
+ # Deprecated
108
110
  # Dump all screenshots and actions
109
111
  # this option will || with MaaGlobalOptionEnum.Recording
110
112
  # value: bool, eg: true; val_size: sizeof(bool)
111
- Recording = 5
113
+ # Recording = 5
112
114
 
113
115
 
114
116
  class MaaInferenceDeviceEnum(IntEnum):
@@ -338,7 +340,7 @@ class MaaCustomControllerCallbacks(ctypes.Structure):
338
340
  ctypes.c_int32,
339
341
  ctypes.c_void_p,
340
342
  )
341
- PressKeyFunc = FUNCTYPE(
343
+ ClickKeyFunc = FUNCTYPE(
342
344
  MaaBool,
343
345
  ctypes.c_int32,
344
346
  ctypes.c_void_p,
@@ -348,6 +350,16 @@ class MaaCustomControllerCallbacks(ctypes.Structure):
348
350
  ctypes.c_char_p,
349
351
  ctypes.c_void_p,
350
352
  )
353
+ KeyDownFunc = FUNCTYPE(
354
+ MaaBool,
355
+ ctypes.c_int32,
356
+ ctypes.c_void_p,
357
+ )
358
+ KeyUpFunc = FUNCTYPE(
359
+ MaaBool,
360
+ ctypes.c_int32,
361
+ ctypes.c_void_p,
362
+ )
351
363
  _fields_ = [
352
364
  ("connect", ConnectFunc),
353
365
  ("request_uuid", RequestUuidFunc),
@@ -359,8 +371,10 @@ class MaaCustomControllerCallbacks(ctypes.Structure):
359
371
  ("touch_down", TouchDownFunc),
360
372
  ("touch_move", TouchMoveFunc),
361
373
  ("touch_up", TouchUpFunc),
362
- ("press_key", PressKeyFunc),
374
+ ("click_key", ClickKeyFunc),
363
375
  ("input_text", InputTextFunc),
376
+ ("key_down", KeyDownFunc),
377
+ ("key_up", KeyUpFunc),
364
378
  ]
365
379
 
366
380
 
maa/tasker.py CHANGED
@@ -136,14 +136,10 @@ class Tasker:
136
136
 
137
137
  @staticmethod
138
138
  def set_recording(recording: bool) -> bool:
139
- cbool = ctypes.c_bool(recording)
140
- return bool(
141
- Library.framework().MaaSetGlobalOption(
142
- MaaOption(MaaGlobalOptionEnum.Recording),
143
- ctypes.pointer(cbool),
144
- ctypes.sizeof(ctypes.c_bool),
145
- )
146
- )
139
+ """
140
+ Deprecated
141
+ """
142
+ return False
147
143
 
148
144
  @staticmethod
149
145
  def set_stdout_level(level: LoggingLevelEnum) -> bool:
@@ -156,17 +152,6 @@ class Tasker:
156
152
  )
157
153
  )
158
154
 
159
- @staticmethod
160
- def set_show_hit_draw(show_hit_draw: bool) -> bool:
161
- cbool = ctypes.c_bool(show_hit_draw)
162
- return bool(
163
- Library.framework().MaaSetGlobalOption(
164
- MaaOption(MaaGlobalOptionEnum.ShowHitDraw),
165
- ctypes.pointer(cbool),
166
- ctypes.sizeof(ctypes.c_bool),
167
- )
168
- )
169
-
170
155
  @staticmethod
171
156
  def set_debug_mode(debug_mode: bool) -> bool:
172
157
  cbool = ctypes.c_bool(debug_mode)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: MaaFw
3
- Version: 4.4.0b2
3
+ Version: 4.5.0a1
4
4
  Summary: An automation black-box testing framework based on image recognition
5
5
  Project-URL: Homepage, https://github.com/MaaXYZ/MaaFramework
6
6
  Author: MaaXYZ
@@ -66,8 +66,8 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
66
66
  - [MFAWPF](https://github.com/SweetSmellFox/MFAWPF) ![csharp](https://img.shields.io/badge/C%23-239120?logo=csharp&logoColor=white) ![license](https://img.shields.io/github/license/SweetSmellFox/MFAWPF) ![activity](https://img.shields.io/github/commit-activity/m/SweetSmellFox/MFAWPF?color=%23ff69b4) ![stars](https://img.shields.io/github/stars/SweetSmellFox/MFAWPF?style=social) [![mirrorc](https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5)](https://mirrorchyan.com/zh/projects?source=maafw-badge)
67
67
  基于 MAA 全新架构的 通用 GUI。由 MaaFramework 强力驱动!
68
68
 
69
- - [MFW-PyQt6](https://github.com/overflow65537/MFW-PyQt6) ![python](https://img.shields.io/badge/Python-3776AB?logo=python&logoColor=white) ![license](https://img.shields.io/github/license/overflow65537/MFW-PyQt6) ![activity](https://img.shields.io/github/commit-activity/m/overflow65537/MFW-PyQt6?color=%23ff69b4) ![stars](https://img.shields.io/github/stars/overflow65537/MFW-PyQt6?style=social) [![mirrorc](https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5)](https://mirrorchyan.com/zh/projects?source=maafw-badge)
70
- 基于PyQt6的通用GUI。由 MaaFramework 强力驱动!
69
+ - [MFW-CFA](https://github.com/overflow65537/MFW-PyQt6) ![python](https://img.shields.io/badge/Python-3776AB?logo=python&logoColor=white) ![license](https://img.shields.io/github/license/overflow65537/MFW-PyQt6) ![activity](https://img.shields.io/github/commit-activity/m/overflow65537/MFW-PyQt6?color=%23ff69b4) ![stars](https://img.shields.io/github/stars/overflow65537/MFW-PyQt6?style=social) [![mirrorc](https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5)](https://mirrorchyan.com/zh/projects?source=maafw-badge)
70
+ 基于PySide6的通用GUI。由 MaaFramework 强力驱动!
71
71
 
72
72
  - [MFAAvalonia](https://github.com/SweetSmellFox/MFAAvalonia) ![csharp](https://img.shields.io/badge/C%23-239120?logo=csharp&logoColor=white) ![license](https://img.shields.io/github/license/SweetSmellFox/MFAAvalonia) ![activity](https://img.shields.io/github/commit-activity/m/SweetSmellFox/MFAAvalonia?color=%23ff69b4) ![stars](https://img.shields.io/github/stars/SweetSmellFox/MFAAvalonia?style=social) [![mirrorc](https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5)](https://mirrorchyan.com/zh/projects?source=maafw-badge)
73
73
  基于 Avalonia 的 通用 GUI。由 MaaFramework 强力驱动!
@@ -94,7 +94,7 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
94
94
  - [MAS](https://github.com/MaaXYZ/MaaAssistantSkland) ![Pipeline](https://img.shields.io/badge/Pipeline-%23876f69?logo=paddypower&logoColor=%23FFFFFF) ![license](https://img.shields.io/github/license/MaaXYZ/MaaAssistantSkland) ![activity](https://img.shields.io/github/commit-activity/m/MaaXYZ/MaaAssistantSkland?color=%23ff69b4) ![stars](https://img.shields.io/github/stars/MaaXYZ/MaaAssistantSkland?style=social)
95
95
  森空岛 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
96
96
 
97
- - [MSBA](https://github.com/overflow65537/MAA_SnowBreak) ![Pipeline](https://img.shields.io/badge/Pipeline-%23876f69?logo=paddypower&logoColor=%23FFFFFF) ![license](https://img.shields.io/github/license/overflow65537/MAA_SnowBreak) ![activity](https://img.shields.io/github/commit-activity/m/overflow65537/MAA_SnowBreak?color=%23ff69b4) ![stars](https://img.shields.io/github/stars/overflow65537/MAA_SnowBreak?style=social) [![mirrorc](https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5)](https://mirrorchyan.com/zh/projects?source=maafw-badge)
97
+ - [MSBA](https://github.com/overflow65537/MAA_SnowBreak) ![Pipeline](https://img.shields.io/badge/Pipeline-%23876f69?logo=paddypower&logoColor=%23FFFFFF)![python](https://img.shields.io/badge/Python-3776AB?logo=python&logoColor=white) ![license](https://img.shields.io/github/license/overflow65537/MAA_SnowBreak) ![activity](https://img.shields.io/github/commit-activity/m/overflow65537/MAA_SnowBreak?color=%23ff69b4) ![stars](https://img.shields.io/github/stars/overflow65537/MAA_SnowBreak?style=social) [![mirrorc](https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5)](https://mirrorchyan.com/zh/projects?source=maafw-badge)
98
98
  尘白禁区 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
99
99
 
100
100
  - [MaaYYs](https://github.com/TanyaShue/MaaYYs) ![python](https://img.shields.io/badge/Python-3776AB?logo=python&logoColor=white) ![qt](https://img.shields.io/badge/Qt6-41CD52?logo=Qt&logoColor=white) ![license](https://img.shields.io/github/license/TanyaShue/MaaYYs) ![activity](https://img.shields.io/github/commit-activity/m/TanyaShue/MaaYYs?color=%23ff69b4) ![stars](https://img.shields.io/github/stars/TanyaShue/MaaYYs?style=social) [![mirrorc](https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5)](https://mirrorchyan.com/zh/projects?source=maafw-badge)
@@ -0,0 +1,33 @@
1
+ maa/__init__.py,sha256=t2Z9yJWrSZfH16xYN67bKpiPEHDf7iaiw4wi0PjmU8U,250
2
+ maa/agent_client.py,sha256=qx1-3VGp97JB_UMlbkvK-O_GTigbdqD6U4gGKi2yQW4,4049
3
+ maa/buffer.py,sha256=XFr1MnWt-xmZkhQ_2ZzGfiqSJJwmphY4U07EEzMNYQc,16544
4
+ maa/context.py,sha256=dYCvRNqq2iCL8lIyp2TkZorGB5KNI34L3pGzlpdL7co,6454
5
+ maa/controller.py,sha256=pyVPwRnpGcGCoWAa2FOPBvwIY5jY2kqmRtd-V16bPyU,24507
6
+ maa/custom_action.py,sha256=honGd28UaKWzApYBHO9_Cka8hPfzZUy6HBUfIdfQiaU,2554
7
+ maa/custom_recognition.py,sha256=nfNgPKq9a6t2eoXwKMJRvZMXTh31Jn0JfxUMsfGI33Y,3384
8
+ maa/define.py,sha256=EHTbELEAf4vXuCLyNM6Xhp9MM6iigSA6b9QE3m-B3DE,13643
9
+ maa/job.py,sha256=MUI5T2X9ON9c7Dl6yo_0pp8Ulpn25XOD_uEdGm2k-TA,1231
10
+ maa/library.py,sha256=u6gbEHDV3I0y69-ZoBo1p6-bAtP4jqSQa4FICuzaw3U,3961
11
+ maa/notification_handler.py,sha256=LFJY6YqF9fJSkRsvpmj6ZL5DexMN_cEOj-HmpWpB9o0,5442
12
+ maa/resource.py,sha256=sCGAK1FFjZCaf01t_FPdtl4pMDQsybhEjmafp9XfITA,12222
13
+ maa/tasker.py,sha256=8eGK83RhsVXh1Px2_eHhUBd6epaubIGDN0FG4soi4xM,14232
14
+ maa/toolkit.py,sha256=H7P58dPLKzEm_aZMsDJ98IaMZnTE-hcFgK8MKnN0F6g,11381
15
+ maa/agent/__init__.py,sha256=K4vyyD6YgLR6PEQl86t4oKP4eViCdNr3Br94dNk8YjM,257
16
+ maa/agent/agent_server.py,sha256=e0yE_ffWJlTPydJbYLK9OhCM5fVVlZQIcvEQMjB5V68,3636
17
+ maa/bin/DirectML.dll,sha256=nJ5tgiVhxsQbkOaZSz6IV88dZtv7HgxMeZx8ibTpLaE,18527776
18
+ maa/bin/MaaAdbControlUnit.dll,sha256=qnkj_NbYKSz755MROrKY2rcS5KnnEJJwtMm480rDAB8,1317376
19
+ maa/bin/MaaAgentClient.dll,sha256=3ZI2pNebPmrTIayIjOaxdNnwO1MSqkgq2ZhUIKQ3a3I,1981440
20
+ maa/bin/MaaAgentServer.dll,sha256=lNBNzpRqnS-u5e8LNRf8_lh2tRXOVAbhuWLSPK3QvI4,2095104
21
+ maa/bin/MaaCustomControlUnit.dll,sha256=Dek4HvcWguPH7yAfIsrpkG3ZQNRSpqRS5bTu3fa20a8,595456
22
+ maa/bin/MaaDbgControlUnit.dll,sha256=h34rQv-5qk5wGifiO9CormjVt29UOJ-OHVibZb0f36Q,787968
23
+ maa/bin/MaaFramework.dll,sha256=VrcVMVB8YtG6UaAERQAw6z0eWjeWGU7cL3yIFMyfWlo,2789888
24
+ maa/bin/MaaToolkit.dll,sha256=S7h_nnlEHCK3zNgqKCBpO2Rhv8efBCIeGyyhDUHwhDw,1354752
25
+ maa/bin/MaaUtils.dll,sha256=QiATx7zwMDcCr759Qi8O1zbKl7Edyjul2Fl8rlnkarA,1026048
26
+ maa/bin/MaaWin32ControlUnit.dll,sha256=2tpym7OGS_vrHbaEAbGi3kwJtnCcAuXM2vWLlHWZ33w,1561600
27
+ maa/bin/fastdeploy_ppocr_maa.dll,sha256=kq2tNiohAx7xlgPdKYjuXFacb4WEYQVHzWqxXpyH3wI,1139200
28
+ maa/bin/onnxruntime_maa.dll,sha256=2laRexkpFxi18dtUqEtiSVe1q79UwryAHjqMC51ua7Y,19151360
29
+ maa/bin/opencv_world4_maa.dll,sha256=Wskq1mdxMSXvTctZzZq0kXsYx2uJk8pOcLZP7Xiy0TY,13984768
30
+ maafw-4.5.0a1.dist-info/licenses/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
31
+ maafw-4.5.0a1.dist-info/METADATA,sha256=IAJQrN6P0uJj65fziS12PL-dxdr48GUnlZgAB6Zsya4,24437
32
+ maafw-4.5.0a1.dist-info/WHEEL,sha256=k6hccRrl6UmjGsv-l-15TwZnTH21KqjgBTXuBtbSCtM,93
33
+ maafw-4.5.0a1.dist-info/RECORD,,
@@ -1,32 +0,0 @@
1
- maa/__init__.py,sha256=t2Z9yJWrSZfH16xYN67bKpiPEHDf7iaiw4wi0PjmU8U,250
2
- maa/agent_client.py,sha256=qx1-3VGp97JB_UMlbkvK-O_GTigbdqD6U4gGKi2yQW4,4049
3
- maa/buffer.py,sha256=XFr1MnWt-xmZkhQ_2ZzGfiqSJJwmphY4U07EEzMNYQc,16544
4
- maa/context.py,sha256=dYCvRNqq2iCL8lIyp2TkZorGB5KNI34L3pGzlpdL7co,6454
5
- maa/controller.py,sha256=V9ALn24vQX-mWngZbuapBcv-_HNHCtUwHXa3Em2X13s,22517
6
- maa/custom_action.py,sha256=V-kJ-5ahcImnzrZBbAH_RJqoiQ7RjBT39ffdSOi9_c4,2495
7
- maa/custom_recognition.py,sha256=P8Kfh4PWoQXyw7loE-9zv_VCD2HUcE6qkIXCK_Ye9a4,3372
8
- maa/define.py,sha256=qec4GQkYi6AtorJ1ix880Fz67bpZULJOV3VpZEDd2Es,13341
9
- maa/job.py,sha256=MUI5T2X9ON9c7Dl6yo_0pp8Ulpn25XOD_uEdGm2k-TA,1231
10
- maa/library.py,sha256=u6gbEHDV3I0y69-ZoBo1p6-bAtP4jqSQa4FICuzaw3U,3961
11
- maa/notification_handler.py,sha256=LFJY6YqF9fJSkRsvpmj6ZL5DexMN_cEOj-HmpWpB9o0,5442
12
- maa/resource.py,sha256=sCGAK1FFjZCaf01t_FPdtl4pMDQsybhEjmafp9XfITA,12222
13
- maa/tasker.py,sha256=cAkYW8Mu5rAgsPlSGacTjJ830sF2yFtvlmXRvIJt-A4,14811
14
- maa/toolkit.py,sha256=H7P58dPLKzEm_aZMsDJ98IaMZnTE-hcFgK8MKnN0F6g,11381
15
- maa/agent/__init__.py,sha256=K4vyyD6YgLR6PEQl86t4oKP4eViCdNr3Br94dNk8YjM,257
16
- maa/agent/agent_server.py,sha256=e0yE_ffWJlTPydJbYLK9OhCM5fVVlZQIcvEQMjB5V68,3636
17
- maa/bin/DirectML.dll,sha256=nJ5tgiVhxsQbkOaZSz6IV88dZtv7HgxMeZx8ibTpLaE,18527776
18
- maa/bin/MaaAdbControlUnit.dll,sha256=3OQSzunkRUl_ezkr_AmsCTF2YUprtJ__z-0ebXEZJVc,1344000
19
- maa/bin/MaaAgentClient.dll,sha256=EaKhYNryW8YyBcoDTiuDtv2P1ug0a8LpRcFdA0Crnpg,1996288
20
- maa/bin/MaaAgentServer.dll,sha256=GvX8hTsSYx4-gayUpUwg1TSS3hGzwDbRb5ctx6ACd10,2231296
21
- maa/bin/MaaDbgControlUnit.dll,sha256=ez4pqQB4h7VJxeQU9ck2AUI5KaxP4UrHWgiU5uC5lTk,786944
22
- maa/bin/MaaFramework.dll,sha256=bnNCWVkEwtegq38xQaPRSRigLcjLHZMdbfp-YIhohFA,2855424
23
- maa/bin/MaaToolkit.dll,sha256=HtwzIRaZdlheWXLt2PCM_aHXiO4CdxAItCAw2F0TBM8,1333248
24
- maa/bin/MaaUtils.dll,sha256=F6nT-RzAysueKExGZVHtKuD-1o1-ypOBb5GYJn_uCCg,1025536
25
- maa/bin/MaaWin32ControlUnit.dll,sha256=T1XYyCdUUIbC9QbSAB10wA0QatC2vki0ROC0lgYXmiI,1568768
26
- maa/bin/fastdeploy_ppocr_maa.dll,sha256=HowKaHyB31cTK8ZoPAgxlPQOEKUM_jEJoCvyku5hj6k,1168384
27
- maa/bin/onnxruntime_maa.dll,sha256=rlFVEdC1cB6Yc4EbYuvoyGOr9o941NbLaOzwkaghAVo,19161600
28
- maa/bin/opencv_world4_maa.dll,sha256=-RoYA6M1PHqnM0Yc-SpKY07rk1mx7PNH6CuxkutS9yw,18250752
29
- maafw-4.4.0b2.dist-info/licenses/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
30
- maafw-4.4.0b2.dist-info/METADATA,sha256=HW5JiXBi4dY3E-cK3_8a8F-U5nYoHiKG5XG0uittEqU,24356
31
- maafw-4.4.0b2.dist-info/WHEEL,sha256=k6hccRrl6UmjGsv-l-15TwZnTH21KqjgBTXuBtbSCtM,93
32
- maafw-4.4.0b2.dist-info/RECORD,,