alibabacloud-iqs20241111 1.6.0__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.
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/ChangeLog.md +8 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/PKG-INFO +1 -1
- alibabacloud_iqs20241111-1.6.2/alibabacloud_iqs20241111/__init__.py +1 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111/models.py +24 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/PKG-INFO +1 -1
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/setup.py +1 -1
- alibabacloud_iqs20241111-1.6.0/alibabacloud_iqs20241111/__init__.py +0 -1
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/LICENSE +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/MANIFEST.in +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/README-CN.md +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/README.md +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111/client.py +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/SOURCES.txt +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/dependency_links.txt +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/requires.txt +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111.egg-info/top_level.txt +0 -0
- {alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/setup.cfg +0 -0
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
2025-11-24 Version: 1.6.1
|
|
2
|
+
- Generated python 2024-11-11 for IQS.
|
|
3
|
+
|
|
4
|
+
2025-10-29 Version: 1.6.0
|
|
5
|
+
- Support API ReadPageScrape.
|
|
6
|
+
- Update API GenericSearch: add request parameters advancedParams.
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
2025-10-10 Version: 1.5.2
|
|
2
10
|
- Generated python 2024-11-11 for IQS.
|
|
3
11
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.6.2'
|
{alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111/models.py
RENAMED
|
@@ -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,
|
|
@@ -135,9 +136,11 @@ class ScorePageItem(TeaModel):
|
|
|
135
136
|
snippet: str = None,
|
|
136
137
|
summary: str = None,
|
|
137
138
|
title: str = None,
|
|
139
|
+
website_authority_score: int = None,
|
|
138
140
|
):
|
|
139
141
|
# This parameter is required.
|
|
140
142
|
self.card_type = card_type
|
|
143
|
+
self.correlation_tag = correlation_tag
|
|
141
144
|
# This parameter is required.
|
|
142
145
|
self.display_link = display_link
|
|
143
146
|
self.host_authority_score = host_authority_score
|
|
@@ -163,6 +166,7 @@ class ScorePageItem(TeaModel):
|
|
|
163
166
|
self.summary = summary
|
|
164
167
|
# This parameter is required.
|
|
165
168
|
self.title = title
|
|
169
|
+
self.website_authority_score = website_authority_score
|
|
166
170
|
|
|
167
171
|
def validate(self):
|
|
168
172
|
if self.images:
|
|
@@ -178,6 +182,8 @@ class ScorePageItem(TeaModel):
|
|
|
178
182
|
result = dict()
|
|
179
183
|
if self.card_type is not None:
|
|
180
184
|
result['cardType'] = self.card_type
|
|
185
|
+
if self.correlation_tag is not None:
|
|
186
|
+
result['correlationTag'] = self.correlation_tag
|
|
181
187
|
if self.display_link is not None:
|
|
182
188
|
result['displayLink'] = self.display_link
|
|
183
189
|
if self.host_authority_score is not None:
|
|
@@ -218,12 +224,16 @@ class ScorePageItem(TeaModel):
|
|
|
218
224
|
result['summary'] = self.summary
|
|
219
225
|
if self.title is not None:
|
|
220
226
|
result['title'] = self.title
|
|
227
|
+
if self.website_authority_score is not None:
|
|
228
|
+
result['websiteAuthorityScore'] = self.website_authority_score
|
|
221
229
|
return result
|
|
222
230
|
|
|
223
231
|
def from_map(self, m: dict = None):
|
|
224
232
|
m = m or dict()
|
|
225
233
|
if m.get('cardType') is not None:
|
|
226
234
|
self.card_type = m.get('cardType')
|
|
235
|
+
if m.get('correlationTag') is not None:
|
|
236
|
+
self.correlation_tag = m.get('correlationTag')
|
|
227
237
|
if m.get('displayLink') is not None:
|
|
228
238
|
self.display_link = m.get('displayLink')
|
|
229
239
|
if m.get('hostAuthorityScore') is not None:
|
|
@@ -265,6 +275,8 @@ class ScorePageItem(TeaModel):
|
|
|
265
275
|
self.summary = m.get('summary')
|
|
266
276
|
if m.get('title') is not None:
|
|
267
277
|
self.title = m.get('title')
|
|
278
|
+
if m.get('websiteAuthorityScore') is not None:
|
|
279
|
+
self.website_authority_score = m.get('websiteAuthorityScore')
|
|
268
280
|
return self
|
|
269
281
|
|
|
270
282
|
|
|
@@ -1459,6 +1471,7 @@ class UnifiedOriginalQuery(TeaModel):
|
|
|
1459
1471
|
class UnifiedPageItem(TeaModel):
|
|
1460
1472
|
def __init__(
|
|
1461
1473
|
self,
|
|
1474
|
+
correlation_tag: int = None,
|
|
1462
1475
|
host_authority_score: float = None,
|
|
1463
1476
|
host_logo: str = None,
|
|
1464
1477
|
hostname: str = None,
|
|
@@ -1472,7 +1485,9 @@ class UnifiedPageItem(TeaModel):
|
|
|
1472
1485
|
snippet: str = None,
|
|
1473
1486
|
summary: str = None,
|
|
1474
1487
|
title: str = None,
|
|
1488
|
+
website_authority_score: int = None,
|
|
1475
1489
|
):
|
|
1490
|
+
self.correlation_tag = correlation_tag
|
|
1476
1491
|
self.host_authority_score = host_authority_score
|
|
1477
1492
|
self.host_logo = host_logo
|
|
1478
1493
|
self.hostname = hostname
|
|
@@ -1486,6 +1501,7 @@ class UnifiedPageItem(TeaModel):
|
|
|
1486
1501
|
self.snippet = snippet
|
|
1487
1502
|
self.summary = summary
|
|
1488
1503
|
self.title = title
|
|
1504
|
+
self.website_authority_score = website_authority_score
|
|
1489
1505
|
|
|
1490
1506
|
def validate(self):
|
|
1491
1507
|
pass
|
|
@@ -1496,6 +1512,8 @@ class UnifiedPageItem(TeaModel):
|
|
|
1496
1512
|
return _map
|
|
1497
1513
|
|
|
1498
1514
|
result = dict()
|
|
1515
|
+
if self.correlation_tag is not None:
|
|
1516
|
+
result['correlationTag'] = self.correlation_tag
|
|
1499
1517
|
if self.host_authority_score is not None:
|
|
1500
1518
|
result['hostAuthorityScore'] = self.host_authority_score
|
|
1501
1519
|
if self.host_logo is not None:
|
|
@@ -1522,10 +1540,14 @@ class UnifiedPageItem(TeaModel):
|
|
|
1522
1540
|
result['summary'] = self.summary
|
|
1523
1541
|
if self.title is not None:
|
|
1524
1542
|
result['title'] = self.title
|
|
1543
|
+
if self.website_authority_score is not None:
|
|
1544
|
+
result['websiteAuthorityScore'] = self.website_authority_score
|
|
1525
1545
|
return result
|
|
1526
1546
|
|
|
1527
1547
|
def from_map(self, m: dict = None):
|
|
1528
1548
|
m = m or dict()
|
|
1549
|
+
if m.get('correlationTag') is not None:
|
|
1550
|
+
self.correlation_tag = m.get('correlationTag')
|
|
1529
1551
|
if m.get('hostAuthorityScore') is not None:
|
|
1530
1552
|
self.host_authority_score = m.get('hostAuthorityScore')
|
|
1531
1553
|
if m.get('hostLogo') is not None:
|
|
@@ -1552,6 +1574,8 @@ class UnifiedPageItem(TeaModel):
|
|
|
1552
1574
|
self.summary = m.get('summary')
|
|
1553
1575
|
if m.get('title') is not None:
|
|
1554
1576
|
self.title = m.get('title')
|
|
1577
|
+
if m.get('websiteAuthorityScore') is not None:
|
|
1578
|
+
self.website_authority_score = m.get('websiteAuthorityScore')
|
|
1555
1579
|
return self
|
|
1556
1580
|
|
|
1557
1581
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.6.0'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alibabacloud_iqs20241111-1.6.0 → alibabacloud_iqs20241111-1.6.2}/alibabacloud_iqs20241111/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|