huaweicloudsdkivs 3.1.160__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.
- huaweicloudsdkivs/__init__.py +0 -0
- huaweicloudsdkivs/v2/__init__.py +54 -0
- huaweicloudsdkivs/v2/ivs_async_client.py +485 -0
- huaweicloudsdkivs/v2/ivs_client.py +482 -0
- huaweicloudsdkivs/v2/model/__init__.py +51 -0
- huaweicloudsdkivs/v2/model/actions_list.py +142 -0
- huaweicloudsdkivs/v2/model/detect_extention_by_id_card_image_request.py +140 -0
- huaweicloudsdkivs/v2/model/detect_extention_by_id_card_image_response.py +162 -0
- huaweicloudsdkivs/v2/model/detect_extention_by_name_and_id_request.py +140 -0
- huaweicloudsdkivs/v2/model/detect_extention_by_name_and_id_response.py +162 -0
- huaweicloudsdkivs/v2/model/detect_standard_by_id_card_image_request.py +140 -0
- huaweicloudsdkivs/v2/model/detect_standard_by_id_card_image_response.py +162 -0
- huaweicloudsdkivs/v2/model/detect_standard_by_name_and_id_request.py +140 -0
- huaweicloudsdkivs/v2/model/detect_standard_by_name_and_id_response.py +162 -0
- huaweicloudsdkivs/v2/model/detect_standard_by_video_and_id_card_image_request.py +140 -0
- huaweicloudsdkivs/v2/model/detect_standard_by_video_and_id_card_image_response.py +162 -0
- huaweicloudsdkivs/v2/model/detect_standard_by_video_and_name_and_id_request.py +140 -0
- huaweicloudsdkivs/v2/model/detect_standard_by_video_and_name_and_id_response.py +162 -0
- huaweicloudsdkivs/v2/model/extention_req_data_by_id_card_image.py +143 -0
- huaweicloudsdkivs/v2/model/extention_req_data_by_name_and_id.py +142 -0
- huaweicloudsdkivs/v2/model/extention_resp_data_by_id_card_image.py +198 -0
- huaweicloudsdkivs/v2/model/extention_resp_data_by_name_and_id.py +173 -0
- huaweicloudsdkivs/v2/model/idcard_result.py +341 -0
- huaweicloudsdkivs/v2/model/ivs_extention_by_id_card_image_request_body.py +134 -0
- huaweicloudsdkivs/v2/model/ivs_extention_by_id_card_image_request_body_data.py +115 -0
- huaweicloudsdkivs/v2/model/ivs_extention_by_id_card_image_response_body_result.py +173 -0
- huaweicloudsdkivs/v2/model/ivs_extention_by_name_and_id_request_body.py +134 -0
- huaweicloudsdkivs/v2/model/ivs_extention_by_name_and_id_request_body_data.py +115 -0
- huaweicloudsdkivs/v2/model/ivs_extention_by_name_and_id_response_body_result.py +173 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_id_card_image_request_body.py +134 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_id_card_image_request_body_data.py +115 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_id_card_image_response_body_result.py +170 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_name_and_id_request_body.py +134 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_name_and_id_request_body_data.py +115 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_name_and_id_response_body_result.py +170 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_id_card_image_request_body.py +134 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_id_card_image_request_body_data.py +115 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_id_card_image_response_body_result.py +170 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_name_and_id_request_body.py +134 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_name_and_id_request_body_data.py +115 -0
- huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_name_and_id_response_body_result.py +170 -0
- huaweicloudsdkivs/v2/model/meta.py +115 -0
- huaweicloudsdkivs/v2/model/req_data_by_id_card_image.py +229 -0
- huaweicloudsdkivs/v2/model/req_data_by_video_and_id_card_image.py +257 -0
- huaweicloudsdkivs/v2/model/resp_data_by_id_card_image.py +222 -0
- huaweicloudsdkivs/v2/model/resp_data_by_video_and_id_card_image.py +246 -0
- huaweicloudsdkivs/v2/model/standard_req_data_by_name_and_id.py +228 -0
- huaweicloudsdkivs/v2/model/standard_req_data_by_video_and_name_and_id.py +256 -0
- huaweicloudsdkivs/v2/model/standard_resp_data_by_name_and_id.py +198 -0
- huaweicloudsdkivs/v2/model/standard_resp_data_by_video_and_name_and_id.py +222 -0
- huaweicloudsdkivs/v2/model/video_result.py +170 -0
- huaweicloudsdkivs/v2/region/__init__.py +0 -0
- huaweicloudsdkivs/v2/region/ivs_region.py +34 -0
- huaweicloudsdkivs-3.1.160.dist-info/LICENSE +13 -0
- huaweicloudsdkivs-3.1.160.dist-info/METADATA +26 -0
- huaweicloudsdkivs-3.1.160.dist-info/RECORD +58 -0
- huaweicloudsdkivs-3.1.160.dist-info/WHEEL +5 -0
- huaweicloudsdkivs-3.1.160.dist-info/top_level.txt +1 -0
@@ -0,0 +1,170 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class VideoResult:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'alive': 'bool',
|
21
|
+
'actions': 'list[ActionsList]',
|
22
|
+
'picture': 'str'
|
23
|
+
}
|
24
|
+
|
25
|
+
attribute_map = {
|
26
|
+
'alive': 'alive',
|
27
|
+
'actions': 'actions',
|
28
|
+
'picture': 'picture'
|
29
|
+
}
|
30
|
+
|
31
|
+
def __init__(self, alive=None, actions=None, picture=None):
|
32
|
+
r"""VideoResult
|
33
|
+
|
34
|
+
The model defined in huaweicloud sdk
|
35
|
+
|
36
|
+
:param alive: 是否是活体。
|
37
|
+
:type alive: bool
|
38
|
+
:param actions: 动作列表。
|
39
|
+
:type actions: list[:class:`huaweicloudsdkivs.v2.ActionsList`]
|
40
|
+
:param picture: 检测出最大人脸的图片base64。
|
41
|
+
:type picture: str
|
42
|
+
"""
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
self._alive = None
|
47
|
+
self._actions = None
|
48
|
+
self._picture = None
|
49
|
+
self.discriminator = None
|
50
|
+
|
51
|
+
self.alive = alive
|
52
|
+
self.actions = actions
|
53
|
+
self.picture = picture
|
54
|
+
|
55
|
+
@property
|
56
|
+
def alive(self):
|
57
|
+
r"""Gets the alive of this VideoResult.
|
58
|
+
|
59
|
+
是否是活体。
|
60
|
+
|
61
|
+
:return: The alive of this VideoResult.
|
62
|
+
:rtype: bool
|
63
|
+
"""
|
64
|
+
return self._alive
|
65
|
+
|
66
|
+
@alive.setter
|
67
|
+
def alive(self, alive):
|
68
|
+
r"""Sets the alive of this VideoResult.
|
69
|
+
|
70
|
+
是否是活体。
|
71
|
+
|
72
|
+
:param alive: The alive of this VideoResult.
|
73
|
+
:type alive: bool
|
74
|
+
"""
|
75
|
+
self._alive = alive
|
76
|
+
|
77
|
+
@property
|
78
|
+
def actions(self):
|
79
|
+
r"""Gets the actions of this VideoResult.
|
80
|
+
|
81
|
+
动作列表。
|
82
|
+
|
83
|
+
:return: The actions of this VideoResult.
|
84
|
+
:rtype: list[:class:`huaweicloudsdkivs.v2.ActionsList`]
|
85
|
+
"""
|
86
|
+
return self._actions
|
87
|
+
|
88
|
+
@actions.setter
|
89
|
+
def actions(self, actions):
|
90
|
+
r"""Sets the actions of this VideoResult.
|
91
|
+
|
92
|
+
动作列表。
|
93
|
+
|
94
|
+
:param actions: The actions of this VideoResult.
|
95
|
+
:type actions: list[:class:`huaweicloudsdkivs.v2.ActionsList`]
|
96
|
+
"""
|
97
|
+
self._actions = actions
|
98
|
+
|
99
|
+
@property
|
100
|
+
def picture(self):
|
101
|
+
r"""Gets the picture of this VideoResult.
|
102
|
+
|
103
|
+
检测出最大人脸的图片base64。
|
104
|
+
|
105
|
+
:return: The picture of this VideoResult.
|
106
|
+
:rtype: str
|
107
|
+
"""
|
108
|
+
return self._picture
|
109
|
+
|
110
|
+
@picture.setter
|
111
|
+
def picture(self, picture):
|
112
|
+
r"""Sets the picture of this VideoResult.
|
113
|
+
|
114
|
+
检测出最大人脸的图片base64。
|
115
|
+
|
116
|
+
:param picture: The picture of this VideoResult.
|
117
|
+
:type picture: str
|
118
|
+
"""
|
119
|
+
self._picture = picture
|
120
|
+
|
121
|
+
def to_dict(self):
|
122
|
+
"""Returns the model properties as a dict"""
|
123
|
+
result = {}
|
124
|
+
|
125
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
126
|
+
value = getattr(self, attr)
|
127
|
+
if isinstance(value, list):
|
128
|
+
result[attr] = list(map(
|
129
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
130
|
+
value
|
131
|
+
))
|
132
|
+
elif hasattr(value, "to_dict"):
|
133
|
+
result[attr] = value.to_dict()
|
134
|
+
elif isinstance(value, dict):
|
135
|
+
result[attr] = dict(map(
|
136
|
+
lambda item: (item[0], item[1].to_dict())
|
137
|
+
if hasattr(item[1], "to_dict") else item,
|
138
|
+
value.items()
|
139
|
+
))
|
140
|
+
else:
|
141
|
+
if attr in self.sensitive_list:
|
142
|
+
result[attr] = "****"
|
143
|
+
else:
|
144
|
+
result[attr] = value
|
145
|
+
|
146
|
+
return result
|
147
|
+
|
148
|
+
def to_str(self):
|
149
|
+
"""Returns the string representation of the model"""
|
150
|
+
import simplejson as json
|
151
|
+
if six.PY2:
|
152
|
+
import sys
|
153
|
+
reload(sys)
|
154
|
+
sys.setdefaultencoding("utf-8")
|
155
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
156
|
+
|
157
|
+
def __repr__(self):
|
158
|
+
"""For `print`"""
|
159
|
+
return self.to_str()
|
160
|
+
|
161
|
+
def __eq__(self, other):
|
162
|
+
"""Returns true if both objects are equal"""
|
163
|
+
if not isinstance(other, VideoResult):
|
164
|
+
return False
|
165
|
+
|
166
|
+
return self.__dict__ == other.__dict__
|
167
|
+
|
168
|
+
def __ne__(self, other):
|
169
|
+
"""Returns true if both objects are not equal"""
|
170
|
+
return not self == other
|
File without changes
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
from huaweicloudsdkcore.region.region import Region
|
4
|
+
from huaweicloudsdkcore.region.provider import RegionProviderChain
|
5
|
+
|
6
|
+
class IvsRegion:
|
7
|
+
_PROVIDER = RegionProviderChain.get_default_region_provider_chain("IVS")
|
8
|
+
|
9
|
+
CN_NORTH_4 = Region("cn-north-4",
|
10
|
+
"https://ivs.cn-north-4.myhuaweicloud.com")
|
11
|
+
CN_NORTH_1 = Region("cn-north-1",
|
12
|
+
"https://ivs.cn-north-1.myhuaweicloud.com")
|
13
|
+
|
14
|
+
static_fields = {
|
15
|
+
"cn-north-4": CN_NORTH_4,
|
16
|
+
"cn-north-1": CN_NORTH_1,
|
17
|
+
}
|
18
|
+
|
19
|
+
@classmethod
|
20
|
+
def value_of(cls, region_id, static_fields=None):
|
21
|
+
if not region_id:
|
22
|
+
raise KeyError("Unexpected empty parameter: region_id")
|
23
|
+
|
24
|
+
fields = static_fields or cls.static_fields
|
25
|
+
|
26
|
+
region = cls._PROVIDER.get_region(region_id)
|
27
|
+
if region:
|
28
|
+
return region
|
29
|
+
|
30
|
+
if region_id in fields:
|
31
|
+
return fields.get(region_id)
|
32
|
+
|
33
|
+
raise KeyError("region_id '%s' is not in the following supported regions of service 'Ivs': [%s]" % (
|
34
|
+
region_id, ", ".join(sorted(fields.keys()))))
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Copyright (c) Huawei Technologies Co., Ltd. 2020-present. All rights reserved.
|
2
|
+
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use this file except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
See the License for the specific language governing permissions and
|
13
|
+
limitations under the License.
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: huaweicloudsdkivs
|
3
|
+
Version: 3.1.160
|
4
|
+
Summary: IVS
|
5
|
+
Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
|
6
|
+
Author: HuaweiCloud SDK
|
7
|
+
Author-email: hwcloudsdk@huawei.com
|
8
|
+
License: Apache LICENSE 2.0
|
9
|
+
Keywords: huaweicloud,sdk,IVS
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
11
|
+
Classifier: Intended Audience :: Developers
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
13
|
+
Classifier: Programming Language :: Python :: 3.6
|
14
|
+
Classifier: Programming Language :: Python :: 3.7
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
20
|
+
Classifier: Topic :: Software Development
|
21
|
+
Requires-Python: >=3.6
|
22
|
+
Description-Content-Type: text/markdown
|
23
|
+
License-File: LICENSE
|
24
|
+
Requires-Dist: huaweicloudsdkcore>=3.1.160
|
25
|
+
|
26
|
+
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -0,0 +1,58 @@
|
|
1
|
+
huaweicloudsdkivs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
huaweicloudsdkivs/v2/__init__.py,sha256=DXPWyN2XHAYvaX2PCH1P2gaKoHzTDtrjsMeQx5KeG0c,5457
|
3
|
+
huaweicloudsdkivs/v2/ivs_async_client.py,sha256=J_5y_cX5EuA7XrDgO1X2RCl1ecmVrF_S0X1jkwUBeGs,18183
|
4
|
+
huaweicloudsdkivs/v2/ivs_client.py,sha256=bMaw1bEgsblqhg13o_rnVWMpNMRDG__Pm41K6qsmt-I,18090
|
5
|
+
huaweicloudsdkivs/v2/model/__init__.py,sha256=wII41bthIoEmEGgX_IR0WDnFNASDLJ3UkBni_uA9EUA,5371
|
6
|
+
huaweicloudsdkivs/v2/model/actions_list.py,sha256=HnKmj82VuI3ujUOwb06-e875jTDes_xJyzA-yi7nCYM,4077
|
7
|
+
huaweicloudsdkivs/v2/model/detect_extention_by_id_card_image_request.py,sha256=d1HQ3J0KVWHTVsOwJJFh6lWE1s9BjhYBS7yCEWF2UWw,6999
|
8
|
+
huaweicloudsdkivs/v2/model/detect_extention_by_id_card_image_response.py,sha256=LoCslW2BGGUYBxlEw0e0DOPipQbCsS9Inxv_VXa631Q,5113
|
9
|
+
huaweicloudsdkivs/v2/model/detect_extention_by_name_and_id_request.py,sha256=GXGotFsIX0chjslIkNo2Qi634RvLBJCpOVho1-AcFwc,6967
|
10
|
+
huaweicloudsdkivs/v2/model/detect_extention_by_name_and_id_response.py,sha256=UwS-ONwYu-xCdLkUuZNbNBIAgu0wEBI8Dc6O1G5paCE,5073
|
11
|
+
huaweicloudsdkivs/v2/model/detect_standard_by_id_card_image_request.py,sha256=ZdMMwmyyqMe0N_wN180CIeIELCu3kksDc8LBT2iH-f8,6983
|
12
|
+
huaweicloudsdkivs/v2/model/detect_standard_by_id_card_image_response.py,sha256=W9mRbHF8C8havS7woXJ1Ds409iiWI-nFwmjvbecdvvg,5093
|
13
|
+
huaweicloudsdkivs/v2/model/detect_standard_by_name_and_id_request.py,sha256=9JipfKla401UGeP8utT-jkZ5JPy0B-sK9ODSq-qRm6A,6951
|
14
|
+
huaweicloudsdkivs/v2/model/detect_standard_by_name_and_id_response.py,sha256=imJQGtJO02ove4KS1Equ3ytpmg3oOAyxojp1SNIp3oY,5053
|
15
|
+
huaweicloudsdkivs/v2/model/detect_standard_by_video_and_id_card_image_request.py,sha256=akOvL2aQALy3Gr77l0s9MhdQPfZ4CrI0FMo6d1XVA_M,7111
|
16
|
+
huaweicloudsdkivs/v2/model/detect_standard_by_video_and_id_card_image_response.py,sha256=hFcdKhxmiPJ-2yb-sMXKAHuLBBOAy-PIgkG8O86QYS4,5253
|
17
|
+
huaweicloudsdkivs/v2/model/detect_standard_by_video_and_name_and_id_request.py,sha256=SqE8mKLfxMMm61116d9eOc96RpeOFgfNg3phz6_YpcY,7079
|
18
|
+
huaweicloudsdkivs/v2/model/detect_standard_by_video_and_name_and_id_response.py,sha256=uaFE1T6zE6DHnbeS4PqKex2Bi_Dfzl0Fjhpg6qdLffI,5213
|
19
|
+
huaweicloudsdkivs/v2/model/extention_req_data_by_id_card_image.py,sha256=oOzvEtGV7FAdGxCoqFdTd1TtnpX4e3T8X8weL0Taeek,5036
|
20
|
+
huaweicloudsdkivs/v2/model/extention_req_data_by_name_and_id.py,sha256=JEOko-rEq9v7t43SrszISQ9wnyjJcUnwgRPMnfXtuxc,4303
|
21
|
+
huaweicloudsdkivs/v2/model/extention_resp_data_by_id_card_image.py,sha256=-VFAo7kTIemnMx3wsA5okw9GFoZHNSthS1ZumYw2nS0,7849
|
22
|
+
huaweicloudsdkivs/v2/model/extention_resp_data_by_name_and_id.py,sha256=C37mz0pekVOZaoplvhO8KvXUvX5iRLD9be22xXTWR60,6829
|
23
|
+
huaweicloudsdkivs/v2/model/idcard_result.py,sha256=gQiX09el7D-OL8cfehYL-byQQfbbvl1-bV999Xk8S1k,8447
|
24
|
+
huaweicloudsdkivs/v2/model/ivs_extention_by_id_card_image_request_body.py,sha256=QGor3RNCVFtCc0NXncXkiu8So0_eX0TAD4A9eLUmQ-w,3995
|
25
|
+
huaweicloudsdkivs/v2/model/ivs_extention_by_id_card_image_request_body_data.py,sha256=SzditvUV8RIlOI25WMckQs3akWpAAsofJafLyud6Ckg,3658
|
26
|
+
huaweicloudsdkivs/v2/model/ivs_extention_by_id_card_image_response_body_result.py,sha256=E2QXqSsr6a9BxPxQykM22QUUybWlrXFyRyA8K4lDe40,5578
|
27
|
+
huaweicloudsdkivs/v2/model/ivs_extention_by_name_and_id_request_body.py,sha256=oaJol64QivlfsZgGorM-pIHrRUvWipgWXO1cbrMz9-k,3965
|
28
|
+
huaweicloudsdkivs/v2/model/ivs_extention_by_name_and_id_request_body_data.py,sha256=zbHPX2AHgcZu4cHKnuu6Uwdzs00IqBGP3NVesaoZ85E,3636
|
29
|
+
huaweicloudsdkivs/v2/model/ivs_extention_by_name_and_id_response_body_result.py,sha256=P6wU2cGRq5MJprQisZoWBOgZlZt4kpgy0ZIbPelYYoE,5540
|
30
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_id_card_image_request_body.py,sha256=mBukyQoIySH6FYKYTZZVDuBdcSz_jy8IFt_KodX-oog,3980
|
31
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_id_card_image_request_body_data.py,sha256=D81qpAA67UFxoXkADn7FbPeVGhhZb0UNy5slZzucEeQ,3615
|
32
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_id_card_image_response_body_result.py,sha256=jzOee6zA2YQXkHkLFSBpGkAL6HnsSqIWseaMz0SNqzU,5414
|
33
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_name_and_id_request_body.py,sha256=J7nSbUnCiTam_eXjDrisT0t9fco5MlYR0fR4bUWAG88,3950
|
34
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_name_and_id_request_body_data.py,sha256=vHGUI_pP1hh8NAdas9essQFxgODjM215c3We-hCqL-o,3625
|
35
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_name_and_id_response_body_result.py,sha256=9yRwx5aebGKvN_xFQ0MhyFkFxsubWA0096wJK0HpcyU,5408
|
36
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_id_card_image_request_body.py,sha256=o9CF1V-6PzaLQGte5K_M-J2A9ShIOhJxetGGOwotIrU,4100
|
37
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_id_card_image_request_body_data.py,sha256=tH4USte8005NSbsY2w9vVSDFedn5TL2MqILKQGwLEsg,3703
|
38
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_id_card_image_response_body_result.py,sha256=wpWiBBct3BAkAwFLgdYBXkUtMEmJMHcY0zkxsgetw0I,5566
|
39
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_name_and_id_request_body.py,sha256=o_E1-kBjqiHjNoza3COhbqPabEkZtYhBlwzjOOSy50M,4070
|
40
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_name_and_id_request_body_data.py,sha256=h18j-hKBmoL5RSMxn3_Z_Za3-1curz1yRDpuR-IAe5M,3713
|
41
|
+
huaweicloudsdkivs/v2/model/ivs_standard_by_video_and_name_and_id_response_body_result.py,sha256=XNDooh9E0NPqu4zRu959O0oA0nZrMy_JKYr0Nb9yADM,5560
|
42
|
+
huaweicloudsdkivs/v2/model/meta.py,sha256=dXhvXEKYHskuTGkDq8qhlAn1MkDxxIsBWs0UI8tUPFQ,3045
|
43
|
+
huaweicloudsdkivs/v2/model/req_data_by_id_card_image.py,sha256=asb7XsilZwDCzVZ0Pd-ZsRQjTI1hQo08FQely-S4hHs,8279
|
44
|
+
huaweicloudsdkivs/v2/model/req_data_by_video_and_id_card_image.py,sha256=iPuPIoYmaoLeP1vuf_BfvNPrAj96xgFcTYEPcIIvmdw,9755
|
45
|
+
huaweicloudsdkivs/v2/model/resp_data_by_id_card_image.py,sha256=JmNCySbfCR7yZPtdXSrdMkvel2ifPAhbIUvZNFtZJAI,8542
|
46
|
+
huaweicloudsdkivs/v2/model/resp_data_by_video_and_id_card_image.py,sha256=UnVXGOvw0x6fca865dImEMpDRBhbNA3VlwU5jVAbbxQ,9644
|
47
|
+
huaweicloudsdkivs/v2/model/standard_req_data_by_name_and_id.py,sha256=jvVc-Sw6R9l5JDqGNtxYZOSoeZ8mA8262_APj156RKg,7706
|
48
|
+
huaweicloudsdkivs/v2/model/standard_req_data_by_video_and_name_and_id.py,sha256=5u84MbAy5vF5RiOUluEwMT7emdYg_OZocrwio7zCiUU,9206
|
49
|
+
huaweicloudsdkivs/v2/model/standard_resp_data_by_name_and_id.py,sha256=nXi5dgHDTEZbJTQHJ6bdPTuczTe3U2kiX3Nwc-LZqNk,7744
|
50
|
+
huaweicloudsdkivs/v2/model/standard_resp_data_by_video_and_name_and_id.py,sha256=UvoisWb2SZLAveFxn3qSOvJII1NKPONY8gkfBZuxOc8,8838
|
51
|
+
huaweicloudsdkivs/v2/model/video_result.py,sha256=z-kCQw1PVg9iDF4uC-wSvYZUepxcv1DUums4fppyi_w,4516
|
52
|
+
huaweicloudsdkivs/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
|
+
huaweicloudsdkivs/v2/region/ivs_region.py,sha256=m9Ur2AxOloSa2Iod9iQB9PkjVCBygJBThRiCfqfWLYY,1101
|
54
|
+
huaweicloudsdkivs-3.1.160.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
55
|
+
huaweicloudsdkivs-3.1.160.dist-info/METADATA,sha256=aT1cEAVlQNVzlwVYQYFfjBZTvXTdVObl6oCkDjfahO4,1064
|
56
|
+
huaweicloudsdkivs-3.1.160.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
57
|
+
huaweicloudsdkivs-3.1.160.dist-info/top_level.txt,sha256=nZmDvv9JC4b7DcDEl-X1_wo5Ju_WlKj_tDyGIWUBKsQ,18
|
58
|
+
huaweicloudsdkivs-3.1.160.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
huaweicloudsdkivs
|