alibabacloud-iqs20241111 1.5.0__tar.gz → 1.5.2__tar.gz
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_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/ChangeLog.md +8 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/PKG-INFO +1 -1
- alibabacloud_iqs20241111-1.5.2/alibabacloud_iqs20241111/__init__.py +1 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111/models.py +12 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111.egg-info/PKG-INFO +1 -1
- alibabacloud_iqs20241111-1.5.0/alibabacloud_iqs20241111/__init__.py +0 -1
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/LICENSE +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/MANIFEST.in +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/README-CN.md +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/README.md +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111/client.py +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111.egg-info/SOURCES.txt +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111.egg-info/dependency_links.txt +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111.egg-info/requires.txt +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111.egg-info/top_level.txt +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/setup.cfg +0 -0
- {alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/setup.py +0 -0
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
2025-10-10 Version: 1.5.1
|
|
2
|
+
- Generated python 2024-11-11 for IQS.
|
|
3
|
+
|
|
4
|
+
2025-10-10 Version: 1.5.0
|
|
5
|
+
- Support API ReadPageBasic.
|
|
6
|
+
- Update API GenericSearch: add request parameters returnRichMainBody.
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
2025-09-08 Version: 1.4.3
|
|
2
10
|
- Generated python 2024-11-11 for IQS.
|
|
3
11
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.5.2'
|
{alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111/models.py
RENAMED
|
@@ -129,6 +129,7 @@ class ScorePageItem(TeaModel):
|
|
|
129
129
|
mime: str = None,
|
|
130
130
|
page_map: Dict[str, str] = None,
|
|
131
131
|
publish_time: int = None,
|
|
132
|
+
rich_main_body: str = None,
|
|
132
133
|
score: float = None,
|
|
133
134
|
site_label: str = None,
|
|
134
135
|
snippet: str = None,
|
|
@@ -155,6 +156,7 @@ class ScorePageItem(TeaModel):
|
|
|
155
156
|
self.page_map = page_map
|
|
156
157
|
# This parameter is required.
|
|
157
158
|
self.publish_time = publish_time
|
|
159
|
+
self.rich_main_body = rich_main_body
|
|
158
160
|
self.score = score
|
|
159
161
|
self.site_label = site_label
|
|
160
162
|
self.snippet = snippet
|
|
@@ -204,6 +206,8 @@ class ScorePageItem(TeaModel):
|
|
|
204
206
|
result['pageMap'] = self.page_map
|
|
205
207
|
if self.publish_time is not None:
|
|
206
208
|
result['publishTime'] = self.publish_time
|
|
209
|
+
if self.rich_main_body is not None:
|
|
210
|
+
result['richMainBody'] = self.rich_main_body
|
|
207
211
|
if self.score is not None:
|
|
208
212
|
result['score'] = self.score
|
|
209
213
|
if self.site_label is not None:
|
|
@@ -249,6 +253,8 @@ class ScorePageItem(TeaModel):
|
|
|
249
253
|
self.page_map = m.get('pageMap')
|
|
250
254
|
if m.get('publishTime') is not None:
|
|
251
255
|
self.publish_time = m.get('publishTime')
|
|
256
|
+
if m.get('richMainBody') is not None:
|
|
257
|
+
self.rich_main_body = m.get('richMainBody')
|
|
252
258
|
if m.get('score') is not None:
|
|
253
259
|
self.score = m.get('score')
|
|
254
260
|
if m.get('siteLabel') is not None:
|
|
@@ -1345,6 +1351,7 @@ class UnifiedPageItem(TeaModel):
|
|
|
1345
1351
|
markdown_text: str = None,
|
|
1346
1352
|
published_time: str = None,
|
|
1347
1353
|
rerank_score: float = None,
|
|
1354
|
+
rich_main_body: str = None,
|
|
1348
1355
|
snippet: str = None,
|
|
1349
1356
|
summary: str = None,
|
|
1350
1357
|
title: str = None,
|
|
@@ -1358,6 +1365,7 @@ class UnifiedPageItem(TeaModel):
|
|
|
1358
1365
|
self.markdown_text = markdown_text
|
|
1359
1366
|
self.published_time = published_time
|
|
1360
1367
|
self.rerank_score = rerank_score
|
|
1368
|
+
self.rich_main_body = rich_main_body
|
|
1361
1369
|
self.snippet = snippet
|
|
1362
1370
|
self.summary = summary
|
|
1363
1371
|
self.title = title
|
|
@@ -1389,6 +1397,8 @@ class UnifiedPageItem(TeaModel):
|
|
|
1389
1397
|
result['publishedTime'] = self.published_time
|
|
1390
1398
|
if self.rerank_score is not None:
|
|
1391
1399
|
result['rerankScore'] = self.rerank_score
|
|
1400
|
+
if self.rich_main_body is not None:
|
|
1401
|
+
result['richMainBody'] = self.rich_main_body
|
|
1392
1402
|
if self.snippet is not None:
|
|
1393
1403
|
result['snippet'] = self.snippet
|
|
1394
1404
|
if self.summary is not None:
|
|
@@ -1417,6 +1427,8 @@ class UnifiedPageItem(TeaModel):
|
|
|
1417
1427
|
self.published_time = m.get('publishedTime')
|
|
1418
1428
|
if m.get('rerankScore') is not None:
|
|
1419
1429
|
self.rerank_score = m.get('rerankScore')
|
|
1430
|
+
if m.get('richMainBody') is not None:
|
|
1431
|
+
self.rich_main_body = m.get('richMainBody')
|
|
1420
1432
|
if m.get('snippet') is not None:
|
|
1421
1433
|
self.snippet = m.get('snippet')
|
|
1422
1434
|
if m.get('summary') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.5.0'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alibabacloud_iqs20241111-1.5.0 → alibabacloud_iqs20241111-1.5.2}/alibabacloud_iqs20241111/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|