alibabacloud-iqs20241111 1.6.0__tar.gz → 1.6.1__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.
Files changed (17) hide show
  1. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/ChangeLog.md +5 -0
  2. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/PKG-INFO +1 -1
  3. alibabacloud_iqs20241111-1.6.1/alibabacloud_iqs20241111/__init__.py +1 -0
  4. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/alibabacloud_iqs20241111/models.py +12 -0
  5. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/alibabacloud_iqs20241111.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/setup.py +1 -1
  7. alibabacloud_iqs20241111-1.6.0/alibabacloud_iqs20241111/__init__.py +0 -1
  8. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/LICENSE +0 -0
  9. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/MANIFEST.in +0 -0
  10. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/README-CN.md +0 -0
  11. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/README.md +0 -0
  12. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/alibabacloud_iqs20241111/client.py +0 -0
  13. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/alibabacloud_iqs20241111.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/alibabacloud_iqs20241111.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/alibabacloud_iqs20241111.egg-info/requires.txt +0 -0
  16. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/alibabacloud_iqs20241111.egg-info/top_level.txt +0 -0
  17. {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.1}/setup.cfg +0 -0
@@ -1,3 +1,8 @@
1
+ 2025-10-29 Version: 1.6.0
2
+ - Support API ReadPageScrape.
3
+ - Update API GenericSearch: add request parameters advancedParams.
4
+
5
+
1
6
  2025-10-10 Version: 1.5.2
2
7
  - Generated python 2024-11-11 for IQS.
3
8
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_iqs20241111
3
- Version: 1.6.0
3
+ Version: 1.6.1
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
@@ -0,0 +1 @@
1
+ __version__ = '1.6.1'
@@ -135,6 +135,7 @@ class ScorePageItem(TeaModel):
135
135
  snippet: str = None,
136
136
  summary: str = None,
137
137
  title: str = None,
138
+ website_authority_score: int = None,
138
139
  ):
139
140
  # This parameter is required.
140
141
  self.card_type = card_type
@@ -163,6 +164,7 @@ class ScorePageItem(TeaModel):
163
164
  self.summary = summary
164
165
  # This parameter is required.
165
166
  self.title = title
167
+ self.website_authority_score = website_authority_score
166
168
 
167
169
  def validate(self):
168
170
  if self.images:
@@ -218,6 +220,8 @@ class ScorePageItem(TeaModel):
218
220
  result['summary'] = self.summary
219
221
  if self.title is not None:
220
222
  result['title'] = self.title
223
+ if self.website_authority_score is not None:
224
+ result['websiteAuthorityScore'] = self.website_authority_score
221
225
  return result
222
226
 
223
227
  def from_map(self, m: dict = None):
@@ -265,6 +269,8 @@ class ScorePageItem(TeaModel):
265
269
  self.summary = m.get('summary')
266
270
  if m.get('title') is not None:
267
271
  self.title = m.get('title')
272
+ if m.get('websiteAuthorityScore') is not None:
273
+ self.website_authority_score = m.get('websiteAuthorityScore')
268
274
  return self
269
275
 
270
276
 
@@ -1472,6 +1478,7 @@ class UnifiedPageItem(TeaModel):
1472
1478
  snippet: str = None,
1473
1479
  summary: str = None,
1474
1480
  title: str = None,
1481
+ website_authority_score: int = None,
1475
1482
  ):
1476
1483
  self.host_authority_score = host_authority_score
1477
1484
  self.host_logo = host_logo
@@ -1486,6 +1493,7 @@ class UnifiedPageItem(TeaModel):
1486
1493
  self.snippet = snippet
1487
1494
  self.summary = summary
1488
1495
  self.title = title
1496
+ self.website_authority_score = website_authority_score
1489
1497
 
1490
1498
  def validate(self):
1491
1499
  pass
@@ -1522,6 +1530,8 @@ class UnifiedPageItem(TeaModel):
1522
1530
  result['summary'] = self.summary
1523
1531
  if self.title is not None:
1524
1532
  result['title'] = self.title
1533
+ if self.website_authority_score is not None:
1534
+ result['websiteAuthorityScore'] = self.website_authority_score
1525
1535
  return result
1526
1536
 
1527
1537
  def from_map(self, m: dict = None):
@@ -1552,6 +1562,8 @@ class UnifiedPageItem(TeaModel):
1552
1562
  self.summary = m.get('summary')
1553
1563
  if m.get('title') is not None:
1554
1564
  self.title = m.get('title')
1565
+ if m.get('websiteAuthorityScore') is not None:
1566
+ self.website_authority_score = m.get('websiteAuthorityScore')
1555
1567
  return self
1556
1568
 
1557
1569
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-iqs20241111
3
- Version: 1.6.0
3
+ Version: 1.6.1
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
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_iqs20241111.
26
26
 
27
- Created on 29/10/2025
27
+ Created on 24/11/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '1.6.0'