alibabacloud-iqs20241111 1.6.4__py3-none-any.whl → 1.7.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.
@@ -1 +1 @@
1
- __version__ = '1.6.4'
1
+ __version__ = '1.7.0'
@@ -613,6 +613,76 @@ class Client(OpenApiClient):
613
613
  headers = {}
614
614
  return await self.global_search_with_options_async(request, headers, runtime)
615
615
 
616
+ def multimodal_search_with_options(
617
+ self,
618
+ request: main_models.MultimodalSearchRequest,
619
+ headers: Dict[str, str],
620
+ runtime: RuntimeOptions,
621
+ ) -> main_models.MultimodalSearchResponse:
622
+ request.validate()
623
+ req = open_api_util_models.OpenApiRequest(
624
+ headers = headers,
625
+ body = Utils.parse_to_map(request.body)
626
+ )
627
+ params = open_api_util_models.Params(
628
+ action = 'MultimodalSearch',
629
+ version = '2024-11-11',
630
+ protocol = 'HTTPS',
631
+ pathname = f'/linked-retrieval/linked-retrieval-entry/v1/iqs/multimodal/unified',
632
+ method = 'POST',
633
+ auth_type = 'AK',
634
+ style = 'ROA',
635
+ req_body_type = 'json',
636
+ body_type = 'json'
637
+ )
638
+ return DaraCore.from_map(
639
+ main_models.MultimodalSearchResponse(),
640
+ self.call_api(params, req, runtime)
641
+ )
642
+
643
+ async def multimodal_search_with_options_async(
644
+ self,
645
+ request: main_models.MultimodalSearchRequest,
646
+ headers: Dict[str, str],
647
+ runtime: RuntimeOptions,
648
+ ) -> main_models.MultimodalSearchResponse:
649
+ request.validate()
650
+ req = open_api_util_models.OpenApiRequest(
651
+ headers = headers,
652
+ body = Utils.parse_to_map(request.body)
653
+ )
654
+ params = open_api_util_models.Params(
655
+ action = 'MultimodalSearch',
656
+ version = '2024-11-11',
657
+ protocol = 'HTTPS',
658
+ pathname = f'/linked-retrieval/linked-retrieval-entry/v1/iqs/multimodal/unified',
659
+ method = 'POST',
660
+ auth_type = 'AK',
661
+ style = 'ROA',
662
+ req_body_type = 'json',
663
+ body_type = 'json'
664
+ )
665
+ return DaraCore.from_map(
666
+ main_models.MultimodalSearchResponse(),
667
+ await self.call_api_async(params, req, runtime)
668
+ )
669
+
670
+ def multimodal_search(
671
+ self,
672
+ request: main_models.MultimodalSearchRequest,
673
+ ) -> main_models.MultimodalSearchResponse:
674
+ runtime = RuntimeOptions()
675
+ headers = {}
676
+ return self.multimodal_search_with_options(request, headers, runtime)
677
+
678
+ async def multimodal_search_async(
679
+ self,
680
+ request: main_models.MultimodalSearchRequest,
681
+ ) -> main_models.MultimodalSearchResponse:
682
+ runtime = RuntimeOptions()
683
+ headers = {}
684
+ return await self.multimodal_search_with_options_async(request, headers, runtime)
685
+
616
686
  def read_page_basic_with_options(
617
687
  self,
618
688
  request: main_models.ReadPageBasicRequest,
@@ -12,6 +12,10 @@ from ._global_search_information import GlobalSearchInformation
12
12
  from ._global_search_result import GlobalSearchResult
13
13
  from ._include_image import IncludeImage
14
14
  from ._location_info import LocationInfo
15
+ from ._multimodal_original_query import MultimodalOriginalQuery
16
+ from ._multimodal_query_context import MultimodalQueryContext
17
+ from ._multimodal_search_body import MultimodalSearchBody
18
+ from ._multimodal_search_output import MultimodalSearchOutput
15
19
  from ._query_context import QueryContext
16
20
  from ._read_page_body import ReadPageBody
17
21
  from ._read_page_item import ReadPageItem
@@ -22,6 +26,7 @@ from ._score_page_item import ScorePageItem
22
26
  from ._search_credits import SearchCredits
23
27
  from ._search_information import SearchInformation
24
28
  from ._unified_cost_credits import UnifiedCostCredits
29
+ from ._unified_image_item import UnifiedImageItem
25
30
  from ._unified_original_query import UnifiedOriginalQuery
26
31
  from ._unified_page_item import UnifiedPageItem
27
32
  from ._unified_query_context import UnifiedQueryContext
@@ -44,6 +49,8 @@ from ._get_iqs_usage_request import GetIqsUsageRequest
44
49
  from ._get_iqs_usage_response import GetIqsUsageResponse
45
50
  from ._global_search_request import GlobalSearchRequest
46
51
  from ._global_search_response import GlobalSearchResponse
52
+ from ._multimodal_search_request import MultimodalSearchRequest
53
+ from ._multimodal_search_response import MultimodalSearchResponse
47
54
  from ._read_page_basic_request import ReadPageBasicRequest
48
55
  from ._read_page_basic_response_body import ReadPageBasicResponseBody
49
56
  from ._read_page_basic_response import ReadPageBasicResponse
@@ -74,6 +81,10 @@ __all__ = [
74
81
  GlobalSearchResult,
75
82
  IncludeImage,
76
83
  LocationInfo,
84
+ MultimodalOriginalQuery,
85
+ MultimodalQueryContext,
86
+ MultimodalSearchBody,
87
+ MultimodalSearchOutput,
77
88
  QueryContext,
78
89
  ReadPageBody,
79
90
  ReadPageItem,
@@ -84,6 +95,7 @@ __all__ = [
84
95
  SearchCredits,
85
96
  SearchInformation,
86
97
  UnifiedCostCredits,
98
+ UnifiedImageItem,
87
99
  UnifiedOriginalQuery,
88
100
  UnifiedPageItem,
89
101
  UnifiedQueryContext,
@@ -106,6 +118,8 @@ __all__ = [
106
118
  GetIqsUsageResponse,
107
119
  GlobalSearchRequest,
108
120
  GlobalSearchResponse,
121
+ MultimodalSearchRequest,
122
+ MultimodalSearchResponse,
109
123
  ReadPageBasicRequest,
110
124
  ReadPageBasicResponseBody,
111
125
  ReadPageBasicResponse,
@@ -0,0 +1,33 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from darabonba.model import DaraModel
6
+
7
+ class MultimodalOriginalQuery(DaraModel):
8
+ def __init__(
9
+ self,
10
+ query: str = None,
11
+ ):
12
+ self.query = query
13
+
14
+ def validate(self):
15
+ pass
16
+
17
+ def to_map(self):
18
+ result = dict()
19
+ _map = super().to_map()
20
+ if _map is not None:
21
+ result = _map
22
+ if self.query is not None:
23
+ result['query'] = self.query
24
+
25
+ return result
26
+
27
+ def from_map(self, m: dict = None):
28
+ m = m or dict()
29
+ if m.get('query') is not None:
30
+ self.query = m.get('query')
31
+
32
+ return self
33
+
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from alibabacloud_iqs20241111 import models as main_models
6
+ from darabonba.model import DaraModel
7
+
8
+ class MultimodalQueryContext(DaraModel):
9
+ def __init__(
10
+ self,
11
+ original_query: main_models.MultimodalOriginalQuery = None,
12
+ ):
13
+ self.original_query = original_query
14
+
15
+ def validate(self):
16
+ if self.original_query:
17
+ self.original_query.validate()
18
+
19
+ def to_map(self):
20
+ result = dict()
21
+ _map = super().to_map()
22
+ if _map is not None:
23
+ result = _map
24
+ if self.original_query is not None:
25
+ result['originalQuery'] = self.original_query.to_map()
26
+
27
+ return result
28
+
29
+ def from_map(self, m: dict = None):
30
+ m = m or dict()
31
+ if m.get('originalQuery') is not None:
32
+ temp_model = main_models.MultimodalOriginalQuery()
33
+ self.original_query = temp_model.from_map(m.get('originalQuery'))
34
+
35
+ return self
36
+
@@ -0,0 +1,43 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from typing import Dict, Any
6
+
7
+ from darabonba.model import DaraModel
8
+
9
+ class MultimodalSearchBody(DaraModel):
10
+ def __init__(
11
+ self,
12
+ advanced_params: Dict[str, Any] = None,
13
+ query: str = None,
14
+ ):
15
+ self.advanced_params = advanced_params
16
+ self.query = query
17
+
18
+ def validate(self):
19
+ pass
20
+
21
+ def to_map(self):
22
+ result = dict()
23
+ _map = super().to_map()
24
+ if _map is not None:
25
+ result = _map
26
+ if self.advanced_params is not None:
27
+ result['advancedParams'] = self.advanced_params
28
+
29
+ if self.query is not None:
30
+ result['query'] = self.query
31
+
32
+ return result
33
+
34
+ def from_map(self, m: dict = None):
35
+ m = m or dict()
36
+ if m.get('advancedParams') is not None:
37
+ self.advanced_params = m.get('advancedParams')
38
+
39
+ if m.get('query') is not None:
40
+ self.query = m.get('query')
41
+
42
+ return self
43
+
@@ -0,0 +1,74 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from typing import List
6
+
7
+ from alibabacloud_iqs20241111 import models as main_models
8
+ from darabonba.model import DaraModel
9
+
10
+ class MultimodalSearchOutput(DaraModel):
11
+ def __init__(
12
+ self,
13
+ image_items: List[main_models.UnifiedImageItem] = None,
14
+ query_context: main_models.MultimodalQueryContext = None,
15
+ request_id: str = None,
16
+ search_information: main_models.SearchInformation = None,
17
+ ):
18
+ self.image_items = image_items
19
+ self.query_context = query_context
20
+ self.request_id = request_id
21
+ self.search_information = search_information
22
+
23
+ def validate(self):
24
+ if self.image_items:
25
+ for v1 in self.image_items:
26
+ if v1:
27
+ v1.validate()
28
+ if self.query_context:
29
+ self.query_context.validate()
30
+ if self.search_information:
31
+ self.search_information.validate()
32
+
33
+ def to_map(self):
34
+ result = dict()
35
+ _map = super().to_map()
36
+ if _map is not None:
37
+ result = _map
38
+ result['imageItems'] = []
39
+ if self.image_items is not None:
40
+ for k1 in self.image_items:
41
+ result['imageItems'].append(k1.to_map() if k1 else None)
42
+
43
+ if self.query_context is not None:
44
+ result['queryContext'] = self.query_context.to_map()
45
+
46
+ if self.request_id is not None:
47
+ result['requestId'] = self.request_id
48
+
49
+ if self.search_information is not None:
50
+ result['searchInformation'] = self.search_information.to_map()
51
+
52
+ return result
53
+
54
+ def from_map(self, m: dict = None):
55
+ m = m or dict()
56
+ self.image_items = []
57
+ if m.get('imageItems') is not None:
58
+ for k1 in m.get('imageItems'):
59
+ temp_model = main_models.UnifiedImageItem()
60
+ self.image_items.append(temp_model.from_map(k1))
61
+
62
+ if m.get('queryContext') is not None:
63
+ temp_model = main_models.MultimodalQueryContext()
64
+ self.query_context = temp_model.from_map(m.get('queryContext'))
65
+
66
+ if m.get('requestId') is not None:
67
+ self.request_id = m.get('requestId')
68
+
69
+ if m.get('searchInformation') is not None:
70
+ temp_model = main_models.SearchInformation()
71
+ self.search_information = temp_model.from_map(m.get('searchInformation'))
72
+
73
+ return self
74
+
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from alibabacloud_iqs20241111 import models as main_models
6
+ from darabonba.model import DaraModel
7
+
8
+ class MultimodalSearchRequest(DaraModel):
9
+ def __init__(
10
+ self,
11
+ body: main_models.MultimodalSearchBody = None,
12
+ ):
13
+ self.body = body
14
+
15
+ def validate(self):
16
+ if self.body:
17
+ self.body.validate()
18
+
19
+ def to_map(self):
20
+ result = dict()
21
+ _map = super().to_map()
22
+ if _map is not None:
23
+ result = _map
24
+ if self.body is not None:
25
+ result['body'] = self.body.to_map()
26
+
27
+ return result
28
+
29
+ def from_map(self, m: dict = None):
30
+ m = m or dict()
31
+ if m.get('body') is not None:
32
+ temp_model = main_models.MultimodalSearchBody()
33
+ self.body = temp_model.from_map(m.get('body'))
34
+
35
+ return self
36
+
@@ -0,0 +1,54 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from typing import Dict
6
+
7
+ from alibabacloud_iqs20241111 import models as main_models
8
+ from darabonba.model import DaraModel
9
+
10
+ class MultimodalSearchResponse(DaraModel):
11
+ def __init__(
12
+ self,
13
+ headers: Dict[str, str] = None,
14
+ status_code: int = None,
15
+ body: main_models.MultimodalSearchOutput = None,
16
+ ):
17
+ self.headers = headers
18
+ self.status_code = status_code
19
+ self.body = body
20
+
21
+ def validate(self):
22
+ if self.body:
23
+ self.body.validate()
24
+
25
+ def to_map(self):
26
+ result = dict()
27
+ _map = super().to_map()
28
+ if _map is not None:
29
+ result = _map
30
+ if self.headers is not None:
31
+ result['headers'] = self.headers
32
+
33
+ if self.status_code is not None:
34
+ result['statusCode'] = self.status_code
35
+
36
+ if self.body is not None:
37
+ result['body'] = self.body.to_map()
38
+
39
+ return result
40
+
41
+ def from_map(self, m: dict = None):
42
+ m = m or dict()
43
+ if m.get('headers') is not None:
44
+ self.headers = m.get('headers')
45
+
46
+ if m.get('statusCode') is not None:
47
+ self.status_code = m.get('statusCode')
48
+
49
+ if m.get('body') is not None:
50
+ temp_model = main_models.MultimodalSearchOutput()
51
+ self.body = temp_model.from_map(m.get('body'))
52
+
53
+ return self
54
+
@@ -0,0 +1,73 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from darabonba.model import DaraModel
6
+
7
+ class UnifiedImageItem(DaraModel):
8
+ def __init__(
9
+ self,
10
+ height: int = None,
11
+ host_page_url: str = None,
12
+ image_url: str = None,
13
+ published_time: str = None,
14
+ title: str = None,
15
+ width: int = None,
16
+ ):
17
+ self.height = height
18
+ self.host_page_url = host_page_url
19
+ self.image_url = image_url
20
+ self.published_time = published_time
21
+ self.title = title
22
+ self.width = width
23
+
24
+ def validate(self):
25
+ pass
26
+
27
+ def to_map(self):
28
+ result = dict()
29
+ _map = super().to_map()
30
+ if _map is not None:
31
+ result = _map
32
+ if self.height is not None:
33
+ result['height'] = self.height
34
+
35
+ if self.host_page_url is not None:
36
+ result['hostPageUrl'] = self.host_page_url
37
+
38
+ if self.image_url is not None:
39
+ result['imageUrl'] = self.image_url
40
+
41
+ if self.published_time is not None:
42
+ result['publishedTime'] = self.published_time
43
+
44
+ if self.title is not None:
45
+ result['title'] = self.title
46
+
47
+ if self.width is not None:
48
+ result['width'] = self.width
49
+
50
+ return result
51
+
52
+ def from_map(self, m: dict = None):
53
+ m = m or dict()
54
+ if m.get('height') is not None:
55
+ self.height = m.get('height')
56
+
57
+ if m.get('hostPageUrl') is not None:
58
+ self.host_page_url = m.get('hostPageUrl')
59
+
60
+ if m.get('imageUrl') is not None:
61
+ self.image_url = m.get('imageUrl')
62
+
63
+ if m.get('publishedTime') is not None:
64
+ self.published_time = m.get('publishedTime')
65
+
66
+ if m.get('title') is not None:
67
+ self.title = m.get('title')
68
+
69
+ if m.get('width') is not None:
70
+ self.width = m.get('width')
71
+
72
+ return self
73
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-iqs20241111
3
- Version: 1.6.4
3
+ Version: 1.7.0
4
4
  Summary: Alibaba Cloud IQS (20241111) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -23,7 +23,7 @@ Classifier: Topic :: Software Development
23
23
  Requires-Python: >=3.7
24
24
  Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
- Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.1)
26
+ Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.3)
27
27
  Requires-Dist: darabonba-core (<2.0.0,>=1.0.0)
28
28
 
29
29
  English | [简体中文](README-CN.md)
@@ -1,6 +1,6 @@
1
- alibabacloud_iqs20241111/__init__.py,sha256=SYr0LprpS-tlhgFa5XL931O41S7Rx6lazRpIiztzOes,21
2
- alibabacloud_iqs20241111/client.py,sha256=ImYpR4QEh5aIkxGnz1VEHm26XuE3-po5Ogu1X4LaDNA,31065
3
- alibabacloud_iqs20241111/models/__init__.py,sha256=63jBtmF1kYtgbXhPSzSV_cFb2daZwsKukXwoVomA-oM,5063
1
+ alibabacloud_iqs20241111/__init__.py,sha256=ZUl2xcRi75lbPrlvl0NxpUt61vfrXEhe0YCcbPhhIX0,21
2
+ alibabacloud_iqs20241111/client.py,sha256=ukmnossL2oAdpNr2NogdR84lBjDSivhkyZw0gL2EIAQ,33565
3
+ alibabacloud_iqs20241111/models/__init__.py,sha256=SVMGozhOxXxrQDwGmMKWSeAra9DsG3r1ghfcenFGMeg,5681
4
4
  alibabacloud_iqs20241111/models/_ai_search_request.py,sha256=c4kANL3YAx2Uyy2jAmvOS6YMvUaHJ6PwdbZ80FXl0Co,1701
5
5
  alibabacloud_iqs20241111/models/_ai_search_response.py,sha256=uF7Cq1687GZaAHwU4fU8zrtkj56dRmBoexeCXnTud1A,1456
6
6
  alibabacloud_iqs20241111/models/_ai_search_response_body.py,sha256=OX-TGwupbzG26EB_ogl0i0J6bnI6pf8_rZ9NeYFnhyc,6588
@@ -23,6 +23,12 @@ alibabacloud_iqs20241111/models/_global_search_response.py,sha256=ZpLBvKN0GUHEav
23
23
  alibabacloud_iqs20241111/models/_global_search_result.py,sha256=XP0Errurco0CPzeEyUMUwe02GWpvtYGE6-RCmeBK7G0,3139
24
24
  alibabacloud_iqs20241111/models/_include_image.py,sha256=BxXqdahHV5pFTS-PM_iby694TB8n6sJfoXCClWhhmt0,1187
25
25
  alibabacloud_iqs20241111/models/_location_info.py,sha256=AMIMLAzqrYPjXVtK5Ag35WqE6PbPmtSm7uTFcapsW2o,889
26
+ alibabacloud_iqs20241111/models/_multimodal_original_query.py,sha256=kDbQaAPuGDvy6xh2DGWkoqrJHK7H_N6MKU1xKyZwlzE,725
27
+ alibabacloud_iqs20241111/models/_multimodal_query_context.py,sha256=QaoXqq53N9lh0ylmKduv4c8evy8iLwbAqh_1XASlO6Q,1048
28
+ alibabacloud_iqs20241111/models/_multimodal_search_body.py,sha256=TjifSWuhjG0cvCV9S-0SIPN64uPwSZGkjHx22jqEMlk,1061
29
+ alibabacloud_iqs20241111/models/_multimodal_search_output.py,sha256=pvHH4MF97GGHJwgSLjevMzex3bjDDP0hIPvJ8dUKVAY,2496
30
+ alibabacloud_iqs20241111/models/_multimodal_search_request.py,sha256=AHY9KCbP4RHgX4aPmgy72PZp7I6C9LenknSCGeyDDw0,936
31
+ alibabacloud_iqs20241111/models/_multimodal_search_response.py,sha256=EKl4RdwtBuR3Q_FWsfpK2zSqgJoP01rcEZ1WwKPkiQ8,1468
26
32
  alibabacloud_iqs20241111/models/_query_context.py,sha256=6gWrGdNMf61kiaJyT54fwu8YtE8jHdt_fSEngZtUqes,3556
27
33
  alibabacloud_iqs20241111/models/_read_page_basic_request.py,sha256=5Gshtpz2O9ohTIR9xDBzcXCULFCfnFjeoODN32Z2WdM,937
28
34
  alibabacloud_iqs20241111/models/_read_page_basic_response.py,sha256=H8Ea-nU56n0CYnqDDZrhoWlaCZzU8SQKflbbu4lYmaU,1471
@@ -39,6 +45,7 @@ alibabacloud_iqs20241111/models/_score_page_item.py,sha256=lMEefC0P-SCLIxmXKL4m9
39
45
  alibabacloud_iqs20241111/models/_search_credits.py,sha256=ZGx6InjDZeaZs4g8W5kpflQLzw8zyZHMjZIdEY9J_nY,1217
40
46
  alibabacloud_iqs20241111/models/_search_information.py,sha256=uD5b3dSXDZiAQmtmI_UKNYizowi8zZlMhUWuBXGRb_U,981
41
47
  alibabacloud_iqs20241111/models/_unified_cost_credits.py,sha256=Qxi9sbhPUbebCwuQlYX-T2TMg01XbDoXjJz-HXhMDmI,1383
48
+ alibabacloud_iqs20241111/models/_unified_image_item.py,sha256=Fa4PH_I3EaEAZ7p9NuxvoFoSHfBpUA3Nrb2OTpZVrNg,1959
42
49
  alibabacloud_iqs20241111/models/_unified_original_query.py,sha256=EfDoO8u9sOZA1oV6Le4FsQjUnSDT6bOLzkihFqnfVnY,975
43
50
  alibabacloud_iqs20241111/models/_unified_page_item.py,sha256=vzZMywUWAiD37iLIDdFTC6dZrsdk6nXiEtu9biP65V4,4489
44
51
  alibabacloud_iqs20241111/models/_unified_query_context.py,sha256=EJ9PuHSGu80Z4x0_vioC2RsuaHSA3OD2BTV5dPa7tog,1698
@@ -51,8 +58,8 @@ alibabacloud_iqs20241111/models/_unified_search_request.py,sha256=SINEAvfURfAxeQ
51
58
  alibabacloud_iqs20241111/models/_unified_search_response.py,sha256=gnnx5oW6CJ6z-It341UYU7LQvIMgKfsUS57rSsejWDM,1459
52
59
  alibabacloud_iqs20241111/models/_value_added_credits.py,sha256=_p8Di73H44dcelcEWjl-yp4wVD2U62V0TRGeTlE9w74,975
53
60
  alibabacloud_iqs20241111/models/_weibo_item.py,sha256=ZRKVB-XSqG_HP15PaWZKRQxA0SX3ObB5bp5LAKb-Gew,2478
54
- alibabacloud_iqs20241111-1.6.4.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
55
- alibabacloud_iqs20241111-1.6.4.dist-info/METADATA,sha256=VIZobQqEB9lQxB6SHRMub9j_FYo4WCaGjOgxpKAenJE,2289
56
- alibabacloud_iqs20241111-1.6.4.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
57
- alibabacloud_iqs20241111-1.6.4.dist-info/top_level.txt,sha256=DCTUMSkrMH7RuTTLUEqGJeM2_EXN79YXzwpAtYbk-bU,25
58
- alibabacloud_iqs20241111-1.6.4.dist-info/RECORD,,
61
+ alibabacloud_iqs20241111-1.7.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
62
+ alibabacloud_iqs20241111-1.7.0.dist-info/METADATA,sha256=ropVxq51t_zU4_Kz3_nU7ndGV73y7Aa6O_yDlXNa_NA,2289
63
+ alibabacloud_iqs20241111-1.7.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
64
+ alibabacloud_iqs20241111-1.7.0.dist-info/top_level.txt,sha256=DCTUMSkrMH7RuTTLUEqGJeM2_EXN79YXzwpAtYbk-bU,25
65
+ alibabacloud_iqs20241111-1.7.0.dist-info/RECORD,,