MaaFw 4.3.2__py3-none-macosx_13_0_x86_64.whl → 4.4.0a3__py3-none-macosx_13_0_x86_64.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 MaaFw might be problematic. Click here for more details.
- maa/agent_client.py +18 -0
- maa/bin/libMaaAdbControlUnit.dylib +0 -0
- maa/bin/libMaaAgentClient.dylib +0 -0
- maa/bin/libMaaAgentServer.dylib +0 -0
- maa/bin/libMaaDbgControlUnit.dylib +0 -0
- maa/bin/libMaaFramework.dylib +0 -0
- maa/bin/libMaaToolkit.dylib +0 -0
- maa/bin/libMaaUtils.dylib +0 -0
- maa/context.py +24 -1
- maa/library.py +10 -13
- maa/resource.py +23 -0
- {maafw-4.3.2.dist-info → maafw-4.4.0a3.dist-info}/METADATA +22 -18
- maafw-4.4.0a3.dist-info/RECORD +30 -0
- maafw-4.3.2.dist-info/RECORD +0 -30
- {maafw-4.3.2.dist-info → maafw-4.4.0a3.dist-info}/WHEEL +0 -0
- {maafw-4.3.2.dist-info → maafw-4.4.0a3.dist-info}/licenses/LICENSE.md +0 -0
maa/agent_client.py
CHANGED
|
@@ -57,6 +57,13 @@ class AgentClient:
|
|
|
57
57
|
def connected(self) -> bool:
|
|
58
58
|
return bool(Library.agent_client().MaaAgentClientConnected(self._handle))
|
|
59
59
|
|
|
60
|
+
@property
|
|
61
|
+
def alive(self) -> bool:
|
|
62
|
+
return bool(Library.agent_client().MaaAgentClientAlive(self._handle))
|
|
63
|
+
|
|
64
|
+
def set_timeout(self, milliseconds: int) -> bool:
|
|
65
|
+
return bool(Library.agent_client().MaaAgentClientSetTimeout(self._handle, ctypes.c_int64(milliseconds)))
|
|
66
|
+
|
|
60
67
|
_api_properties_initialized: bool = False
|
|
61
68
|
|
|
62
69
|
@staticmethod
|
|
@@ -103,3 +110,14 @@ class AgentClient:
|
|
|
103
110
|
Library.agent_client().MaaAgentClientConnected.argtypes = [
|
|
104
111
|
MaaAgentClientHandle,
|
|
105
112
|
]
|
|
113
|
+
|
|
114
|
+
Library.agent_client().MaaAgentClientAlive.restype = MaaBool
|
|
115
|
+
Library.agent_client().MaaAgentClientAlive.argtypes = [
|
|
116
|
+
MaaAgentClientHandle,
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
Library.agent_client().MaaAgentClientSetTimeout.restype = MaaBool
|
|
120
|
+
Library.agent_client().MaaAgentClientSetTimeout.argtypes = [
|
|
121
|
+
MaaAgentClientHandle,
|
|
122
|
+
ctypes.c_int64,
|
|
123
|
+
]
|
|
Binary file
|
maa/bin/libMaaAgentClient.dylib
CHANGED
|
Binary file
|
maa/bin/libMaaAgentServer.dylib
CHANGED
|
Binary file
|
|
Binary file
|
maa/bin/libMaaFramework.dylib
CHANGED
|
Binary file
|
maa/bin/libMaaToolkit.dylib
CHANGED
|
Binary file
|
maa/bin/libMaaUtils.dylib
CHANGED
|
Binary file
|
maa/context.py
CHANGED
|
@@ -4,7 +4,7 @@ from typing import Dict, Optional, Tuple
|
|
|
4
4
|
|
|
5
5
|
import numpy
|
|
6
6
|
|
|
7
|
-
from .buffer import ImageBuffer, RectBuffer, StringListBuffer
|
|
7
|
+
from .buffer import ImageBuffer, RectBuffer, StringBuffer, StringListBuffer
|
|
8
8
|
from .define import *
|
|
9
9
|
from .library import Library
|
|
10
10
|
from .tasker import Tasker
|
|
@@ -101,6 +101,22 @@ class Context:
|
|
|
101
101
|
)
|
|
102
102
|
)
|
|
103
103
|
|
|
104
|
+
def get_node_data(self, name: str) -> Optional[dict]:
|
|
105
|
+
string_buffer = StringBuffer()
|
|
106
|
+
if not Library.framework().MaaContextGetNodeData(
|
|
107
|
+
self._handle, name.encode(), string_buffer._handle
|
|
108
|
+
):
|
|
109
|
+
return None
|
|
110
|
+
|
|
111
|
+
data = string_buffer.get()
|
|
112
|
+
if not data:
|
|
113
|
+
return None
|
|
114
|
+
|
|
115
|
+
try:
|
|
116
|
+
return json.loads(data)
|
|
117
|
+
except json.JSONDecodeError:
|
|
118
|
+
return None
|
|
119
|
+
|
|
104
120
|
@property
|
|
105
121
|
def tasker(self) -> Tasker:
|
|
106
122
|
return self._tasker
|
|
@@ -175,6 +191,13 @@ class Context:
|
|
|
175
191
|
|
|
176
192
|
Library.framework().MaaContextOverrideNext.restype = MaaBool
|
|
177
193
|
Library.framework().MaaContextOverrideNext.argtypes = [
|
|
194
|
+
MaaContextHandle,
|
|
195
|
+
ctypes.c_char_p,
|
|
196
|
+
MaaStringListBufferHandle,
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
Library.framework().MaaContextGetNodeData.restype = MaaBool
|
|
200
|
+
Library.framework().MaaContextGetNodeData.argtypes = [
|
|
178
201
|
MaaContextHandle,
|
|
179
202
|
ctypes.c_char_p,
|
|
180
203
|
MaaStringBufferHandle,
|
maa/library.py
CHANGED
|
@@ -2,6 +2,7 @@ import ctypes
|
|
|
2
2
|
import ctypes.util
|
|
3
3
|
import pathlib
|
|
4
4
|
import platform
|
|
5
|
+
from typing import Optional
|
|
5
6
|
|
|
6
7
|
from .define import *
|
|
7
8
|
|
|
@@ -9,10 +10,10 @@ from .define import *
|
|
|
9
10
|
class Library:
|
|
10
11
|
_is_agent_server: bool = False
|
|
11
12
|
|
|
12
|
-
_framework: ctypes.CDLL = None
|
|
13
|
-
_toolkit: ctypes.CDLL = None
|
|
14
|
-
_agent_client: ctypes.CDLL = None
|
|
15
|
-
_agent_server: ctypes.CDLL = None
|
|
13
|
+
_framework: Optional[ctypes.CDLL] = None
|
|
14
|
+
_toolkit: Optional[ctypes.CDLL] = None
|
|
15
|
+
_agent_client: Optional[ctypes.CDLL] = None
|
|
16
|
+
_agent_server: Optional[ctypes.CDLL] = None
|
|
16
17
|
_lib_type = None
|
|
17
18
|
|
|
18
19
|
@staticmethod
|
|
@@ -55,7 +56,7 @@ class Library:
|
|
|
55
56
|
|
|
56
57
|
platform_type = platform.system().lower()
|
|
57
58
|
|
|
58
|
-
if platform_type ==
|
|
59
|
+
if platform_type == WINDOWS:
|
|
59
60
|
Library._lib_type = ctypes.WinDLL
|
|
60
61
|
else:
|
|
61
62
|
Library._lib_type = ctypes.CDLL
|
|
@@ -72,7 +73,7 @@ class Library:
|
|
|
72
73
|
def framework() -> ctypes.CDLL:
|
|
73
74
|
if not Library.is_agent_server():
|
|
74
75
|
if not Library._framework:
|
|
75
|
-
Library._framework = Library._lib_type(str(Library.framework_libpath))
|
|
76
|
+
Library._framework = Library._lib_type(str(Library.framework_libpath)) # type: ignore
|
|
76
77
|
|
|
77
78
|
return Library._framework
|
|
78
79
|
else:
|
|
@@ -81,7 +82,7 @@ class Library:
|
|
|
81
82
|
@staticmethod
|
|
82
83
|
def toolkit() -> ctypes.CDLL:
|
|
83
84
|
if not Library._toolkit:
|
|
84
|
-
Library._toolkit = Library._lib_type(str(Library.toolkit_libpath))
|
|
85
|
+
Library._toolkit = Library._lib_type(str(Library.toolkit_libpath)) # type: ignore
|
|
85
86
|
|
|
86
87
|
return Library._toolkit
|
|
87
88
|
|
|
@@ -91,9 +92,7 @@ class Library:
|
|
|
91
92
|
raise ValueError("Agent server is not available in the current context.")
|
|
92
93
|
|
|
93
94
|
if not Library._agent_client:
|
|
94
|
-
Library._agent_client = Library._lib_type(
|
|
95
|
-
str(Library.agent_client_libpath)
|
|
96
|
-
)
|
|
95
|
+
Library._agent_client = Library._lib_type(str(Library.agent_client_libpath)) # type: ignore
|
|
97
96
|
|
|
98
97
|
return Library._agent_client
|
|
99
98
|
|
|
@@ -103,9 +102,7 @@ class Library:
|
|
|
103
102
|
raise ValueError("Agent client is not available in the current context.")
|
|
104
103
|
|
|
105
104
|
if not Library._agent_server:
|
|
106
|
-
Library._agent_server = Library._lib_type(
|
|
107
|
-
str(Library.agent_server_libpath)
|
|
108
|
-
)
|
|
105
|
+
Library._agent_server = Library._lib_type(str(Library.agent_server_libpath)) # type: ignore
|
|
109
106
|
|
|
110
107
|
return Library._agent_server
|
|
111
108
|
|
maa/resource.py
CHANGED
|
@@ -67,6 +67,22 @@ class Resource:
|
|
|
67
67
|
self._handle, name.encode(), list_buffer._handle
|
|
68
68
|
)
|
|
69
69
|
)
|
|
70
|
+
|
|
71
|
+
def get_node_data(self, name: str) -> Optional[dict]:
|
|
72
|
+
string_buffer = StringBuffer()
|
|
73
|
+
if not Library.framework().MaaResourceGetNodeData(
|
|
74
|
+
self._handle, name.encode(), string_buffer._handle
|
|
75
|
+
):
|
|
76
|
+
return None
|
|
77
|
+
|
|
78
|
+
data = string_buffer.get()
|
|
79
|
+
if not data:
|
|
80
|
+
return None
|
|
81
|
+
|
|
82
|
+
try:
|
|
83
|
+
return json.loads(data)
|
|
84
|
+
except json.JSONDecodeError:
|
|
85
|
+
return None
|
|
70
86
|
|
|
71
87
|
@property
|
|
72
88
|
def loaded(self) -> bool:
|
|
@@ -293,6 +309,13 @@ class Resource:
|
|
|
293
309
|
Library.framework().MaaResourceOverrideNext.argtypes = [
|
|
294
310
|
MaaResourceHandle,
|
|
295
311
|
ctypes.c_char_p,
|
|
312
|
+
MaaStringListBufferHandle,
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
Library.framework().MaaResourceGetNodeData.restype = MaaBool
|
|
316
|
+
Library.framework().MaaResourceGetNodeData.argtypes = [
|
|
317
|
+
MaaContextHandle,
|
|
318
|
+
ctypes.c_char_p,
|
|
296
319
|
MaaStringBufferHandle,
|
|
297
320
|
]
|
|
298
321
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: MaaFw
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.4.0a3
|
|
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
|
|
@@ -38,7 +38,7 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
|
|
|
38
38
|
<a href="https://pypi.org/project/MaaFw/" target="_blank"><img alt="pypi" src="https://img.shields.io/badge/PyPI-3775A9?logo=pypi&logoColor=white"></a>
|
|
39
39
|
<a href="https://www.nuget.org/packages/Maa.Framework.Runtimes" target="_blank"><img alt="nuget" src="https://img.shields.io/badge/NuGet-004880?logo=nuget"></a>
|
|
40
40
|
<a href="https://www.npmjs.com/package/@maaxyz/maa-node" target="_blank"><img alt="npm" src="https://img.shields.io/badge/npm-CB3837?logo=npm"></a>
|
|
41
|
-
<a href="https://mirrorchyan.com/zh/projects" target="_blank"><img alt="mirrorc" src="https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5"></a>
|
|
41
|
+
<a href="https://mirrorchyan.com/zh/projects?source=maafw-badge" target="_blank"><img alt="mirrorc" src="https://img.shields.io/badge/Mirror%E9%85%B1-%239af3f6?logo=countingworkspro&logoColor=4f46e5"></a>
|
|
42
42
|
</p>
|
|
43
43
|
|
|
44
44
|
<div align="center">
|
|
@@ -63,13 +63,13 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
|
|
|
63
63
|
|
|
64
64
|
### 通用 UI
|
|
65
65
|
|
|
66
|
-
- [MFAWPF](https://github.com/SweetSmellFox/MFAWPF)     [](https://mirrorchyan.com/zh/projects)
|
|
66
|
+
- [MFAWPF](https://github.com/SweetSmellFox/MFAWPF)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
67
67
|
基于 MAA 全新架构的 通用 GUI。由 MaaFramework 强力驱动!
|
|
68
68
|
|
|
69
|
-
- [MFW-PyQt6](https://github.com/overflow65537/MFW-PyQt6)     [](https://mirrorchyan.com/zh/projects)
|
|
69
|
+
- [MFW-PyQt6](https://github.com/overflow65537/MFW-PyQt6)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
70
70
|
基于PyQt6的通用GUI。由 MaaFramework 强力驱动!
|
|
71
71
|
|
|
72
|
-
- [MFAAvalonia](https://github.com/SweetSmellFox/MFAAvalonia)     [](https://mirrorchyan.com/zh/projects)
|
|
72
|
+
- [MFAAvalonia](https://github.com/SweetSmellFox/MFAAvalonia)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
73
73
|
基于 Avalonia 的 通用 GUI。由 MaaFramework 强力驱动!
|
|
74
74
|
|
|
75
75
|
### 开发工具
|
|
@@ -88,34 +88,34 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
|
|
|
88
88
|
|
|
89
89
|
### 应用程序
|
|
90
90
|
|
|
91
|
-
- [M9A](https://github.com/MaaXYZ/M9A)      [](https://mirrorchyan.com/zh/projects) [](https://1999.fan)
|
|
91
|
+
- [M9A](https://github.com/MaaXYZ/M9A)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge) [](https://1999.fan)
|
|
92
92
|
亿韭韭韭 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
93
93
|
|
|
94
94
|
- [MAS](https://github.com/MaaXYZ/MaaAssistantSkland)    
|
|
95
95
|
森空岛 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
96
96
|
|
|
97
|
-
- [MSBA](https://github.com/overflow65537/MAA_SnowBreak)     [](https://mirrorchyan.com/zh/projects)
|
|
97
|
+
- [MSBA](https://github.com/overflow65537/MAA_SnowBreak)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
98
98
|
尘白禁区 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
99
99
|
|
|
100
|
-
- [MaaYYs](https://github.com/TanyaShue/MaaYYs)      [](https://mirrorchyan.com/zh/projects)
|
|
100
|
+
- [MaaYYs](https://github.com/TanyaShue/MaaYYs)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
101
101
|
阴阳师小助手。图像技术 + 模拟控制,当赛博屯屯鼠,自动日常,解放你的双手!由 MaaFramework 强力驱动!
|
|
102
102
|
|
|
103
|
-
- [MRA](https://github.com/Saratoga-Official/MRA)     [](https://mirrorchyan.com/zh/projects)
|
|
103
|
+
- [MRA](https://github.com/Saratoga-Official/MRA)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
104
104
|
战舰少女R 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
105
105
|
|
|
106
|
-
- [MPA](https://github.com/overflow65537/MAA_Punish)      [](https://mirrorchyan.com/zh/projects)
|
|
106
|
+
- [MPA](https://github.com/overflow65537/MAA_Punish)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
107
107
|
战双帕弥什 小助手。图像技术 + 模拟控制,解放双手!由 玛丽的黑咖啡 2.0 强力驱动!
|
|
108
108
|
|
|
109
|
-
- [MaaYuan](https://github.com/syoius/MaaYuan)     [](https://mirrorchyan.com/zh/projects) [](https://maayuan.top)
|
|
109
|
+
- [MaaYuan](https://github.com/syoius/MaaYuan)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge) [](https://maayuan.top)
|
|
110
110
|
代号鸢/如鸢 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
111
111
|
|
|
112
|
-
- [Maa-HBR](https://github.com/KarylDAZE/Maa-HBR)     [](https://mirrorchyan.com/zh/projects)
|
|
112
|
+
- [Maa-HBR](https://github.com/KarylDAZE/Maa-HBR)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
113
113
|
炽焰天穹/HBR 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
114
114
|
|
|
115
|
-
- [MaaGF2Exilium](https://github.com/DarkLingYun/MaaGF2Exilium)     [](https://mirrorchyan.com/zh/projects)
|
|
115
|
+
- [MaaGF2Exilium](https://github.com/DarkLingYun/MaaGF2Exilium)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
116
116
|
少女前线2: 追放自动化助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
117
117
|
|
|
118
|
-
- [MaaAshEchoes](https://github.com/moulai/MaaAshEchoes)     [](https://mirrorchyan.com/zh/projects)
|
|
118
|
+
- [MaaAshEchoes](https://github.com/moulai/MaaAshEchoes)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
119
119
|
白荆回廊 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
120
120
|
|
|
121
121
|
- [MaaXuexi](https://github.com/ravizhan/MaaXuexi)     
|
|
@@ -127,21 +127,25 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
|
|
|
127
127
|
- [MAA_MHXY_MG](https://github.com/gitlihang/Maa_MHXY_MG)    
|
|
128
128
|
梦幻西游手游 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
129
129
|
|
|
130
|
-
- [MNMA](https://github.com/kqcoxn/MaaNewMoonAccompanying)      [](https://mirrorchyan.com/zh/projects)
|
|
130
|
+
- [MNMA](https://github.com/kqcoxn/MaaNewMoonAccompanying)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
131
131
|
新月同行 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
132
132
|
|
|
133
133
|
- [MaaTOT](https://github.com/Coxwtwo/MaaTOT)    
|
|
134
134
|
未定事件簿 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
135
135
|
|
|
136
|
-
- [MaaGumballs](https://github.com/KhazixW2/MaaGumballs)     
|
|
136
|
+
- [MaaGumballs](https://github.com/KhazixW2/MaaGumballs)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
137
137
|
不思议迷宫小助手是一款由图像识别与模拟控制技术驱动的辅助工具。它能够帮助大家解放双手,一键开启敲砖大冒险,由 MaaFramework 强力支持。
|
|
138
138
|
|
|
139
|
-
- [MMleo](https://github.com/fictionalflaw/MMleo)     
|
|
139
|
+
- [MMleo](https://github.com/fictionalflaw/MMleo)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
140
140
|
偶像梦幻祭2小助手。使用图像识别+模拟控制技术,解放双手!助力屯屯鼠的制作人生涯!由 MaaFramework 强力驱动!
|
|
141
141
|
|
|
142
142
|
- [autodori](https://github.com/EvATive7/autodori)     
|
|
143
143
|
BanG Dream邦多利小助手。图像识别+模拟控制,解放双手!由 MaaFramework、弦卷财団、TGW Group 强力驱动!
|
|
144
144
|
|
|
145
|
+
- [SLIMEIM_Maa](https://github.com/miaojiuqing/SLIMEIM_Maa)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge&rid=SLIMEIM_Maa)
|
|
146
|
+
魔王与龙的建国谭小助手。使用图像识别+模拟控制技术,解放双手!由 MaaFramework 强力驱动!
|
|
147
|
+
|
|
148
|
+
|
|
145
149
|
## 生态共建
|
|
146
150
|
|
|
147
151
|
MAA 正计划建设为一类项目,而非舟的单一软件。
|
|
@@ -236,7 +240,7 @@ _请留意,仅当您准备开发 MaaFramework 本身时,才需要阅读本
|
|
|
236
240
|
|
|
237
241
|
感谢以下开发者对 MaaFramework 作出的贡献:
|
|
238
242
|
|
|
239
|
-
[](https://github.com/MaaXYZ/MaaFramework/graphs/contributors)
|
|
240
244
|
|
|
241
245
|
## 讨论
|
|
242
246
|
|
|
@@ -0,0 +1,30 @@
|
|
|
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/libMaaAdbControlUnit.dylib,sha256=xM6cCgUNtcvBTDTzcpOtjarmfbf3hKB5ViiRf4qeenk,771240
|
|
18
|
+
maa/bin/libMaaAgentClient.dylib,sha256=QWeo38b6lW5bqZ66jy0IjAmuQDW68XbHtKo7uKARSK8,1465952
|
|
19
|
+
maa/bin/libMaaAgentServer.dylib,sha256=1pZa1fp6Tw0BM3j-cKpAQH2GO5OE6qSeXbrO-tF9Kn0,1699464
|
|
20
|
+
maa/bin/libMaaDbgControlUnit.dylib,sha256=2t7__VbwVUwSKecbgQ0IQYv-mLMx1cNdzlMaVqa3aIQ,347920
|
|
21
|
+
maa/bin/libMaaFramework.dylib,sha256=LwktpQO5JNN_Ikt1zw_aPRufmuEL5pxwsUmmvlwzOiI,2906272
|
|
22
|
+
maa/bin/libMaaToolkit.dylib,sha256=EHBDVdvggIYmlo-ow_M56Y3sqMjUI4CTkSg1NtvCsug,993032
|
|
23
|
+
maa/bin/libMaaUtils.dylib,sha256=HPliPmzNIZgaGL7CcrNFUF1zkEiTvqyPesiRxxT2Al0,587808
|
|
24
|
+
maa/bin/libfastdeploy_ppocr.dylib,sha256=kFxpYAawihiGofHIiOe8Q1p-PCdRG7q4PsaCnhohIwg,5828240
|
|
25
|
+
maa/bin/libonnxruntime.1.19.2.dylib,sha256=6FX7LDczOFARpdTe8r2otMXgvlMtkaHcfQSzXMgxT4A,19921160
|
|
26
|
+
maa/bin/libopencv_world4.4.8.0.dylib,sha256=OYyb77pNXcqdUQEVTXE6Nz_iWS7jp9Zr3rZOw2DNpy0,16908328
|
|
27
|
+
maafw-4.4.0a3.dist-info/licenses/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
|
|
28
|
+
maafw-4.4.0a3.dist-info/METADATA,sha256=4dS40Y5B1IBIoTvam93LHPeTGPUSOUCKq7btWX8Nz1s,24356
|
|
29
|
+
maafw-4.4.0a3.dist-info/WHEEL,sha256=uH4n7Su0XdKLw9IB_vCifAJxZvl_ChRwTrm1-ddvWvA,102
|
|
30
|
+
maafw-4.4.0a3.dist-info/RECORD,,
|
maafw-4.3.2.dist-info/RECORD
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
maa/__init__.py,sha256=t2Z9yJWrSZfH16xYN67bKpiPEHDf7iaiw4wi0PjmU8U,250
|
|
2
|
-
maa/agent_client.py,sha256=vrL1pyqYyK2CQePbMbCQraZnzx0rPaYWK4G8D9qU__Y,3365
|
|
3
|
-
maa/buffer.py,sha256=XFr1MnWt-xmZkhQ_2ZzGfiqSJJwmphY4U07EEzMNYQc,16544
|
|
4
|
-
maa/context.py,sha256=hOxo7GArAmdBwMGHPqM1I2rtNE5N6WR1QwPOLxZgSvU,5754
|
|
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=9af7ncHUk33N5JcacaAk87JLKkP3atu-J8wf-CvfYhw,3891
|
|
11
|
-
maa/notification_handler.py,sha256=LFJY6YqF9fJSkRsvpmj6ZL5DexMN_cEOj-HmpWpB9o0,5442
|
|
12
|
-
maa/resource.py,sha256=gjcYnhaLzR11jM9nd-QfUeVEsBDgJkubOQ3YiMZN5ic,11529
|
|
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/libMaaAdbControlUnit.dylib,sha256=-UWEvXQI91hb0mtD-gKi6G3Yz4F4szph5DtcDS__G3s,757016
|
|
18
|
-
maa/bin/libMaaAgentClient.dylib,sha256=zKygLyTYxhz2-6hPft9vMMJmf66mvW401ZrI1hJms44,1422952
|
|
19
|
-
maa/bin/libMaaAgentServer.dylib,sha256=8apL3VIjbnLq9-Jo35WPLSppdQtgZiwg1tK9VgSZnYo,1697184
|
|
20
|
-
maa/bin/libMaaDbgControlUnit.dylib,sha256=vPdXqL7QRrW2NcxpJMQySbjaQyUVpexKDzHdhFg3qj4,347416
|
|
21
|
-
maa/bin/libMaaFramework.dylib,sha256=oFCn1a9VNFJOvW-tXm3JLq5VbxLzEkUZfOcWX5DNoyo,2497248
|
|
22
|
-
maa/bin/libMaaToolkit.dylib,sha256=RNKnJX1SUshep85kckHMn9_enzEgTsoPHhqjqId1Nrs,976288
|
|
23
|
-
maa/bin/libMaaUtils.dylib,sha256=QMEm8knCOgM0Y3QQcorBvN4ceShFL8lvLwKxnuWk1jA,541208
|
|
24
|
-
maa/bin/libfastdeploy_ppocr.dylib,sha256=kFxpYAawihiGofHIiOe8Q1p-PCdRG7q4PsaCnhohIwg,5828240
|
|
25
|
-
maa/bin/libonnxruntime.1.19.2.dylib,sha256=6FX7LDczOFARpdTe8r2otMXgvlMtkaHcfQSzXMgxT4A,19921160
|
|
26
|
-
maa/bin/libopencv_world4.4.8.0.dylib,sha256=OYyb77pNXcqdUQEVTXE6Nz_iWS7jp9Zr3rZOw2DNpy0,16908328
|
|
27
|
-
maafw-4.3.2.dist-info/licenses/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
|
|
28
|
-
maafw-4.3.2.dist-info/METADATA,sha256=Tucq7MHUOh4A8Mu0kZEiozEO5v84aKd-96ZK-bIYkKE,22956
|
|
29
|
-
maafw-4.3.2.dist-info/WHEEL,sha256=uH4n7Su0XdKLw9IB_vCifAJxZvl_ChRwTrm1-ddvWvA,102
|
|
30
|
-
maafw-4.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|