MaaFw 4.0.0b1__py3-none-macosx_13_0_arm64.whl → 4.0.0b3__py3-none-macosx_13_0_arm64.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/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/library.py +0 -4
- {maafw-4.0.0b1.dist-info → maafw-4.0.0b3.dist-info}/METADATA +7 -1
- {maafw-4.0.0b1.dist-info → maafw-4.0.0b3.dist-info}/RECORD +13 -13
- {maafw-4.0.0b1.dist-info → maafw-4.0.0b3.dist-info}/LICENSE.md +0 -0
- {maafw-4.0.0b1.dist-info → maafw-4.0.0b3.dist-info}/WHEEL +0 -0
- {maafw-4.0.0b1.dist-info → maafw-4.0.0b3.dist-info}/top_level.txt +0 -0
|
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/library.py
CHANGED
|
@@ -72,7 +72,6 @@ class Library:
|
|
|
72
72
|
def framework() -> ctypes.CDLL:
|
|
73
73
|
if not Library.is_agent_server():
|
|
74
74
|
if not Library._framework:
|
|
75
|
-
print(f"Opening framework library: {Library.framework_libpath}")
|
|
76
75
|
Library._framework = Library._lib_type(str(Library.framework_libpath))
|
|
77
76
|
|
|
78
77
|
return Library._framework
|
|
@@ -82,7 +81,6 @@ class Library:
|
|
|
82
81
|
@staticmethod
|
|
83
82
|
def toolkit() -> ctypes.CDLL:
|
|
84
83
|
if not Library._toolkit:
|
|
85
|
-
print(f"Opening toolkit library: {Library.toolkit_libpath}")
|
|
86
84
|
Library._toolkit = Library._lib_type(str(Library.toolkit_libpath))
|
|
87
85
|
|
|
88
86
|
return Library._toolkit
|
|
@@ -93,7 +91,6 @@ class Library:
|
|
|
93
91
|
raise ValueError("Agent server is not available in the current context.")
|
|
94
92
|
|
|
95
93
|
if not Library._agent_client:
|
|
96
|
-
print(f"Opening agent client library: {Library.agent_client_libpath}")
|
|
97
94
|
Library._agent_client = Library._lib_type(
|
|
98
95
|
str(Library.agent_client_libpath)
|
|
99
96
|
)
|
|
@@ -106,7 +103,6 @@ class Library:
|
|
|
106
103
|
raise ValueError("Agent client is not available in the current context.")
|
|
107
104
|
|
|
108
105
|
if not Library._agent_server:
|
|
109
|
-
print(f"Opening agent server library: {Library.agent_server_libpath}")
|
|
110
106
|
Library._agent_server = Library._lib_type(
|
|
111
107
|
str(Library.agent_server_libpath)
|
|
112
108
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: MaaFw
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.0b3
|
|
4
4
|
Summary: An automation black-box testing framework based on image recognition
|
|
5
5
|
Author: MaaXYZ
|
|
6
6
|
Project-URL: Homepage, https://github.com/MaaXYZ/MaaFramework
|
|
@@ -165,6 +165,10 @@ _请留意,仅当您准备开发 MaaFramework 本身时,才需要阅读本
|
|
|
165
165
|
ONNX Runtime: cross-platform, high performance ML inferencing and training accelerator
|
|
166
166
|
- [boost](https://www.boost.org/)
|
|
167
167
|
Boost provides free peer-reviewed portable C++ source libraries.
|
|
168
|
+
- [libzmq](https://github.com/zeromq/libzmq)
|
|
169
|
+
ZeroMQ core engine in C++, implements ZMTP/3.1
|
|
170
|
+
- [cppzmq](https://github.com/zeromq/cppzmq)
|
|
171
|
+
Header-only C++ binding for libzmq
|
|
168
172
|
- [meojson](https://github.com/MistEO/meojson)
|
|
169
173
|
✨ Next-gen C++ JSON/JSON5 Serialization Engine | Zero Dependency | Header-Only | Unleash JSON Potential
|
|
170
174
|
- [minitouch](https://github.com/DeviceFarmer/minitouch)
|
|
@@ -177,6 +181,8 @@ _请留意,仅当您准备开发 MaaFramework 本身时,才需要阅读本
|
|
|
177
181
|
A massively spiffy yet delicately unobtrusive compression library.
|
|
178
182
|
- [gzip-hpp](https://github.com/mapbox/gzip-hpp)
|
|
179
183
|
Gzip header-only C++ library
|
|
184
|
+
- [cpp-base64](https://github.com/ReneNyffenegger/cpp-base64)
|
|
185
|
+
base64 encoding and decoding with c++
|
|
180
186
|
- ~~[protobuf](https://github.com/protocolbuffers/protobuf)~~
|
|
181
187
|
~~Protocol Buffers - Google's data interchange format~~
|
|
182
188
|
- ~~[grpc](https://github.com/grpc/grpc)~~
|
|
@@ -7,28 +7,28 @@ maa/custom_action.py,sha256=V-kJ-5ahcImnzrZBbAH_RJqoiQ7RjBT39ffdSOi9_c4,2495
|
|
|
7
7
|
maa/custom_recognition.py,sha256=o2k2tM-NstcDpivXPdoritI3laUN1NQl3Yq1M6RkNcE,3055
|
|
8
8
|
maa/define.py,sha256=qec4GQkYi6AtorJ1ix880Fz67bpZULJOV3VpZEDd2Es,13341
|
|
9
9
|
maa/job.py,sha256=MUI5T2X9ON9c7Dl6yo_0pp8Ulpn25XOD_uEdGm2k-TA,1231
|
|
10
|
-
maa/library.py,sha256=
|
|
10
|
+
maa/library.py,sha256=9af7ncHUk33N5JcacaAk87JLKkP3atu-J8wf-CvfYhw,3891
|
|
11
11
|
maa/notification_handler.py,sha256=563C8mcdmx3f3Q5cqs_lY219CMD_QX1euajc6-ec8sg,5260
|
|
12
12
|
maa/resource.py,sha256=RgHP-SAxwQRGvDOcC0oTYfEE8bOxs-llscgtBKNHRhk,9909
|
|
13
13
|
maa/tasker.py,sha256=Hgi1Pbq20rKnTM3fU5yZP_QjetYNOpov7YulatPWAPI,14551
|
|
14
14
|
maa/toolkit.py,sha256=H7P58dPLKzEm_aZMsDJ98IaMZnTE-hcFgK8MKnN0F6g,11381
|
|
15
15
|
maa/agent/__init__.py,sha256=K4vyyD6YgLR6PEQl86t4oKP4eViCdNr3Br94dNk8YjM,257
|
|
16
16
|
maa/agent/agent_server.py,sha256=e0yE_ffWJlTPydJbYLK9OhCM5fVVlZQIcvEQMjB5V68,3636
|
|
17
|
-
maa/bin/libMaaAdbControlUnit.dylib,sha256=
|
|
18
|
-
maa/bin/libMaaAgentClient.dylib,sha256=
|
|
19
|
-
maa/bin/libMaaAgentServer.dylib,sha256=
|
|
20
|
-
maa/bin/libMaaDbgControlUnit.dylib,sha256=
|
|
21
|
-
maa/bin/libMaaFramework.dylib,sha256=
|
|
22
|
-
maa/bin/libMaaToolkit.dylib,sha256=
|
|
23
|
-
maa/bin/libMaaUtils.dylib,sha256=
|
|
17
|
+
maa/bin/libMaaAdbControlUnit.dylib,sha256=3ERf2BhfpgcChjs7wsBrhOy9Ril99mtZ2Q6tHk0lv-8,793104
|
|
18
|
+
maa/bin/libMaaAgentClient.dylib,sha256=Fr8sBS3RrKnizjRdS3pSKH2SPu7fW6LgjE3NklCJoKg,1531984
|
|
19
|
+
maa/bin/libMaaAgentServer.dylib,sha256=mqECSWxjMQRr7ERyATDUPa1fDehUSjoIVJgftpPUpJ0,1703184
|
|
20
|
+
maa/bin/libMaaDbgControlUnit.dylib,sha256=6yREE_IrT3FpeUxJlwalQrAyszxUISakLJUBbvBMXlc,407120
|
|
21
|
+
maa/bin/libMaaFramework.dylib,sha256=Cn6lapJ7YMqFWaEgKEduYxwglH86yeTxbQRGsQan_jI,2455040
|
|
22
|
+
maa/bin/libMaaToolkit.dylib,sha256=rnQ-7dk9OipD7WT0YBXZzA_D28wmxA7eTEXLyUElBRw,1009920
|
|
23
|
+
maa/bin/libMaaUtils.dylib,sha256=j3secTZvGLexgdxPYA0D7bt_QoAENP_W8j0Aj8wgeAE,631840
|
|
24
24
|
maa/bin/libc++.1.dylib,sha256=cyY4wPgMD2MkioBpc2XSCU-AYxQa-Xk4TvOk-AJzZUU,1080592
|
|
25
25
|
maa/bin/libc++abi.1.dylib,sha256=Lqh_nO6F15VC4nT-T5VMlHUaFJsVVAeGcqW50qvprTQ,349840
|
|
26
26
|
maa/bin/libfastdeploy_ppocr.dylib,sha256=Y7j-9roLd1CrfESEYbsO48MLRVOHiQZ0RHtkmwuTWeQ,4606768
|
|
27
27
|
maa/bin/libonnxruntime.1.19.2.dylib,sha256=BGXAmUNxe9WOxZNUl-GHge3begS9EVYS3L5wnOyUMkc,17359936
|
|
28
28
|
maa/bin/libopencv_world4.4.8.0.dylib,sha256=SxL2FZyQCyFqwE3cubrGcdBN9M3uZQFD9DQ4x0Tr5HU,13211472
|
|
29
29
|
maa/bin/libunwind.1.dylib,sha256=Ju3FhPnBSB4OZXiytGNDcO7DW5Gr4qEAneB12HcjXDQ,110528
|
|
30
|
-
maafw-4.0.
|
|
31
|
-
maafw-4.0.
|
|
32
|
-
maafw-4.0.
|
|
33
|
-
maafw-4.0.
|
|
34
|
-
maafw-4.0.
|
|
30
|
+
maafw-4.0.0b3.dist-info/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
|
|
31
|
+
maafw-4.0.0b3.dist-info/METADATA,sha256=P1FdnCMavZSHO1Rby_gpp8sUhVdczFErasR-V06HCMw,13361
|
|
32
|
+
maafw-4.0.0b3.dist-info/WHEEL,sha256=9GPl-88LCvFlylN1O--mgfQaioN9qUxC5Ge3E8TfMsc,103
|
|
33
|
+
maafw-4.0.0b3.dist-info/top_level.txt,sha256=G8r2L__aYaMq4S3R70G6NsfEROiVp08kUcWvATzk2J8,4
|
|
34
|
+
maafw-4.0.0b3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|