alibabacloud-iqs20241111 1.6.1__tar.gz → 1.6.3__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.1 → alibabacloud_iqs20241111-1.6.3}/ChangeLog.md +6 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/PKG-INFO +1 -1
- alibabacloud_iqs20241111-1.6.3/alibabacloud_iqs20241111/__init__.py +1 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/models.py +54 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/PKG-INFO +1 -1
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/setup.py +1 -1
- alibabacloud_iqs20241111-1.6.1/alibabacloud_iqs20241111/__init__.py +0 -1
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/LICENSE +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/MANIFEST.in +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/README-CN.md +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/README.md +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/client.py +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/SOURCES.txt +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/dependency_links.txt +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/requires.txt +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/top_level.txt +0 -0
- {alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/setup.cfg +0 -0
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
2025-12-03 Version: 1.6.2
|
|
2
|
+
- Generated python 2024-11-11 for IQS.
|
|
3
|
+
|
|
4
|
+
2025-11-24 Version: 1.6.1
|
|
5
|
+
- Generated python 2024-11-11 for IQS.
|
|
6
|
+
|
|
1
7
|
2025-10-29 Version: 1.6.0
|
|
2
8
|
- Support API ReadPageScrape.
|
|
3
9
|
- Update API GenericSearch: add request parameters advancedParams.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.6.3'
|
{alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/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,
|
|
@@ -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:
|
|
@@ -989,6 +995,39 @@ class GlobalSearchResult(TeaModel):
|
|
|
989
995
|
return self
|
|
990
996
|
|
|
991
997
|
|
|
998
|
+
class LocationInfo(TeaModel):
|
|
999
|
+
def __init__(
|
|
1000
|
+
self,
|
|
1001
|
+
city: str = None,
|
|
1002
|
+
ip: str = None,
|
|
1003
|
+
):
|
|
1004
|
+
self.city = city
|
|
1005
|
+
self.ip = ip
|
|
1006
|
+
|
|
1007
|
+
def validate(self):
|
|
1008
|
+
pass
|
|
1009
|
+
|
|
1010
|
+
def to_map(self):
|
|
1011
|
+
_map = super().to_map()
|
|
1012
|
+
if _map is not None:
|
|
1013
|
+
return _map
|
|
1014
|
+
|
|
1015
|
+
result = dict()
|
|
1016
|
+
if self.city is not None:
|
|
1017
|
+
result['city'] = self.city
|
|
1018
|
+
if self.ip is not None:
|
|
1019
|
+
result['ip'] = self.ip
|
|
1020
|
+
return result
|
|
1021
|
+
|
|
1022
|
+
def from_map(self, m: dict = None):
|
|
1023
|
+
m = m or dict()
|
|
1024
|
+
if m.get('city') is not None:
|
|
1025
|
+
self.city = m.get('city')
|
|
1026
|
+
if m.get('ip') is not None:
|
|
1027
|
+
self.ip = m.get('ip')
|
|
1028
|
+
return self
|
|
1029
|
+
|
|
1030
|
+
|
|
992
1031
|
class ReadPageBodyReadability(TeaModel):
|
|
993
1032
|
def __init__(
|
|
994
1033
|
self,
|
|
@@ -1465,6 +1504,7 @@ class UnifiedOriginalQuery(TeaModel):
|
|
|
1465
1504
|
class UnifiedPageItem(TeaModel):
|
|
1466
1505
|
def __init__(
|
|
1467
1506
|
self,
|
|
1507
|
+
correlation_tag: int = None,
|
|
1468
1508
|
host_authority_score: float = None,
|
|
1469
1509
|
host_logo: str = None,
|
|
1470
1510
|
hostname: str = None,
|
|
@@ -1480,6 +1520,7 @@ class UnifiedPageItem(TeaModel):
|
|
|
1480
1520
|
title: str = None,
|
|
1481
1521
|
website_authority_score: int = None,
|
|
1482
1522
|
):
|
|
1523
|
+
self.correlation_tag = correlation_tag
|
|
1483
1524
|
self.host_authority_score = host_authority_score
|
|
1484
1525
|
self.host_logo = host_logo
|
|
1485
1526
|
self.hostname = hostname
|
|
@@ -1504,6 +1545,8 @@ class UnifiedPageItem(TeaModel):
|
|
|
1504
1545
|
return _map
|
|
1505
1546
|
|
|
1506
1547
|
result = dict()
|
|
1548
|
+
if self.correlation_tag is not None:
|
|
1549
|
+
result['correlationTag'] = self.correlation_tag
|
|
1507
1550
|
if self.host_authority_score is not None:
|
|
1508
1551
|
result['hostAuthorityScore'] = self.host_authority_score
|
|
1509
1552
|
if self.host_logo is not None:
|
|
@@ -1536,6 +1579,8 @@ class UnifiedPageItem(TeaModel):
|
|
|
1536
1579
|
|
|
1537
1580
|
def from_map(self, m: dict = None):
|
|
1538
1581
|
m = m or dict()
|
|
1582
|
+
if m.get('correlationTag') is not None:
|
|
1583
|
+
self.correlation_tag = m.get('correlationTag')
|
|
1539
1584
|
if m.get('hostAuthorityScore') is not None:
|
|
1540
1585
|
self.host_authority_score = m.get('hostAuthorityScore')
|
|
1541
1586
|
if m.get('hostLogo') is not None:
|
|
@@ -1712,6 +1757,7 @@ class UnifiedSearchInput(TeaModel):
|
|
|
1712
1757
|
contents: RequestContents = None,
|
|
1713
1758
|
engine_type: str = None,
|
|
1714
1759
|
location: str = None,
|
|
1760
|
+
location_info: LocationInfo = None,
|
|
1715
1761
|
query: str = None,
|
|
1716
1762
|
time_range: str = None,
|
|
1717
1763
|
):
|
|
@@ -1720,12 +1766,15 @@ class UnifiedSearchInput(TeaModel):
|
|
|
1720
1766
|
self.contents = contents
|
|
1721
1767
|
self.engine_type = engine_type
|
|
1722
1768
|
self.location = location
|
|
1769
|
+
self.location_info = location_info
|
|
1723
1770
|
self.query = query
|
|
1724
1771
|
self.time_range = time_range
|
|
1725
1772
|
|
|
1726
1773
|
def validate(self):
|
|
1727
1774
|
if self.contents:
|
|
1728
1775
|
self.contents.validate()
|
|
1776
|
+
if self.location_info:
|
|
1777
|
+
self.location_info.validate()
|
|
1729
1778
|
|
|
1730
1779
|
def to_map(self):
|
|
1731
1780
|
_map = super().to_map()
|
|
@@ -1743,6 +1792,8 @@ class UnifiedSearchInput(TeaModel):
|
|
|
1743
1792
|
result['engineType'] = self.engine_type
|
|
1744
1793
|
if self.location is not None:
|
|
1745
1794
|
result['location'] = self.location
|
|
1795
|
+
if self.location_info is not None:
|
|
1796
|
+
result['locationInfo'] = self.location_info.to_map()
|
|
1746
1797
|
if self.query is not None:
|
|
1747
1798
|
result['query'] = self.query
|
|
1748
1799
|
if self.time_range is not None:
|
|
@@ -1762,6 +1813,9 @@ class UnifiedSearchInput(TeaModel):
|
|
|
1762
1813
|
self.engine_type = m.get('engineType')
|
|
1763
1814
|
if m.get('location') is not None:
|
|
1764
1815
|
self.location = m.get('location')
|
|
1816
|
+
if m.get('locationInfo') is not None:
|
|
1817
|
+
temp_model = LocationInfo()
|
|
1818
|
+
self.location_info = temp_model.from_map(m['locationInfo'])
|
|
1765
1819
|
if m.get('query') is not None:
|
|
1766
1820
|
self.query = m.get('query')
|
|
1767
1821
|
if m.get('timeRange') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.6.1'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alibabacloud_iqs20241111-1.6.1 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|