alibabacloud-iqs20241111 1.6.1__tar.gz → 1.6.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.
Files changed (17) hide show
  1. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/ChangeLog.md +3 -0
  2. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/PKG-INFO +1 -1
  3. alibabacloud_iqs20241111-1.6.2/alibabacloud_iqs20241111/__init__.py +1 -0
  4. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111/models.py +12 -0
  5. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/setup.py +1 -1
  7. alibabacloud_iqs20241111-1.6.1/alibabacloud_iqs20241111/__init__.py +0 -1
  8. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/LICENSE +0 -0
  9. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/MANIFEST.in +0 -0
  10. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/README-CN.md +0 -0
  11. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/README.md +0 -0
  12. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111/client.py +0 -0
  13. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/requires.txt +0 -0
  16. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/top_level.txt +0 -0
  17. {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.2}/setup.cfg +0 -0
@@ -1,3 +1,6 @@
1
+ 2025-11-24 Version: 1.6.1
2
+ - Generated python 2024-11-11 for IQS.
3
+
1
4
  2025-10-29 Version: 1.6.0
2
5
  - Support API ReadPageScrape.
3
6
  - Update API GenericSearch: add request parameters advancedParams.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_iqs20241111
3
- Version: 1.6.1
3
+ Version: 1.6.2
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.2'
@@ -116,6 +116,7 @@ class ScorePageItem(TeaModel):
116
116
  def __init__(
117
117
  self,
118
118
  card_type: str = None,
119
+ correlation_tag: int = None,
119
120
  display_link: str = None,
120
121
  host_authority_score: float = None,
121
122
  host_logo: str = None,
@@ -139,6 +140,7 @@ class ScorePageItem(TeaModel):
139
140
  ):
140
141
  # This parameter is required.
141
142
  self.card_type = card_type
143
+ self.correlation_tag = correlation_tag
142
144
  # This parameter is required.
143
145
  self.display_link = display_link
144
146
  self.host_authority_score = host_authority_score
@@ -180,6 +182,8 @@ class ScorePageItem(TeaModel):
180
182
  result = dict()
181
183
  if self.card_type is not None:
182
184
  result['cardType'] = self.card_type
185
+ if self.correlation_tag is not None:
186
+ result['correlationTag'] = self.correlation_tag
183
187
  if self.display_link is not None:
184
188
  result['displayLink'] = self.display_link
185
189
  if self.host_authority_score is not None:
@@ -228,6 +232,8 @@ class ScorePageItem(TeaModel):
228
232
  m = m or dict()
229
233
  if m.get('cardType') is not None:
230
234
  self.card_type = m.get('cardType')
235
+ if m.get('correlationTag') is not None:
236
+ self.correlation_tag = m.get('correlationTag')
231
237
  if m.get('displayLink') is not None:
232
238
  self.display_link = m.get('displayLink')
233
239
  if m.get('hostAuthorityScore') is not None:
@@ -1465,6 +1471,7 @@ class UnifiedOriginalQuery(TeaModel):
1465
1471
  class UnifiedPageItem(TeaModel):
1466
1472
  def __init__(
1467
1473
  self,
1474
+ correlation_tag: int = None,
1468
1475
  host_authority_score: float = None,
1469
1476
  host_logo: str = None,
1470
1477
  hostname: str = None,
@@ -1480,6 +1487,7 @@ class UnifiedPageItem(TeaModel):
1480
1487
  title: str = None,
1481
1488
  website_authority_score: int = None,
1482
1489
  ):
1490
+ self.correlation_tag = correlation_tag
1483
1491
  self.host_authority_score = host_authority_score
1484
1492
  self.host_logo = host_logo
1485
1493
  self.hostname = hostname
@@ -1504,6 +1512,8 @@ class UnifiedPageItem(TeaModel):
1504
1512
  return _map
1505
1513
 
1506
1514
  result = dict()
1515
+ if self.correlation_tag is not None:
1516
+ result['correlationTag'] = self.correlation_tag
1507
1517
  if self.host_authority_score is not None:
1508
1518
  result['hostAuthorityScore'] = self.host_authority_score
1509
1519
  if self.host_logo is not None:
@@ -1536,6 +1546,8 @@ class UnifiedPageItem(TeaModel):
1536
1546
 
1537
1547
  def from_map(self, m: dict = None):
1538
1548
  m = m or dict()
1549
+ if m.get('correlationTag') is not None:
1550
+ self.correlation_tag = m.get('correlationTag')
1539
1551
  if m.get('hostAuthorityScore') is not None:
1540
1552
  self.host_authority_score = m.get('hostAuthorityScore')
1541
1553
  if m.get('hostLogo') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-iqs20241111
3
- Version: 1.6.1
3
+ Version: 1.6.2
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 24/11/2025
27
+ Created on 03/12/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '1.6.1'