alibabacloud-quanmiaolightapp20240801 2.11.1__py3-none-any.whl → 2.12.0__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.
- alibabacloud_quanmiaolightapp20240801/__init__.py +1 -1
- alibabacloud_quanmiaolightapp20240801/client.py +120 -0
- alibabacloud_quanmiaolightapp20240801/models.py +222 -0
- {alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info → alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info}/METADATA +1 -1
- alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/RECORD +8 -0
- alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info/RECORD +0 -8
- {alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info → alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info}/LICENSE +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info → alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info}/WHEEL +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info → alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.
|
|
1
|
+
__version__ = '2.12.0'
|
|
@@ -4458,3 +4458,123 @@ class Client(OpenApiClient):
|
|
|
4458
4458
|
runtime = util_models.RuntimeOptions()
|
|
4459
4459
|
headers = {}
|
|
4460
4460
|
return await self.update_video_analysis_task_with_options_async(workspace_id, request, headers, runtime)
|
|
4461
|
+
|
|
4462
|
+
def update_video_analysis_tasks_with_options(
|
|
4463
|
+
self,
|
|
4464
|
+
workspace_id: str,
|
|
4465
|
+
tmp_req: quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksRequest,
|
|
4466
|
+
headers: Dict[str, str],
|
|
4467
|
+
runtime: util_models.RuntimeOptions,
|
|
4468
|
+
) -> quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksResponse:
|
|
4469
|
+
"""
|
|
4470
|
+
@summary 视频理解-批量修改任务状态
|
|
4471
|
+
|
|
4472
|
+
@param tmp_req: UpdateVideoAnalysisTasksRequest
|
|
4473
|
+
@param headers: map
|
|
4474
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
4475
|
+
@return: UpdateVideoAnalysisTasksResponse
|
|
4476
|
+
"""
|
|
4477
|
+
UtilClient.validate_model(tmp_req)
|
|
4478
|
+
request = quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksShrinkRequest()
|
|
4479
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
4480
|
+
if not UtilClient.is_unset(tmp_req.task_ids):
|
|
4481
|
+
request.task_ids_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.task_ids, 'taskIds', 'json')
|
|
4482
|
+
body = {}
|
|
4483
|
+
if not UtilClient.is_unset(request.task_ids_shrink):
|
|
4484
|
+
body['taskIds'] = request.task_ids_shrink
|
|
4485
|
+
if not UtilClient.is_unset(request.task_status):
|
|
4486
|
+
body['taskStatus'] = request.task_status
|
|
4487
|
+
req = open_api_models.OpenApiRequest(
|
|
4488
|
+
headers=headers,
|
|
4489
|
+
body=OpenApiUtilClient.parse_to_map(body)
|
|
4490
|
+
)
|
|
4491
|
+
params = open_api_models.Params(
|
|
4492
|
+
action='UpdateVideoAnalysisTasks',
|
|
4493
|
+
version='2024-08-01',
|
|
4494
|
+
protocol='HTTPS',
|
|
4495
|
+
pathname=f'/{OpenApiUtilClient.get_encode_param(workspace_id)}/quanmiao/lightapp/videoAnalysis/updateVideoAnalysisTasks',
|
|
4496
|
+
method='PUT',
|
|
4497
|
+
auth_type='AK',
|
|
4498
|
+
style='ROA',
|
|
4499
|
+
req_body_type='formData',
|
|
4500
|
+
body_type='json'
|
|
4501
|
+
)
|
|
4502
|
+
return TeaCore.from_map(
|
|
4503
|
+
quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksResponse(),
|
|
4504
|
+
self.call_api(params, req, runtime)
|
|
4505
|
+
)
|
|
4506
|
+
|
|
4507
|
+
async def update_video_analysis_tasks_with_options_async(
|
|
4508
|
+
self,
|
|
4509
|
+
workspace_id: str,
|
|
4510
|
+
tmp_req: quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksRequest,
|
|
4511
|
+
headers: Dict[str, str],
|
|
4512
|
+
runtime: util_models.RuntimeOptions,
|
|
4513
|
+
) -> quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksResponse:
|
|
4514
|
+
"""
|
|
4515
|
+
@summary 视频理解-批量修改任务状态
|
|
4516
|
+
|
|
4517
|
+
@param tmp_req: UpdateVideoAnalysisTasksRequest
|
|
4518
|
+
@param headers: map
|
|
4519
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
4520
|
+
@return: UpdateVideoAnalysisTasksResponse
|
|
4521
|
+
"""
|
|
4522
|
+
UtilClient.validate_model(tmp_req)
|
|
4523
|
+
request = quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksShrinkRequest()
|
|
4524
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
4525
|
+
if not UtilClient.is_unset(tmp_req.task_ids):
|
|
4526
|
+
request.task_ids_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.task_ids, 'taskIds', 'json')
|
|
4527
|
+
body = {}
|
|
4528
|
+
if not UtilClient.is_unset(request.task_ids_shrink):
|
|
4529
|
+
body['taskIds'] = request.task_ids_shrink
|
|
4530
|
+
if not UtilClient.is_unset(request.task_status):
|
|
4531
|
+
body['taskStatus'] = request.task_status
|
|
4532
|
+
req = open_api_models.OpenApiRequest(
|
|
4533
|
+
headers=headers,
|
|
4534
|
+
body=OpenApiUtilClient.parse_to_map(body)
|
|
4535
|
+
)
|
|
4536
|
+
params = open_api_models.Params(
|
|
4537
|
+
action='UpdateVideoAnalysisTasks',
|
|
4538
|
+
version='2024-08-01',
|
|
4539
|
+
protocol='HTTPS',
|
|
4540
|
+
pathname=f'/{OpenApiUtilClient.get_encode_param(workspace_id)}/quanmiao/lightapp/videoAnalysis/updateVideoAnalysisTasks',
|
|
4541
|
+
method='PUT',
|
|
4542
|
+
auth_type='AK',
|
|
4543
|
+
style='ROA',
|
|
4544
|
+
req_body_type='formData',
|
|
4545
|
+
body_type='json'
|
|
4546
|
+
)
|
|
4547
|
+
return TeaCore.from_map(
|
|
4548
|
+
quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksResponse(),
|
|
4549
|
+
await self.call_api_async(params, req, runtime)
|
|
4550
|
+
)
|
|
4551
|
+
|
|
4552
|
+
def update_video_analysis_tasks(
|
|
4553
|
+
self,
|
|
4554
|
+
workspace_id: str,
|
|
4555
|
+
request: quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksRequest,
|
|
4556
|
+
) -> quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksResponse:
|
|
4557
|
+
"""
|
|
4558
|
+
@summary 视频理解-批量修改任务状态
|
|
4559
|
+
|
|
4560
|
+
@param request: UpdateVideoAnalysisTasksRequest
|
|
4561
|
+
@return: UpdateVideoAnalysisTasksResponse
|
|
4562
|
+
"""
|
|
4563
|
+
runtime = util_models.RuntimeOptions()
|
|
4564
|
+
headers = {}
|
|
4565
|
+
return self.update_video_analysis_tasks_with_options(workspace_id, request, headers, runtime)
|
|
4566
|
+
|
|
4567
|
+
async def update_video_analysis_tasks_async(
|
|
4568
|
+
self,
|
|
4569
|
+
workspace_id: str,
|
|
4570
|
+
request: quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksRequest,
|
|
4571
|
+
) -> quan_miao_light_app_20240801_models.UpdateVideoAnalysisTasksResponse:
|
|
4572
|
+
"""
|
|
4573
|
+
@summary 视频理解-批量修改任务状态
|
|
4574
|
+
|
|
4575
|
+
@param request: UpdateVideoAnalysisTasksRequest
|
|
4576
|
+
@return: UpdateVideoAnalysisTasksResponse
|
|
4577
|
+
"""
|
|
4578
|
+
runtime = util_models.RuntimeOptions()
|
|
4579
|
+
headers = {}
|
|
4580
|
+
return await self.update_video_analysis_tasks_with_options_async(workspace_id, request, headers, runtime)
|
|
@@ -13929,3 +13929,225 @@ class UpdateVideoAnalysisTaskResponse(TeaModel):
|
|
|
13929
13929
|
return self
|
|
13930
13930
|
|
|
13931
13931
|
|
|
13932
|
+
class UpdateVideoAnalysisTasksRequest(TeaModel):
|
|
13933
|
+
def __init__(
|
|
13934
|
+
self,
|
|
13935
|
+
task_ids: List[str] = None,
|
|
13936
|
+
task_status: str = None,
|
|
13937
|
+
):
|
|
13938
|
+
# This parameter is required.
|
|
13939
|
+
self.task_ids = task_ids
|
|
13940
|
+
# This parameter is required.
|
|
13941
|
+
self.task_status = task_status
|
|
13942
|
+
|
|
13943
|
+
def validate(self):
|
|
13944
|
+
pass
|
|
13945
|
+
|
|
13946
|
+
def to_map(self):
|
|
13947
|
+
_map = super().to_map()
|
|
13948
|
+
if _map is not None:
|
|
13949
|
+
return _map
|
|
13950
|
+
|
|
13951
|
+
result = dict()
|
|
13952
|
+
if self.task_ids is not None:
|
|
13953
|
+
result['taskIds'] = self.task_ids
|
|
13954
|
+
if self.task_status is not None:
|
|
13955
|
+
result['taskStatus'] = self.task_status
|
|
13956
|
+
return result
|
|
13957
|
+
|
|
13958
|
+
def from_map(self, m: dict = None):
|
|
13959
|
+
m = m or dict()
|
|
13960
|
+
if m.get('taskIds') is not None:
|
|
13961
|
+
self.task_ids = m.get('taskIds')
|
|
13962
|
+
if m.get('taskStatus') is not None:
|
|
13963
|
+
self.task_status = m.get('taskStatus')
|
|
13964
|
+
return self
|
|
13965
|
+
|
|
13966
|
+
|
|
13967
|
+
class UpdateVideoAnalysisTasksShrinkRequest(TeaModel):
|
|
13968
|
+
def __init__(
|
|
13969
|
+
self,
|
|
13970
|
+
task_ids_shrink: str = None,
|
|
13971
|
+
task_status: str = None,
|
|
13972
|
+
):
|
|
13973
|
+
# This parameter is required.
|
|
13974
|
+
self.task_ids_shrink = task_ids_shrink
|
|
13975
|
+
# This parameter is required.
|
|
13976
|
+
self.task_status = task_status
|
|
13977
|
+
|
|
13978
|
+
def validate(self):
|
|
13979
|
+
pass
|
|
13980
|
+
|
|
13981
|
+
def to_map(self):
|
|
13982
|
+
_map = super().to_map()
|
|
13983
|
+
if _map is not None:
|
|
13984
|
+
return _map
|
|
13985
|
+
|
|
13986
|
+
result = dict()
|
|
13987
|
+
if self.task_ids_shrink is not None:
|
|
13988
|
+
result['taskIds'] = self.task_ids_shrink
|
|
13989
|
+
if self.task_status is not None:
|
|
13990
|
+
result['taskStatus'] = self.task_status
|
|
13991
|
+
return result
|
|
13992
|
+
|
|
13993
|
+
def from_map(self, m: dict = None):
|
|
13994
|
+
m = m or dict()
|
|
13995
|
+
if m.get('taskIds') is not None:
|
|
13996
|
+
self.task_ids_shrink = m.get('taskIds')
|
|
13997
|
+
if m.get('taskStatus') is not None:
|
|
13998
|
+
self.task_status = m.get('taskStatus')
|
|
13999
|
+
return self
|
|
14000
|
+
|
|
14001
|
+
|
|
14002
|
+
class UpdateVideoAnalysisTasksResponseBodyData(TeaModel):
|
|
14003
|
+
def __init__(
|
|
14004
|
+
self,
|
|
14005
|
+
task_error_code: str = None,
|
|
14006
|
+
task_error_message: str = None,
|
|
14007
|
+
task_id: str = None,
|
|
14008
|
+
task_status: str = None,
|
|
14009
|
+
):
|
|
14010
|
+
self.task_error_code = task_error_code
|
|
14011
|
+
self.task_error_message = task_error_message
|
|
14012
|
+
self.task_id = task_id
|
|
14013
|
+
self.task_status = task_status
|
|
14014
|
+
|
|
14015
|
+
def validate(self):
|
|
14016
|
+
pass
|
|
14017
|
+
|
|
14018
|
+
def to_map(self):
|
|
14019
|
+
_map = super().to_map()
|
|
14020
|
+
if _map is not None:
|
|
14021
|
+
return _map
|
|
14022
|
+
|
|
14023
|
+
result = dict()
|
|
14024
|
+
if self.task_error_code is not None:
|
|
14025
|
+
result['taskErrorCode'] = self.task_error_code
|
|
14026
|
+
if self.task_error_message is not None:
|
|
14027
|
+
result['taskErrorMessage'] = self.task_error_message
|
|
14028
|
+
if self.task_id is not None:
|
|
14029
|
+
result['taskId'] = self.task_id
|
|
14030
|
+
if self.task_status is not None:
|
|
14031
|
+
result['taskStatus'] = self.task_status
|
|
14032
|
+
return result
|
|
14033
|
+
|
|
14034
|
+
def from_map(self, m: dict = None):
|
|
14035
|
+
m = m or dict()
|
|
14036
|
+
if m.get('taskErrorCode') is not None:
|
|
14037
|
+
self.task_error_code = m.get('taskErrorCode')
|
|
14038
|
+
if m.get('taskErrorMessage') is not None:
|
|
14039
|
+
self.task_error_message = m.get('taskErrorMessage')
|
|
14040
|
+
if m.get('taskId') is not None:
|
|
14041
|
+
self.task_id = m.get('taskId')
|
|
14042
|
+
if m.get('taskStatus') is not None:
|
|
14043
|
+
self.task_status = m.get('taskStatus')
|
|
14044
|
+
return self
|
|
14045
|
+
|
|
14046
|
+
|
|
14047
|
+
class UpdateVideoAnalysisTasksResponseBody(TeaModel):
|
|
14048
|
+
def __init__(
|
|
14049
|
+
self,
|
|
14050
|
+
code: str = None,
|
|
14051
|
+
data: List[UpdateVideoAnalysisTasksResponseBodyData] = None,
|
|
14052
|
+
http_status_code: int = None,
|
|
14053
|
+
message: str = None,
|
|
14054
|
+
request_id: str = None,
|
|
14055
|
+
success: bool = None,
|
|
14056
|
+
):
|
|
14057
|
+
self.code = code
|
|
14058
|
+
self.data = data
|
|
14059
|
+
self.http_status_code = http_status_code
|
|
14060
|
+
self.message = message
|
|
14061
|
+
# Id of the request
|
|
14062
|
+
self.request_id = request_id
|
|
14063
|
+
self.success = success
|
|
14064
|
+
|
|
14065
|
+
def validate(self):
|
|
14066
|
+
if self.data:
|
|
14067
|
+
for k in self.data:
|
|
14068
|
+
if k:
|
|
14069
|
+
k.validate()
|
|
14070
|
+
|
|
14071
|
+
def to_map(self):
|
|
14072
|
+
_map = super().to_map()
|
|
14073
|
+
if _map is not None:
|
|
14074
|
+
return _map
|
|
14075
|
+
|
|
14076
|
+
result = dict()
|
|
14077
|
+
if self.code is not None:
|
|
14078
|
+
result['code'] = self.code
|
|
14079
|
+
result['data'] = []
|
|
14080
|
+
if self.data is not None:
|
|
14081
|
+
for k in self.data:
|
|
14082
|
+
result['data'].append(k.to_map() if k else None)
|
|
14083
|
+
if self.http_status_code is not None:
|
|
14084
|
+
result['httpStatusCode'] = self.http_status_code
|
|
14085
|
+
if self.message is not None:
|
|
14086
|
+
result['message'] = self.message
|
|
14087
|
+
if self.request_id is not None:
|
|
14088
|
+
result['requestId'] = self.request_id
|
|
14089
|
+
if self.success is not None:
|
|
14090
|
+
result['success'] = self.success
|
|
14091
|
+
return result
|
|
14092
|
+
|
|
14093
|
+
def from_map(self, m: dict = None):
|
|
14094
|
+
m = m or dict()
|
|
14095
|
+
if m.get('code') is not None:
|
|
14096
|
+
self.code = m.get('code')
|
|
14097
|
+
self.data = []
|
|
14098
|
+
if m.get('data') is not None:
|
|
14099
|
+
for k in m.get('data'):
|
|
14100
|
+
temp_model = UpdateVideoAnalysisTasksResponseBodyData()
|
|
14101
|
+
self.data.append(temp_model.from_map(k))
|
|
14102
|
+
if m.get('httpStatusCode') is not None:
|
|
14103
|
+
self.http_status_code = m.get('httpStatusCode')
|
|
14104
|
+
if m.get('message') is not None:
|
|
14105
|
+
self.message = m.get('message')
|
|
14106
|
+
if m.get('requestId') is not None:
|
|
14107
|
+
self.request_id = m.get('requestId')
|
|
14108
|
+
if m.get('success') is not None:
|
|
14109
|
+
self.success = m.get('success')
|
|
14110
|
+
return self
|
|
14111
|
+
|
|
14112
|
+
|
|
14113
|
+
class UpdateVideoAnalysisTasksResponse(TeaModel):
|
|
14114
|
+
def __init__(
|
|
14115
|
+
self,
|
|
14116
|
+
headers: Dict[str, str] = None,
|
|
14117
|
+
status_code: int = None,
|
|
14118
|
+
body: UpdateVideoAnalysisTasksResponseBody = None,
|
|
14119
|
+
):
|
|
14120
|
+
self.headers = headers
|
|
14121
|
+
self.status_code = status_code
|
|
14122
|
+
self.body = body
|
|
14123
|
+
|
|
14124
|
+
def validate(self):
|
|
14125
|
+
if self.body:
|
|
14126
|
+
self.body.validate()
|
|
14127
|
+
|
|
14128
|
+
def to_map(self):
|
|
14129
|
+
_map = super().to_map()
|
|
14130
|
+
if _map is not None:
|
|
14131
|
+
return _map
|
|
14132
|
+
|
|
14133
|
+
result = dict()
|
|
14134
|
+
if self.headers is not None:
|
|
14135
|
+
result['headers'] = self.headers
|
|
14136
|
+
if self.status_code is not None:
|
|
14137
|
+
result['statusCode'] = self.status_code
|
|
14138
|
+
if self.body is not None:
|
|
14139
|
+
result['body'] = self.body.to_map()
|
|
14140
|
+
return result
|
|
14141
|
+
|
|
14142
|
+
def from_map(self, m: dict = None):
|
|
14143
|
+
m = m or dict()
|
|
14144
|
+
if m.get('headers') is not None:
|
|
14145
|
+
self.headers = m.get('headers')
|
|
14146
|
+
if m.get('statusCode') is not None:
|
|
14147
|
+
self.status_code = m.get('statusCode')
|
|
14148
|
+
if m.get('body') is not None:
|
|
14149
|
+
temp_model = UpdateVideoAnalysisTasksResponseBody()
|
|
14150
|
+
self.body = temp_model.from_map(m['body'])
|
|
14151
|
+
return self
|
|
14152
|
+
|
|
14153
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-quanmiaolightapp20240801
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.12.0
|
|
4
4
|
Summary: Alibaba Cloud QuanMiaoLightApp (20240801) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_quanmiaolightapp20240801/__init__.py,sha256=AL2etpZmtSgi8PkUDhP3zjy7PZ8KCQJPWCB6f3BzgY8,22
|
|
2
|
+
alibabacloud_quanmiaolightapp20240801/client.py,sha256=BVB4m3BVRfamBL_8PIVZw4sIbso1KtonnZklBGJ7sdI,201783
|
|
3
|
+
alibabacloud_quanmiaolightapp20240801/models.py,sha256=mpTz7Zx8Cb0ISMX0sdcBtkWAa87Lv8y_K6zqj13H7EQ,471653
|
|
4
|
+
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/METADATA,sha256=DTDV7TzYyDiFHNv6G_S4Drpt6LL2Q6u-slickQFDwD4,2404
|
|
6
|
+
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/top_level.txt,sha256=8OeD8NiIhtrm1c4lX_9fGb1YEX3tX01Q8FcLZMKbXlE,38
|
|
8
|
+
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_quanmiaolightapp20240801/__init__.py,sha256=rWME_42XD6Gfttla18Ulg4geAN5QI-FeSJBg2S6fMoA,22
|
|
2
|
-
alibabacloud_quanmiaolightapp20240801/client.py,sha256=1pM69GyCY2pARwKSIzDjG7jc7p-TWa3Q2F20Xfc8BQs,196517
|
|
3
|
-
alibabacloud_quanmiaolightapp20240801/models.py,sha256=xIB8fd3RbjZNBq1VzZWHkZV9dx5xOQjmTVdD_6Z8fuU,464835
|
|
4
|
-
alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info/METADATA,sha256=1QpKbB0d1ZpDaDi7BrBQnFZ70eZUoF_iYrvz4QTY0n0,2404
|
|
6
|
-
alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info/top_level.txt,sha256=8OeD8NiIhtrm1c4lX_9fGb1YEX3tX01Q8FcLZMKbXlE,38
|
|
8
|
-
alibabacloud_quanmiaolightapp20240801-2.11.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|