alibabacloud-iqs20241111 1.6.2__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.
Files changed (17) hide show
  1. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/ChangeLog.md +3 -0
  2. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/PKG-INFO +1 -1
  3. alibabacloud_iqs20241111-1.6.3/alibabacloud_iqs20241111/__init__.py +1 -0
  4. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/models.py +42 -0
  5. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/setup.py +1 -1
  7. alibabacloud_iqs20241111-1.6.2/alibabacloud_iqs20241111/__init__.py +0 -1
  8. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/LICENSE +0 -0
  9. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/MANIFEST.in +0 -0
  10. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/README-CN.md +0 -0
  11. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/README.md +0 -0
  12. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111/client.py +0 -0
  13. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/requires.txt +0 -0
  16. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/alibabacloud_iqs20241111.egg-info/top_level.txt +0 -0
  17. {alibabacloud_iqs20241111-1.6.2 → alibabacloud_iqs20241111-1.6.3}/setup.cfg +0 -0
@@ -1,3 +1,6 @@
1
+ 2025-12-03 Version: 1.6.2
2
+ - Generated python 2024-11-11 for IQS.
3
+
1
4
  2025-11-24 Version: 1.6.1
2
5
  - Generated python 2024-11-11 for IQS.
3
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_iqs20241111
3
- Version: 1.6.2
3
+ Version: 1.6.3
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.3'
@@ -995,6 +995,39 @@ class GlobalSearchResult(TeaModel):
995
995
  return self
996
996
 
997
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
+
998
1031
  class ReadPageBodyReadability(TeaModel):
999
1032
  def __init__(
1000
1033
  self,
@@ -1724,6 +1757,7 @@ class UnifiedSearchInput(TeaModel):
1724
1757
  contents: RequestContents = None,
1725
1758
  engine_type: str = None,
1726
1759
  location: str = None,
1760
+ location_info: LocationInfo = None,
1727
1761
  query: str = None,
1728
1762
  time_range: str = None,
1729
1763
  ):
@@ -1732,12 +1766,15 @@ class UnifiedSearchInput(TeaModel):
1732
1766
  self.contents = contents
1733
1767
  self.engine_type = engine_type
1734
1768
  self.location = location
1769
+ self.location_info = location_info
1735
1770
  self.query = query
1736
1771
  self.time_range = time_range
1737
1772
 
1738
1773
  def validate(self):
1739
1774
  if self.contents:
1740
1775
  self.contents.validate()
1776
+ if self.location_info:
1777
+ self.location_info.validate()
1741
1778
 
1742
1779
  def to_map(self):
1743
1780
  _map = super().to_map()
@@ -1755,6 +1792,8 @@ class UnifiedSearchInput(TeaModel):
1755
1792
  result['engineType'] = self.engine_type
1756
1793
  if self.location is not None:
1757
1794
  result['location'] = self.location
1795
+ if self.location_info is not None:
1796
+ result['locationInfo'] = self.location_info.to_map()
1758
1797
  if self.query is not None:
1759
1798
  result['query'] = self.query
1760
1799
  if self.time_range is not None:
@@ -1774,6 +1813,9 @@ class UnifiedSearchInput(TeaModel):
1774
1813
  self.engine_type = m.get('engineType')
1775
1814
  if m.get('location') is not None:
1776
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'])
1777
1819
  if m.get('query') is not None:
1778
1820
  self.query = m.get('query')
1779
1821
  if m.get('timeRange') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-iqs20241111
3
- Version: 1.6.2
3
+ Version: 1.6.3
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 03/12/2025
27
+ Created on 19/12/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '1.6.2'