alibabacloud-iqs20241111 1.1.6__py3-none-any.whl → 1.2.0__py3-none-any.whl
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/__init__.py +1 -1
- alibabacloud_iqs20241111/client.py +128 -0
- alibabacloud_iqs20241111/models.py +336 -0
- {alibabacloud_iqs20241111-1.1.6.dist-info → alibabacloud_iqs20241111-1.2.0.dist-info}/METADATA +1 -1
- alibabacloud_iqs20241111-1.2.0.dist-info/RECORD +8 -0
- alibabacloud_iqs20241111-1.1.6.dist-info/RECORD +0 -8
- {alibabacloud_iqs20241111-1.1.6.dist-info → alibabacloud_iqs20241111-1.2.0.dist-info}/LICENSE +0 -0
- {alibabacloud_iqs20241111-1.1.6.dist-info → alibabacloud_iqs20241111-1.2.0.dist-info}/WHEEL +0 -0
- {alibabacloud_iqs20241111-1.1.6.dist-info → alibabacloud_iqs20241111-1.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.
|
|
1
|
+
__version__ = '1.2.0'
|
|
@@ -448,3 +448,131 @@ class Client(OpenApiClient):
|
|
|
448
448
|
runtime = util_models.RuntimeOptions()
|
|
449
449
|
headers = {}
|
|
450
450
|
return await self.generic_search_with_options_async(request, headers, runtime)
|
|
451
|
+
|
|
452
|
+
def global_search_with_options(
|
|
453
|
+
self,
|
|
454
|
+
request: iqs20241111_models.GlobalSearchRequest,
|
|
455
|
+
headers: Dict[str, str],
|
|
456
|
+
runtime: util_models.RuntimeOptions,
|
|
457
|
+
) -> iqs20241111_models.GlobalSearchResponse:
|
|
458
|
+
"""
|
|
459
|
+
@summary 通晓搜索-出海版(全球信息搜索)
|
|
460
|
+
|
|
461
|
+
@param request: GlobalSearchRequest
|
|
462
|
+
@param headers: map
|
|
463
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
464
|
+
@return: GlobalSearchResponse
|
|
465
|
+
"""
|
|
466
|
+
UtilClient.validate_model(request)
|
|
467
|
+
query = {}
|
|
468
|
+
if not UtilClient.is_unset(request.page):
|
|
469
|
+
query['page'] = request.page
|
|
470
|
+
if not UtilClient.is_unset(request.page_size):
|
|
471
|
+
query['pageSize'] = request.page_size
|
|
472
|
+
if not UtilClient.is_unset(request.query):
|
|
473
|
+
query['query'] = request.query
|
|
474
|
+
if not UtilClient.is_unset(request.time_range):
|
|
475
|
+
query['timeRange'] = request.time_range
|
|
476
|
+
req = open_api_models.OpenApiRequest(
|
|
477
|
+
headers=headers,
|
|
478
|
+
query=OpenApiUtilClient.query(query)
|
|
479
|
+
)
|
|
480
|
+
params = open_api_models.Params(
|
|
481
|
+
action='GlobalSearch',
|
|
482
|
+
version='2024-11-11',
|
|
483
|
+
protocol='HTTPS',
|
|
484
|
+
pathname=f'/linked-retrieval/linked-retrieval-entry/v1/iqs/search/global',
|
|
485
|
+
method='GET',
|
|
486
|
+
auth_type='AK',
|
|
487
|
+
style='ROA',
|
|
488
|
+
req_body_type='json',
|
|
489
|
+
body_type='json'
|
|
490
|
+
)
|
|
491
|
+
if UtilClient.is_unset(self._signature_version) or not UtilClient.equal_string(self._signature_version, 'v4'):
|
|
492
|
+
return TeaCore.from_map(
|
|
493
|
+
iqs20241111_models.GlobalSearchResponse(),
|
|
494
|
+
self.call_api(params, req, runtime)
|
|
495
|
+
)
|
|
496
|
+
else:
|
|
497
|
+
return TeaCore.from_map(
|
|
498
|
+
iqs20241111_models.GlobalSearchResponse(),
|
|
499
|
+
self.execute(params, req, runtime)
|
|
500
|
+
)
|
|
501
|
+
|
|
502
|
+
async def global_search_with_options_async(
|
|
503
|
+
self,
|
|
504
|
+
request: iqs20241111_models.GlobalSearchRequest,
|
|
505
|
+
headers: Dict[str, str],
|
|
506
|
+
runtime: util_models.RuntimeOptions,
|
|
507
|
+
) -> iqs20241111_models.GlobalSearchResponse:
|
|
508
|
+
"""
|
|
509
|
+
@summary 通晓搜索-出海版(全球信息搜索)
|
|
510
|
+
|
|
511
|
+
@param request: GlobalSearchRequest
|
|
512
|
+
@param headers: map
|
|
513
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
514
|
+
@return: GlobalSearchResponse
|
|
515
|
+
"""
|
|
516
|
+
UtilClient.validate_model(request)
|
|
517
|
+
query = {}
|
|
518
|
+
if not UtilClient.is_unset(request.page):
|
|
519
|
+
query['page'] = request.page
|
|
520
|
+
if not UtilClient.is_unset(request.page_size):
|
|
521
|
+
query['pageSize'] = request.page_size
|
|
522
|
+
if not UtilClient.is_unset(request.query):
|
|
523
|
+
query['query'] = request.query
|
|
524
|
+
if not UtilClient.is_unset(request.time_range):
|
|
525
|
+
query['timeRange'] = request.time_range
|
|
526
|
+
req = open_api_models.OpenApiRequest(
|
|
527
|
+
headers=headers,
|
|
528
|
+
query=OpenApiUtilClient.query(query)
|
|
529
|
+
)
|
|
530
|
+
params = open_api_models.Params(
|
|
531
|
+
action='GlobalSearch',
|
|
532
|
+
version='2024-11-11',
|
|
533
|
+
protocol='HTTPS',
|
|
534
|
+
pathname=f'/linked-retrieval/linked-retrieval-entry/v1/iqs/search/global',
|
|
535
|
+
method='GET',
|
|
536
|
+
auth_type='AK',
|
|
537
|
+
style='ROA',
|
|
538
|
+
req_body_type='json',
|
|
539
|
+
body_type='json'
|
|
540
|
+
)
|
|
541
|
+
if UtilClient.is_unset(self._signature_version) or not UtilClient.equal_string(self._signature_version, 'v4'):
|
|
542
|
+
return TeaCore.from_map(
|
|
543
|
+
iqs20241111_models.GlobalSearchResponse(),
|
|
544
|
+
await self.call_api_async(params, req, runtime)
|
|
545
|
+
)
|
|
546
|
+
else:
|
|
547
|
+
return TeaCore.from_map(
|
|
548
|
+
iqs20241111_models.GlobalSearchResponse(),
|
|
549
|
+
await self.execute_async(params, req, runtime)
|
|
550
|
+
)
|
|
551
|
+
|
|
552
|
+
def global_search(
|
|
553
|
+
self,
|
|
554
|
+
request: iqs20241111_models.GlobalSearchRequest,
|
|
555
|
+
) -> iqs20241111_models.GlobalSearchResponse:
|
|
556
|
+
"""
|
|
557
|
+
@summary 通晓搜索-出海版(全球信息搜索)
|
|
558
|
+
|
|
559
|
+
@param request: GlobalSearchRequest
|
|
560
|
+
@return: GlobalSearchResponse
|
|
561
|
+
"""
|
|
562
|
+
runtime = util_models.RuntimeOptions()
|
|
563
|
+
headers = {}
|
|
564
|
+
return self.global_search_with_options(request, headers, runtime)
|
|
565
|
+
|
|
566
|
+
async def global_search_async(
|
|
567
|
+
self,
|
|
568
|
+
request: iqs20241111_models.GlobalSearchRequest,
|
|
569
|
+
) -> iqs20241111_models.GlobalSearchResponse:
|
|
570
|
+
"""
|
|
571
|
+
@summary 通晓搜索-出海版(全球信息搜索)
|
|
572
|
+
|
|
573
|
+
@param request: GlobalSearchRequest
|
|
574
|
+
@return: GlobalSearchResponse
|
|
575
|
+
"""
|
|
576
|
+
runtime = util_models.RuntimeOptions()
|
|
577
|
+
headers = {}
|
|
578
|
+
return await self.global_search_with_options_async(request, headers, runtime)
|
|
@@ -594,6 +594,255 @@ class GenericSearchResult(TeaModel):
|
|
|
594
594
|
return self
|
|
595
595
|
|
|
596
596
|
|
|
597
|
+
class GlobalPageItem(TeaModel):
|
|
598
|
+
def __init__(
|
|
599
|
+
self,
|
|
600
|
+
link: str = None,
|
|
601
|
+
snippet: str = None,
|
|
602
|
+
title: str = None,
|
|
603
|
+
):
|
|
604
|
+
# This parameter is required.
|
|
605
|
+
self.link = link
|
|
606
|
+
self.snippet = snippet
|
|
607
|
+
# This parameter is required.
|
|
608
|
+
self.title = title
|
|
609
|
+
|
|
610
|
+
def validate(self):
|
|
611
|
+
pass
|
|
612
|
+
|
|
613
|
+
def to_map(self):
|
|
614
|
+
_map = super().to_map()
|
|
615
|
+
if _map is not None:
|
|
616
|
+
return _map
|
|
617
|
+
|
|
618
|
+
result = dict()
|
|
619
|
+
if self.link is not None:
|
|
620
|
+
result['link'] = self.link
|
|
621
|
+
if self.snippet is not None:
|
|
622
|
+
result['snippet'] = self.snippet
|
|
623
|
+
if self.title is not None:
|
|
624
|
+
result['title'] = self.title
|
|
625
|
+
return result
|
|
626
|
+
|
|
627
|
+
def from_map(self, m: dict = None):
|
|
628
|
+
m = m or dict()
|
|
629
|
+
if m.get('link') is not None:
|
|
630
|
+
self.link = m.get('link')
|
|
631
|
+
if m.get('snippet') is not None:
|
|
632
|
+
self.snippet = m.get('snippet')
|
|
633
|
+
if m.get('title') is not None:
|
|
634
|
+
self.title = m.get('title')
|
|
635
|
+
return self
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
class GlobalQueryContextOriginalQuery(TeaModel):
|
|
639
|
+
def __init__(
|
|
640
|
+
self,
|
|
641
|
+
page: str = None,
|
|
642
|
+
query: str = None,
|
|
643
|
+
time_range: str = None,
|
|
644
|
+
):
|
|
645
|
+
self.page = page
|
|
646
|
+
self.query = query
|
|
647
|
+
self.time_range = time_range
|
|
648
|
+
|
|
649
|
+
def validate(self):
|
|
650
|
+
pass
|
|
651
|
+
|
|
652
|
+
def to_map(self):
|
|
653
|
+
_map = super().to_map()
|
|
654
|
+
if _map is not None:
|
|
655
|
+
return _map
|
|
656
|
+
|
|
657
|
+
result = dict()
|
|
658
|
+
if self.page is not None:
|
|
659
|
+
result['page'] = self.page
|
|
660
|
+
if self.query is not None:
|
|
661
|
+
result['query'] = self.query
|
|
662
|
+
if self.time_range is not None:
|
|
663
|
+
result['timeRange'] = self.time_range
|
|
664
|
+
return result
|
|
665
|
+
|
|
666
|
+
def from_map(self, m: dict = None):
|
|
667
|
+
m = m or dict()
|
|
668
|
+
if m.get('page') is not None:
|
|
669
|
+
self.page = m.get('page')
|
|
670
|
+
if m.get('query') is not None:
|
|
671
|
+
self.query = m.get('query')
|
|
672
|
+
if m.get('timeRange') is not None:
|
|
673
|
+
self.time_range = m.get('timeRange')
|
|
674
|
+
return self
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
class GlobalQueryContext(TeaModel):
|
|
678
|
+
def __init__(
|
|
679
|
+
self,
|
|
680
|
+
original_query: GlobalQueryContextOriginalQuery = None,
|
|
681
|
+
):
|
|
682
|
+
self.original_query = original_query
|
|
683
|
+
|
|
684
|
+
def validate(self):
|
|
685
|
+
if self.original_query:
|
|
686
|
+
self.original_query.validate()
|
|
687
|
+
|
|
688
|
+
def to_map(self):
|
|
689
|
+
_map = super().to_map()
|
|
690
|
+
if _map is not None:
|
|
691
|
+
return _map
|
|
692
|
+
|
|
693
|
+
result = dict()
|
|
694
|
+
if self.original_query is not None:
|
|
695
|
+
result['originalQuery'] = self.original_query.to_map()
|
|
696
|
+
return result
|
|
697
|
+
|
|
698
|
+
def from_map(self, m: dict = None):
|
|
699
|
+
m = m or dict()
|
|
700
|
+
if m.get('originalQuery') is not None:
|
|
701
|
+
temp_model = GlobalQueryContextOriginalQuery()
|
|
702
|
+
self.original_query = temp_model.from_map(m['originalQuery'])
|
|
703
|
+
return self
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
class GlobalSceneItem(TeaModel):
|
|
707
|
+
def __init__(
|
|
708
|
+
self,
|
|
709
|
+
detail: str = None,
|
|
710
|
+
type: str = None,
|
|
711
|
+
):
|
|
712
|
+
self.detail = detail
|
|
713
|
+
self.type = type
|
|
714
|
+
|
|
715
|
+
def validate(self):
|
|
716
|
+
pass
|
|
717
|
+
|
|
718
|
+
def to_map(self):
|
|
719
|
+
_map = super().to_map()
|
|
720
|
+
if _map is not None:
|
|
721
|
+
return _map
|
|
722
|
+
|
|
723
|
+
result = dict()
|
|
724
|
+
if self.detail is not None:
|
|
725
|
+
result['detail'] = self.detail
|
|
726
|
+
if self.type is not None:
|
|
727
|
+
result['type'] = self.type
|
|
728
|
+
return result
|
|
729
|
+
|
|
730
|
+
def from_map(self, m: dict = None):
|
|
731
|
+
m = m or dict()
|
|
732
|
+
if m.get('detail') is not None:
|
|
733
|
+
self.detail = m.get('detail')
|
|
734
|
+
if m.get('type') is not None:
|
|
735
|
+
self.type = m.get('type')
|
|
736
|
+
return self
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
class GlobalSearchInformation(TeaModel):
|
|
740
|
+
def __init__(
|
|
741
|
+
self,
|
|
742
|
+
search_time: int = None,
|
|
743
|
+
total: int = None,
|
|
744
|
+
):
|
|
745
|
+
self.search_time = search_time
|
|
746
|
+
self.total = total
|
|
747
|
+
|
|
748
|
+
def validate(self):
|
|
749
|
+
pass
|
|
750
|
+
|
|
751
|
+
def to_map(self):
|
|
752
|
+
_map = super().to_map()
|
|
753
|
+
if _map is not None:
|
|
754
|
+
return _map
|
|
755
|
+
|
|
756
|
+
result = dict()
|
|
757
|
+
if self.search_time is not None:
|
|
758
|
+
result['searchTime'] = self.search_time
|
|
759
|
+
if self.total is not None:
|
|
760
|
+
result['total'] = self.total
|
|
761
|
+
return result
|
|
762
|
+
|
|
763
|
+
def from_map(self, m: dict = None):
|
|
764
|
+
m = m or dict()
|
|
765
|
+
if m.get('searchTime') is not None:
|
|
766
|
+
self.search_time = m.get('searchTime')
|
|
767
|
+
if m.get('total') is not None:
|
|
768
|
+
self.total = m.get('total')
|
|
769
|
+
return self
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
class GlobalSearchResult(TeaModel):
|
|
773
|
+
def __init__(
|
|
774
|
+
self,
|
|
775
|
+
page_items: List[GlobalPageItem] = None,
|
|
776
|
+
query_context: GlobalQueryContext = None,
|
|
777
|
+
request_id: str = None,
|
|
778
|
+
scene_items: List[GlobalSceneItem] = None,
|
|
779
|
+
search_information: GlobalSearchInformation = None,
|
|
780
|
+
):
|
|
781
|
+
self.page_items = page_items
|
|
782
|
+
self.query_context = query_context
|
|
783
|
+
self.request_id = request_id
|
|
784
|
+
self.scene_items = scene_items
|
|
785
|
+
self.search_information = search_information
|
|
786
|
+
|
|
787
|
+
def validate(self):
|
|
788
|
+
if self.page_items:
|
|
789
|
+
for k in self.page_items:
|
|
790
|
+
if k:
|
|
791
|
+
k.validate()
|
|
792
|
+
if self.query_context:
|
|
793
|
+
self.query_context.validate()
|
|
794
|
+
if self.scene_items:
|
|
795
|
+
for k in self.scene_items:
|
|
796
|
+
if k:
|
|
797
|
+
k.validate()
|
|
798
|
+
if self.search_information:
|
|
799
|
+
self.search_information.validate()
|
|
800
|
+
|
|
801
|
+
def to_map(self):
|
|
802
|
+
_map = super().to_map()
|
|
803
|
+
if _map is not None:
|
|
804
|
+
return _map
|
|
805
|
+
|
|
806
|
+
result = dict()
|
|
807
|
+
result['pageItems'] = []
|
|
808
|
+
if self.page_items is not None:
|
|
809
|
+
for k in self.page_items:
|
|
810
|
+
result['pageItems'].append(k.to_map() if k else None)
|
|
811
|
+
if self.query_context is not None:
|
|
812
|
+
result['queryContext'] = self.query_context.to_map()
|
|
813
|
+
if self.request_id is not None:
|
|
814
|
+
result['requestId'] = self.request_id
|
|
815
|
+
result['sceneItems'] = []
|
|
816
|
+
if self.scene_items is not None:
|
|
817
|
+
for k in self.scene_items:
|
|
818
|
+
result['sceneItems'].append(k.to_map() if k else None)
|
|
819
|
+
if self.search_information is not None:
|
|
820
|
+
result['searchInformation'] = self.search_information.to_map()
|
|
821
|
+
return result
|
|
822
|
+
|
|
823
|
+
def from_map(self, m: dict = None):
|
|
824
|
+
m = m or dict()
|
|
825
|
+
self.page_items = []
|
|
826
|
+
if m.get('pageItems') is not None:
|
|
827
|
+
for k in m.get('pageItems'):
|
|
828
|
+
temp_model = GlobalPageItem()
|
|
829
|
+
self.page_items.append(temp_model.from_map(k))
|
|
830
|
+
if m.get('queryContext') is not None:
|
|
831
|
+
temp_model = GlobalQueryContext()
|
|
832
|
+
self.query_context = temp_model.from_map(m['queryContext'])
|
|
833
|
+
if m.get('requestId') is not None:
|
|
834
|
+
self.request_id = m.get('requestId')
|
|
835
|
+
self.scene_items = []
|
|
836
|
+
if m.get('sceneItems') is not None:
|
|
837
|
+
for k in m.get('sceneItems'):
|
|
838
|
+
temp_model = GlobalSceneItem()
|
|
839
|
+
self.scene_items.append(temp_model.from_map(k))
|
|
840
|
+
if m.get('searchInformation') is not None:
|
|
841
|
+
temp_model = GlobalSearchInformation()
|
|
842
|
+
self.search_information = temp_model.from_map(m['searchInformation'])
|
|
843
|
+
return self
|
|
844
|
+
|
|
845
|
+
|
|
597
846
|
class AiSearchRequest(TeaModel):
|
|
598
847
|
def __init__(
|
|
599
848
|
self,
|
|
@@ -1096,3 +1345,90 @@ class GenericSearchResponse(TeaModel):
|
|
|
1096
1345
|
return self
|
|
1097
1346
|
|
|
1098
1347
|
|
|
1348
|
+
class GlobalSearchRequest(TeaModel):
|
|
1349
|
+
def __init__(
|
|
1350
|
+
self,
|
|
1351
|
+
page: int = None,
|
|
1352
|
+
page_size: int = None,
|
|
1353
|
+
query: str = None,
|
|
1354
|
+
time_range: str = None,
|
|
1355
|
+
):
|
|
1356
|
+
self.page = page
|
|
1357
|
+
self.page_size = page_size
|
|
1358
|
+
# This parameter is required.
|
|
1359
|
+
self.query = query
|
|
1360
|
+
self.time_range = time_range
|
|
1361
|
+
|
|
1362
|
+
def validate(self):
|
|
1363
|
+
pass
|
|
1364
|
+
|
|
1365
|
+
def to_map(self):
|
|
1366
|
+
_map = super().to_map()
|
|
1367
|
+
if _map is not None:
|
|
1368
|
+
return _map
|
|
1369
|
+
|
|
1370
|
+
result = dict()
|
|
1371
|
+
if self.page is not None:
|
|
1372
|
+
result['page'] = self.page
|
|
1373
|
+
if self.page_size is not None:
|
|
1374
|
+
result['pageSize'] = self.page_size
|
|
1375
|
+
if self.query is not None:
|
|
1376
|
+
result['query'] = self.query
|
|
1377
|
+
if self.time_range is not None:
|
|
1378
|
+
result['timeRange'] = self.time_range
|
|
1379
|
+
return result
|
|
1380
|
+
|
|
1381
|
+
def from_map(self, m: dict = None):
|
|
1382
|
+
m = m or dict()
|
|
1383
|
+
if m.get('page') is not None:
|
|
1384
|
+
self.page = m.get('page')
|
|
1385
|
+
if m.get('pageSize') is not None:
|
|
1386
|
+
self.page_size = m.get('pageSize')
|
|
1387
|
+
if m.get('query') is not None:
|
|
1388
|
+
self.query = m.get('query')
|
|
1389
|
+
if m.get('timeRange') is not None:
|
|
1390
|
+
self.time_range = m.get('timeRange')
|
|
1391
|
+
return self
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
class GlobalSearchResponse(TeaModel):
|
|
1395
|
+
def __init__(
|
|
1396
|
+
self,
|
|
1397
|
+
headers: Dict[str, str] = None,
|
|
1398
|
+
status_code: int = None,
|
|
1399
|
+
body: GlobalSearchResult = None,
|
|
1400
|
+
):
|
|
1401
|
+
self.headers = headers
|
|
1402
|
+
self.status_code = status_code
|
|
1403
|
+
self.body = body
|
|
1404
|
+
|
|
1405
|
+
def validate(self):
|
|
1406
|
+
if self.body:
|
|
1407
|
+
self.body.validate()
|
|
1408
|
+
|
|
1409
|
+
def to_map(self):
|
|
1410
|
+
_map = super().to_map()
|
|
1411
|
+
if _map is not None:
|
|
1412
|
+
return _map
|
|
1413
|
+
|
|
1414
|
+
result = dict()
|
|
1415
|
+
if self.headers is not None:
|
|
1416
|
+
result['headers'] = self.headers
|
|
1417
|
+
if self.status_code is not None:
|
|
1418
|
+
result['statusCode'] = self.status_code
|
|
1419
|
+
if self.body is not None:
|
|
1420
|
+
result['body'] = self.body.to_map()
|
|
1421
|
+
return result
|
|
1422
|
+
|
|
1423
|
+
def from_map(self, m: dict = None):
|
|
1424
|
+
m = m or dict()
|
|
1425
|
+
if m.get('headers') is not None:
|
|
1426
|
+
self.headers = m.get('headers')
|
|
1427
|
+
if m.get('statusCode') is not None:
|
|
1428
|
+
self.status_code = m.get('statusCode')
|
|
1429
|
+
if m.get('body') is not None:
|
|
1430
|
+
temp_model = GlobalSearchResult()
|
|
1431
|
+
self.body = temp_model.from_map(m['body'])
|
|
1432
|
+
return self
|
|
1433
|
+
|
|
1434
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_iqs20241111/__init__.py,sha256=5GblYyMbk8JySosj59Rvi2uzLqfP-DAs77ikwTafXT4,21
|
|
2
|
+
alibabacloud_iqs20241111/client.py,sha256=LIgSzaWYWggXg0hnL1851gYBIaYzQlvsArmSAiu-2WM,22466
|
|
3
|
+
alibabacloud_iqs20241111/models.py,sha256=vX-jrhCKMCUtePuC8i_paQl99sWbmp8C5Bn9EIaWQ4Y,44321
|
|
4
|
+
alibabacloud_iqs20241111-1.2.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_iqs20241111-1.2.0.dist-info/METADATA,sha256=ornUkuN9nNITPkWtlmVSRBXCjs8FKDe2GQOvA2TjVLg,2312
|
|
6
|
+
alibabacloud_iqs20241111-1.2.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_iqs20241111-1.2.0.dist-info/top_level.txt,sha256=DCTUMSkrMH7RuTTLUEqGJeM2_EXN79YXzwpAtYbk-bU,25
|
|
8
|
+
alibabacloud_iqs20241111-1.2.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_iqs20241111/__init__.py,sha256=PPeazHnddT7GQ0azvFuJ1BZxeYqQJ3q1i6m0vXQDcx4,21
|
|
2
|
-
alibabacloud_iqs20241111/client.py,sha256=gd8ZSqvaHbKvKaUlzxP3cRjqDgou5OrooAa5GepIL0o,17602
|
|
3
|
-
alibabacloud_iqs20241111/models.py,sha256=XgnzQsIuhUpnzm1cP8_RK4cOpmqj1m1kAqsiyZsrF3k,34565
|
|
4
|
-
alibabacloud_iqs20241111-1.1.6.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_iqs20241111-1.1.6.dist-info/METADATA,sha256=7WrQeA3_i2cfObvMKKYtMtw4OyOetyonG9p8gOVINoA,2312
|
|
6
|
-
alibabacloud_iqs20241111-1.1.6.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_iqs20241111-1.1.6.dist-info/top_level.txt,sha256=DCTUMSkrMH7RuTTLUEqGJeM2_EXN79YXzwpAtYbk-bU,25
|
|
8
|
-
alibabacloud_iqs20241111-1.1.6.dist-info/RECORD,,
|
{alibabacloud_iqs20241111-1.1.6.dist-info → alibabacloud_iqs20241111-1.2.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_iqs20241111-1.1.6.dist-info → alibabacloud_iqs20241111-1.2.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|