kuaijs-ios 0.2.11__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.
kuaijs/node.pyi ADDED
@@ -0,0 +1,91 @@
1
+ from typing import Any, Dict, List, Optional, Literal, Protocol
2
+
3
+ # 创建节点选择器(返回链式 Selector)
4
+ # 参数:visibleFilter/labelFilter/boundsFilter/maxDepth/maxChildCount/excludedAttributes
5
+ class SelectorParams(Protocol):
6
+ visibleFilter: Optional[Literal[1, 2]]
7
+ labelFilter: Optional[Literal[1, 2]]
8
+ boundsFilter: Optional[Literal[1, 2]]
9
+ maxDepth: Optional[int]
10
+ maxChildCount: Optional[int]
11
+ excludedAttributes: Optional[str]
12
+
13
+ class Selector:
14
+ # 释放并移除选择器
15
+ def release(self) -> bool: ...
16
+
17
+ # 清空所有选择条件(链式返回 self)
18
+ def clear_selector(self) -> "Selector": ...
19
+
20
+ # 加载节点数据(timeout 毫秒,默认 5000,链式返回 self)
21
+ def load_node(self, timeout: int = 5000) -> "Selector": ...
22
+
23
+ # 获取 XML 文本(timeout 毫秒)
24
+ def xml(self, timeout: int = 5000) -> Optional[str]: ...
25
+
26
+ # 获取所有/一个节点信息
27
+ def get_node_info(self, timeout: int = 5000) -> List["NodeInfo"]: ...
28
+ def get_one_node_info(self, timeout: int = 5000) -> Optional["NodeInfo"]: ...
29
+
30
+ # 条件构建(均链式返回 self)
31
+ def xpath(self, path: str) -> "Selector": ...
32
+ def label(self, label: str) -> "Selector": ...
33
+ def label_match(self, match: str) -> "Selector": ...
34
+ def name(self, name: str) -> "Selector": ...
35
+ def name_match(self, match: str) -> "Selector": ...
36
+ def type(self, type_name: str) -> "Selector": ...
37
+ def type_match(self, match: str) -> "Selector": ...
38
+ def value(self, value: str) -> "Selector": ...
39
+ def value_match(self, match: str) -> "Selector": ...
40
+ def enable(self, flag: bool) -> "Selector": ...
41
+ def accessible(self, flag: bool) -> "Selector": ...
42
+ def visible(self, flag: bool) -> "Selector": ...
43
+ def selected(self, flag: bool) -> "Selector": ...
44
+ def index(self, idx: int) -> "Selector": ...
45
+ def depth(self, d: int) -> "Selector": ...
46
+ def child_count(self, expr: str) -> "Selector": ...
47
+ def bounds(self, x: int, y: int, width: int, height: int) -> "Selector": ...
48
+
49
+ class NodeBounds:
50
+ x: int
51
+ y: int
52
+ width: int
53
+ height: int
54
+ centerX: int
55
+ centerY: int
56
+
57
+ class NodeInfo:
58
+ id: str
59
+ label: str
60
+ type: str
61
+ value: str
62
+ name: str
63
+ visible: bool
64
+ enabled: bool
65
+ accessible: bool
66
+ selected: bool
67
+ bounds: NodeBounds
68
+ depth: int
69
+ index: int
70
+ parentId: str
71
+ childCount: int
72
+
73
+ def clickCenter(self) -> bool: ...
74
+ def clickRandom(self) -> bool: ...
75
+ def parent(self) -> Optional["NodeInfo"]: ...
76
+ def child(self, index: int) -> Optional["NodeInfo"]: ...
77
+ def allChildren(self) -> List["NodeInfo"]: ...
78
+ def siblings(self) -> List["NodeInfo"]: ...
79
+ def previousSiblings(self) -> List["NodeInfo"]: ...
80
+ def nextSiblings(self) -> List["NodeInfo"]: ...
81
+ def toJSON(self) -> Dict[str, Any]: ...
82
+
83
+ def create_selector(params: Optional[SelectorParams] = ...) -> Selector:
84
+ """创建节点选择器
85
+
86
+ 参数:
87
+ params: visibleFilter/labelFilter/boundsFilter/maxDepth/maxChildCount/excludedAttributes
88
+ 返回:
89
+ Selector: 链式选择器
90
+ """
91
+ ...
kuaijs/paddleocr.pyi ADDED
@@ -0,0 +1,41 @@
1
+ from typing import List, Protocol
2
+
3
+ class OCRResult(Protocol):
4
+ text: str
5
+ confidence: float
6
+ x: int
7
+ y: int
8
+ ex: int
9
+ ey: int
10
+ width: int
11
+ height: int
12
+ centerX: int
13
+ centerY: int
14
+ angle: float
15
+ orientation: int
16
+
17
+ # 加载 PP-OCRv5 模型(maxSideLen 一般为 640)
18
+ def load_v5(maxSideLen: int = ...) -> bool:
19
+ """加载 PP-OCRv5 模型(maxSideLen 默认 640)"""
20
+ ...
21
+
22
+ def recognize(
23
+ input: str,
24
+ x: int = ...,
25
+ y: int = ...,
26
+ ex: int = ...,
27
+ ey: int = ...,
28
+ confidenceThreshold: float = ...,
29
+ ) -> List[OCRResult]:
30
+ """执行 OCR 识别(返回 OCRResult 列表)
31
+
32
+ 参数默认值:
33
+ x/y/ex/ey: 0(全屏)
34
+ confidenceThreshold: 0.6
35
+ """
36
+ ...
37
+
38
+ # 释放模型资源
39
+ def free() -> None:
40
+ """释放模型资源"""
41
+ ...
kuaijs/pip.pyi ADDED
@@ -0,0 +1,28 @@
1
+ from typing import Optional, Protocol
2
+
3
+ class LogViewParams(Protocol):
4
+ width: Optional[int]
5
+ height: Optional[int]
6
+ textSize: Optional[int]
7
+ textColor: Optional[str]
8
+ backgroundColor: Optional[str]
9
+
10
+ def set_log_view_params(params: Optional[LogViewParams] = ...) -> None:
11
+ """设置悬浮窗日志窗口的显示参数(需在显示前调用)"""
12
+ ...
13
+
14
+ def is_pip_active() -> bool:
15
+ """是否开启了悬浮窗"""
16
+ ...
17
+
18
+ def show_log_window() -> bool:
19
+ """显示日志窗口(App 必须在前台)"""
20
+ ...
21
+
22
+ def close_log_window() -> bool:
23
+ """关闭日志窗口(App 必须在前台)"""
24
+ ...
25
+
26
+ def set_pip_ctrl_script(ctrl: bool) -> bool:
27
+ """设置是否允许悬浮窗控制脚本启停"""
28
+ ...
kuaijs/system.pyi ADDED
@@ -0,0 +1,146 @@
1
+ from typing import Any, Dict, List, Optional, Protocol
2
+
3
+ # 获取内存使用信息(单位:MB)
4
+ # 返回键:
5
+ # - used: 已使用内存
6
+ # - available: 可用内存
7
+ # - total: 系统总内存
8
+ # - usagePercentage: 使用率(0-100)
9
+ class MemoryInfo(Protocol):
10
+ used: int
11
+ available: int
12
+ total: int
13
+ usagePercentage: int
14
+
15
+ # 获取当前运行的应用信息(可能为 None)
16
+ class ProcessArguments(Protocol):
17
+ env: Dict[str, Any]
18
+ args: List[str]
19
+
20
+ class ActivateAppInfo(Protocol):
21
+ name: str
22
+ pid: int
23
+ bundleId: str
24
+ processArguments: ProcessArguments
25
+
26
+ # 设置 WDA 参数
27
+ # 参数:
28
+ # - params: 支持的键:
29
+ # - mjpegServerScreenshotQuality: int 截图质量(MJPEG)
30
+ # - mjpegServerFramerate: int MJPEG 帧率
31
+ # - screenshotQuality: int 普通截图质量
32
+ class WDASettings(Protocol):
33
+ mjpegServerScreenshotQuality: Optional[int]
34
+ mjpegServerFramerate: Optional[int]
35
+ screenshotQuality: Optional[int]
36
+
37
+ # 启动应用
38
+ # 参数:
39
+ # - bundle_id: 应用的 Bundle ID,例如 "com.example.app"
40
+ # - args: 启动参数列表,例如 ["--flag", "--debug"]
41
+ # - env: 环境变量映射,例如 {"ENV": "1"}
42
+ def start_app(bundle_id: str, args: List[str] = ..., env: Dict[str, Any] = ...) -> bool:
43
+ """启动应用
44
+
45
+ 参数:
46
+ bundle_id: 应用 Bundle ID
47
+ args: 启动参数列表
48
+ env: 环境变量映射
49
+ 返回:
50
+ bool: 是否启动成功
51
+ """
52
+ ...
53
+
54
+ # 停止应用
55
+ # 参数:
56
+ # - bundle_id: 应用的 Bundle ID
57
+ def stop_app(bundle_id: str) -> bool:
58
+ """停止应用"""
59
+ ...
60
+
61
+ # 激活应用到前台
62
+ # 参数:
63
+ # - bundle_id: 应用的 Bundle ID
64
+ def activate_app(bundle_id: str) -> bool:
65
+ """激活应用到前台(未启动则启动)"""
66
+ ...
67
+
68
+ def activate_app_info() -> Optional[ActivateAppInfo]:
69
+ """获取当前运行的应用信息(可能为 None)"""
70
+ ...
71
+
72
+ # 使用系统浏览器打开 URL
73
+ # 参数:
74
+ # - url: 例如 "https://example.com"
75
+ def open_url(url: str) -> bool:
76
+ """使用系统浏览器打开 URL"""
77
+ ...
78
+
79
+ # 发送系统通知(后台生效)
80
+ # 参数:
81
+ # - msg: 通知内容
82
+ # - title: 通知标题,空或 "undefined" 时使用应用名称
83
+ # - id: 通知 ID,相同 ID 会覆盖
84
+ def notify(msg: str, title: str = ..., id: str = ...) -> bool:
85
+ """发送系统通知(后台生效)"""
86
+ ...
87
+
88
+ # 设置剪贴板文本(仅前台有效)
89
+ # 参数:
90
+ # - text: 要写入剪贴板的文本
91
+ def set_clipboard(text: str) -> bool:
92
+ """设置剪贴板文本(仅前台有效)"""
93
+ ...
94
+
95
+ # 获取剪贴板文本(仅前台有效)
96
+ def get_clipboard() -> str:
97
+ """获取剪贴板文本(仅前台有效)"""
98
+ ...
99
+
100
+ # 是否锁屏
101
+ def is_locked() -> bool:
102
+ """是否锁屏"""
103
+ ...
104
+
105
+ # 锁屏
106
+ def lock() -> bool:
107
+ """锁屏"""
108
+ ...
109
+
110
+ # 解锁
111
+ def unlock() -> bool:
112
+ """解锁"""
113
+ ...
114
+
115
+ def get_memory_info() -> MemoryInfo:
116
+ """获取内存使用信息(MB):used/available/total/usagePercentage"""
117
+ ...
118
+
119
+ # 获取已使用内存(MB)
120
+ def get_used_memory() -> int:
121
+ """获取已使用内存(MB)"""
122
+ ...
123
+
124
+ # 获取可用内存(MB)
125
+ def get_available_memory() -> int:
126
+ """获取可用内存(MB)"""
127
+ ...
128
+
129
+ # 获取系统总内存(MB)
130
+ def get_total_memory() -> int:
131
+ """获取系统总内存(MB)"""
132
+ ...
133
+
134
+ # 启动 WDA 服务
135
+ def start_wda() -> bool:
136
+ """启动 WDA 服务"""
137
+ ...
138
+
139
+ # 获取 WDA 状态(是否可用)
140
+ def get_wda_status() -> bool:
141
+ """获取 WDA 状态(是否可用)"""
142
+ ...
143
+
144
+ def set_wda_settings(params: Optional[WDASettings] = ...) -> bool:
145
+ """设置 WDA 参数(质量/帧率/截图质量)"""
146
+ ...
kuaijs/tomatoocr.pyi ADDED
@@ -0,0 +1,80 @@
1
+ from typing import Optional, Protocol
2
+
3
+ class TomatoInitResult(Protocol):
4
+ deviceId: str
5
+ expiryTime: str
6
+ message: str
7
+ status: str
8
+ versionName: str
9
+
10
+ def initialize_with_config(
11
+ mode: str, licenseData: str, remark: str = ...
12
+ ) -> Optional[TomatoInitResult]:
13
+ """初始化 TomatoOCR 并设置基本配置
14
+
15
+ 参数默认值:
16
+ remark: 空字符串
17
+ """
18
+ ...
19
+
20
+ # 配置项:HTTP间隔/识别类型/检测框类型/展开比例/分数阈值/返回类型/二值阈值/运行模式/过滤颜色
21
+ def set_http_interval_time(second: float) -> None:
22
+ """设置 HTTP 请求间隔时间(秒)"""
23
+ ...
24
+
25
+ def set_rec_type(recType: str) -> None:
26
+ """设置识别类型(如 ch-3.0/cht/japan 等)"""
27
+ ...
28
+
29
+ def set_det_box_type(detBoxType: str) -> None:
30
+ """设置检测框类型(rect/quad)"""
31
+ ...
32
+
33
+ def set_det_unclip_ratio(detUnclipRatio: float) -> None:
34
+ """设置检测框展开比例(建议 1.6-2.5)"""
35
+ ...
36
+
37
+ def set_rec_score_threshold(recScoreThreshold: float) -> None:
38
+ """设置识别分数阈值(默认 0.1)"""
39
+ ...
40
+
41
+ def set_return_type(returnType: str) -> None:
42
+ """设置返回类型(json/text/num/自定义字符集)"""
43
+ ...
44
+
45
+ def set_binary_thresh(binaryThresh: float) -> None:
46
+ """设置二值化阈值(0-255)"""
47
+ ...
48
+
49
+ def set_run_mode(runMode: str) -> None:
50
+ """设置运行模式(如 fast)"""
51
+ ...
52
+
53
+ def set_filter_color(filterColor: str, backgroundColor: str) -> None:
54
+ """设置图像滤色参数(多色用 | 连接)"""
55
+ ...
56
+
57
+ # 图片OCR与点击点查找
58
+ def ocr_image(
59
+ input: str,
60
+ type: int = ...,
61
+ x: int = ...,
62
+ y: int = ...,
63
+ ex: int = ...,
64
+ ey: int = ...,
65
+ ) -> str:
66
+ """对图像执行 OCR 识别,返回 JSON 字符串
67
+
68
+ 参数默认值:
69
+ type: 3(检测+识别)
70
+ x/y/ex/ey: 0
71
+ """
72
+ ...
73
+
74
+ def find_tap_point(data: str) -> str:
75
+ """查找点击点(返回中心点 JSON 字符串)"""
76
+ ...
77
+
78
+ def find_tap_points(data: str) -> str:
79
+ """查找多个点击点(返回中心点数组 JSON 字符串)"""
80
+ ...
kuaijs/tts.pyi ADDED
@@ -0,0 +1,51 @@
1
+ from typing import List, Protocol
2
+
3
+ # 语音列表与设置音色
4
+ class VoiceInfo(Protocol):
5
+ identifier: str
6
+ name: str
7
+ language: str
8
+ quality: int
9
+
10
+ # 播放语音(rate:0.0-1.0;pitch:0.5-2.0;volume:0.0-1.0;language:zh-CN 等)
11
+ def speak(
12
+ text: str,
13
+ rate: float = ...,
14
+ pitch: float = ...,
15
+ volume: float = ...,
16
+ language: str = ...,
17
+ ) -> bool:
18
+ """播放文本转语音(5 参数版本)
19
+
20
+ 参数默认值:
21
+ rate: 0.5
22
+ pitch: 1.0
23
+ volume: 1.0
24
+ language: "zh-CN"
25
+ """
26
+ ...
27
+
28
+ def wait_end() -> None:
29
+ """等待当前语音播放结束"""
30
+ ...
31
+
32
+ def stop() -> None:
33
+ """停止当前播放"""
34
+ ...
35
+
36
+ def is_speaking() -> bool:
37
+ """是否正在播放"""
38
+ ...
39
+
40
+ def get_available_voices() -> List[VoiceInfo]:
41
+ """获取可用的语音列表"""
42
+ ...
43
+
44
+ def set_voice(voiceIdentifier: str) -> bool:
45
+ """设置语音(identifier)"""
46
+ ...
47
+
48
+ # 释放资源
49
+ def free() -> None:
50
+ """释放 TTS 资源"""
51
+ ...
kuaijs/ui.pyi ADDED
@@ -0,0 +1,68 @@
1
+ from typing import Any, Callable
2
+
3
+ def show_toast(message: str) -> None:
4
+ """显示 Toast 提示
5
+
6
+ 参数:
7
+ message: 提示消息字符串
8
+ 返回:
9
+ None
10
+ """
11
+ ...
12
+
13
+ def confirm(title: str, message: str) -> bool:
14
+ """显示确认对话框
15
+
16
+ 参数:
17
+ title: 对话框标题
18
+ message: 对话框内容
19
+ 返回:
20
+ bool: 用户是否点击“确定”
21
+ """
22
+ ...
23
+
24
+ def confirm_input(title: str, message: str) -> str:
25
+ """显示输入对话框
26
+
27
+ 参数:
28
+ title: 对话框标题
29
+ message: 对话框内容
30
+ 返回:
31
+ str: 用户输入文本;取消返回空字符串
32
+ """
33
+ ...
34
+
35
+ def alert(title: str, message: str) -> None:
36
+ """显示警告对话框
37
+
38
+ 参数:
39
+ title: 对话框标题
40
+ message: 对话框内容
41
+ 返回:
42
+ None
43
+ """
44
+ ...
45
+
46
+ UIEventCallback = Callable[[str, str], None]
47
+
48
+ def on_event(callback: UIEventCallback) -> None:
49
+ """设置事件回调函数
50
+
51
+ 参数:
52
+ callback: 回调函数签名为 (event: str, data: str) -> None。
53
+ data 为 JSON 字符串(字典/数组等对象会被序列化为 JSON)。
54
+ 返回:
55
+ None
56
+ """
57
+ ...
58
+
59
+ def call(key: str, data: Any = ...) -> None:
60
+ """调用网页中通过 ms.registerUIFunc 注册的函数
61
+
62
+ 参数:
63
+ key: 注册的函数名
64
+ data: 传入数据,支持字典/数组/字符串/数字/布尔;可不传
65
+ 返回:
66
+ None
67
+ """
68
+ ...
kuaijs/utils.pyi ADDED
@@ -0,0 +1,16 @@
1
+ """工具函数"""
2
+
3
+ # 时间格式化(如 "yyyy-MM-dd HH:mm:ss")
4
+ def time_format(format: str) -> str:
5
+ """时间格式化(如 "yyyy-MM-dd HH:mm:ss")"""
6
+ ...
7
+
8
+ # 生成随机数(闭区间)
9
+ def random(min: int, max: int) -> int:
10
+ """生成随机数(闭区间)"""
11
+ ...
12
+
13
+ # 将应用切到前台
14
+ def take_me_to_front() -> None:
15
+ """将应用切到前台"""
16
+ ...
kuaijs/yolo.pyi ADDED
@@ -0,0 +1,44 @@
1
+ from typing import List, Optional, Protocol
2
+
3
+ # 目标检测(返回边框/置信度/类别等)
4
+ class YoloResult(Protocol):
5
+ x: int
6
+ y: int
7
+ ex: int
8
+ ey: int
9
+ centerX: int
10
+ centerY: int
11
+ width: int
12
+ height: int
13
+ confidence: float
14
+ classId: int
15
+
16
+ # 加载 YOLOv11 模型,返回模型ID
17
+ def load_v11(paramPath: str, binPath: str, nc: int) -> Optional[str]:
18
+ """加载 YOLOv11 模型,返回模型ID(失败返回 None)"""
19
+ ...
20
+
21
+ def detect(
22
+ modelId: str,
23
+ input: str,
24
+ targetSize: int = ...,
25
+ threshold: float = ...,
26
+ nmsThreshold: float = ...,
27
+ ) -> List[YoloResult]:
28
+ """目标检测(返回边框/置信度/类别等)
29
+
30
+ 参数默认值:
31
+ targetSize: 640
32
+ threshold: 0.4
33
+ nmsThreshold: 0.5
34
+ """
35
+ ...
36
+
37
+ # 释放指定模型/所有模型
38
+ def free(modelId: str) -> None:
39
+ """释放指定模型资源"""
40
+ ...
41
+
42
+ def free_all() -> None:
43
+ """释放所有模型资源"""
44
+ ...
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: kuaijs-ios
3
+ Version: 0.2.11
4
+ Summary: 快点JS代码提示与类型检查。
5
+ Author: KuaiJS
6
+ Keywords: kuaijs,types,stubs,ios,automation
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+
13
+ # kuaijs-ios
14
+
15
+ `快点JS` Python 包的类型桩,仅用于「快点 JS」代码提示与类型检查。
16
+
17
+ ## 安装
18
+
19
+ ```bash
20
+ pip install kuaijs-ios
21
+ ```
22
+
23
+ ## 说明
24
+
25
+ - 本包仅包含 `.pyi` 类型桩文件,用于编辑器智能提示与类型检查。
26
+ - 兼容 Python 3.8 及以上版本。
@@ -0,0 +1,28 @@
1
+ kuaijs/__init__.py,sha256=2eRf63JS_QPcYKOYoeHkrQgctgK6Kp2KoaTmEjEkIgE,317
2
+ kuaijs/action.pyi,sha256=SuvWy52UZkQn17mTqAHmxCBQYt_L-C7dcAPf6jn6004,5963
3
+ kuaijs/appleocr.pyi,sha256=wlU2fbLmQEeLkFPjhFFQQ1PqlYAGUP4o2BNk62YMlsE,2047
4
+ kuaijs/config.pyi,sha256=5Id5aPumMpIPvDjyfgIMjtPfj9pHx9peWXlePMwNg2E,871
5
+ kuaijs/device.pyi,sha256=9rm5Bt9RPMe-DfnzPXEj1tOXX3fMTruzGsSdHJp9NXU,1864
6
+ kuaijs/file.pyi,sha256=xz4ciCP3msQRS8BWfBf7CRdHZQ6NJblBbOiG9DUP2XE,2504
7
+ kuaijs/g.pyi,sha256=OnLCZupBQS7EnYtGHqpBzhoBz0Y9VsHc8ne4YN1nSfg,562
8
+ kuaijs/hid.pyi,sha256=4FhJenOX41gvYht9iJU3hsxdOWiYaRZt7k0BK3QnxSA,5015
9
+ kuaijs/hotupdate.pyi,sha256=ElhP_qMIxul7QFuO4wsOffT1J8MEExYMRG78Sb54nXw,1145
10
+ kuaijs/image.pyi,sha256=kuyaunQT-Sr_rfpxrQCIxIBMROyl1OWSRrcfdPgfoVs,4158
11
+ kuaijs/ime.pyi,sha256=3Q-143saD2XclLheVIRIHQpJtaVG0KOq9tavMmJ_Z8U,1070
12
+ kuaijs/logger.pyi,sha256=DMM391Hwo-J11SAaK1VAFrGBP3eze-G48hOXeb87sx0,1221
13
+ kuaijs/media.pyi,sha256=q9JlGJNo5Xr-Jq8g6RN2OKUn1zVS0p8M8SWseh-H4x0,741
14
+ kuaijs/mysql.pyi,sha256=moXN1ripEp_jo5BdM9YMGW3Wf9OJqzKAfndHn4Y8htw,1123
15
+ kuaijs/netcard.pyi,sha256=6ArCgv1g5JGYrtwl0t5iz5ZlXdjtEhHOQ8Y_h1WHXD4,669
16
+ kuaijs/node.pyi,sha256=Qko_gC4tQr5gjM420e75q7oX2m3thSo1Tw1XRJfeuKk,3143
17
+ kuaijs/paddleocr.pyi,sha256=Ij0tThJCDgfdw3hwhK33RNxzn-6Rk3XY7o5gdD5dxSY,814
18
+ kuaijs/pip.pyi,sha256=pPpVNoitohJGA4xzdwDjTXKTSYjmJPcfceywXoKGueU,746
19
+ kuaijs/system.pyi,sha256=WVUvsok6v72gIQoI9DjpWYcxLKNUuIrlRQTOVVPTt4Y,3659
20
+ kuaijs/tomatoocr.pyi,sha256=LsbV_rSzJN-KMNh5O6bbc81ZJzZIOqrLTHDwQ5NmuRk,2094
21
+ kuaijs/tts.pyi,sha256=HKOMqjKLGpOB-VkAx-CZ2NxgG5QnUwb2o3-e7r1jKSg,1001
22
+ kuaijs/ui.pyi,sha256=5tdTzkoyKw8src_GmhUEsnVe7t_q87db9YDQG4k781M,1457
23
+ kuaijs/utils.pyi,sha256=VCBKUjDx4bS_9Ze6KG81PxnkHGpCkflUvsa2pU8MOKg,390
24
+ kuaijs/yolo.pyi,sha256=FTcH3VajEiHVJGmqdX1ZVPDpsH_bZ7vloD1HGEjMc3M,965
25
+ kuaijs_ios-0.2.11.dist-info/METADATA,sha256=8BhRbaSKc5te-w4Qqli6uykEJeOaqHFxdr1Ifhnx5J8,664
26
+ kuaijs_ios-0.2.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
27
+ kuaijs_ios-0.2.11.dist-info/top_level.txt,sha256=oJzlLv9fE1eOemhybMOEv_7GQX3sFHm7OrFjdWAb1zc,7
28
+ kuaijs_ios-0.2.11.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ kuaijs