MaaFw 4.0.0b1__py3-none-manylinux2014_aarch64.whl → 4.0.0b3__py3-none-manylinux2014_aarch64.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.

Binary file
Binary file
Binary file
Binary file
Binary file
maa/bin/libMaaToolkit.so CHANGED
Binary file
maa/bin/libMaaUtils.so 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.0b1
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,25 +7,25 @@ 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=i-YpxpmU-G_AwKdnRMnSSSRXiKDSwbwYdn9IQf1OLJc,4211
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.so,sha256=Qkeq-powIxBb2-97OVOFS_dPTE3M13am5PbWeC9XPS4,35721720
18
- maa/bin/libMaaAgentClient.so,sha256=uQYuGKK3SBjCeLby8iNyu6rtfSM1ME_s40I3LaeHv94,9663272
19
- maa/bin/libMaaAgentServer.so,sha256=1xWELJko9u3C9H7Z7r6FgziN44vAVDNFjVp24fhOswA,23972400
20
- maa/bin/libMaaDbgControlUnit.so,sha256=UxirHvIswsGN871aDYBIFZObr24KqVtl6neOlEkl6rw,9397592
21
- maa/bin/libMaaFramework.so,sha256=QZHDX8HzyKNxcK-22dty5dOer0AA6ZXbfiYfy4x_0GY,85377040
22
- maa/bin/libMaaToolkit.so,sha256=SMaEoJ3sMfLGbhRnvsuftE0irnSU_FsOGbsXCPrqWj0,25574072
23
- maa/bin/libMaaUtils.so,sha256=dwdclR1EP0hCJzUQwAR0GBRFo-GxnZ0XAAQDDZTVQ_k,12461408
17
+ maa/bin/libMaaAdbControlUnit.so,sha256=uX_j_l5sAaSHOIVHevYdr9_mUcO6yvR2TdEEEP8TC9w,35721720
18
+ maa/bin/libMaaAgentClient.so,sha256=ak6gGGV0h0TTdoMO_EPRPeAwrYVAEP2faBHW0mZD8QU,9804752
19
+ maa/bin/libMaaAgentServer.so,sha256=iex82tscFfvZpDhkZAoCnRBwF2YtKSdPoZUAhKprDWU,24042536
20
+ maa/bin/libMaaDbgControlUnit.so,sha256=LshNHzvUxjd5YwOxehcN3eN2LyJ04wh92YeVjHNiaVI,9397592
21
+ maa/bin/libMaaFramework.so,sha256=gYwbEObqlM9GR5TykRxK6tDXNOPVmV8sYFlQ5kMSfKA,85376064
22
+ maa/bin/libMaaToolkit.so,sha256=8VF39UUueUJPc-ihh7pbzbYynCIrbmfBLL1LyU7Uc9M,25574072
23
+ maa/bin/libMaaUtils.so,sha256=JzhScqwuGx-W1JvdVzfm3pC50KtIcbJI-T0ihZBthKc,12461408
24
24
  maa/bin/libfastdeploy_ppocr.so,sha256=OPB9oG0O7ZGNZUuY9U0nPsWcWnIN9xu1s0PRvXkmUEY,5815536
25
25
  maa/bin/libonnxruntime.so.1,sha256=LiAUFtvZ6eh6yGCoDoqSdN1fWR6LCyscxjQbOpdo14w,19769616
26
26
  maa/bin/libopencv_world4.so.408,sha256=fb-nh6oI32qImBiK1hRu7gSoe1u7r2aRbXxyCIgxPaA,16272176
27
- maafw-4.0.0b1.dist-info/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
28
- maafw-4.0.0b1.dist-info/METADATA,sha256=w_U7TCgPO_yjH9L0Ea_TWZTjrtH5dEyiV-zI4M5D-1o,13077
29
- maafw-4.0.0b1.dist-info/WHEEL,sha256=yDhKHiFeayM-TFm6HVJdezo80NXfmq_ti8Xl5in-W8c,107
30
- maafw-4.0.0b1.dist-info/top_level.txt,sha256=G8r2L__aYaMq4S3R70G6NsfEROiVp08kUcWvATzk2J8,4
31
- maafw-4.0.0b1.dist-info/RECORD,,
27
+ maafw-4.0.0b3.dist-info/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
28
+ maafw-4.0.0b3.dist-info/METADATA,sha256=P1FdnCMavZSHO1Rby_gpp8sUhVdczFErasR-V06HCMw,13361
29
+ maafw-4.0.0b3.dist-info/WHEEL,sha256=yDhKHiFeayM-TFm6HVJdezo80NXfmq_ti8Xl5in-W8c,107
30
+ maafw-4.0.0b3.dist-info/top_level.txt,sha256=G8r2L__aYaMq4S3R70G6NsfEROiVp08kUcWvATzk2J8,4
31
+ maafw-4.0.0b3.dist-info/RECORD,,