tencentcloud-sdk-python-faceid 3.1.27__tar.gz → 3.1.40__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.
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/setup.py +1 -1
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud/faceid/v20180301/models.py +16 -20
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud_sdk_python_faceid.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_faceid-3.1.40/tencentcloud_sdk_python_faceid.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_faceid-3.1.27/tencentcloud_sdk_python_faceid.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/README.rst +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/setup.cfg +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud/faceid/__init__.py +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud/faceid/v20180301/__init__.py +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud/faceid/v20180301/errorcodes.py +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud/faceid/v20180301/faceid_client.py +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud/faceid/v20180301/faceid_client_async.py +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud_sdk_python_faceid.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud_sdk_python_faceid.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_faceid-3.1.27 → tencentcloud_sdk_python_faceid-3.1.40}/tencentcloud_sdk_python_faceid.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-faceid
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.40
|
|
4
4
|
Summary: Tencent Cloud Faceid SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.40
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-faceid',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.40,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Faceid SDK for Python',
|
|
@@ -7259,17 +7259,15 @@ class ImageRecognitionRequest(AbstractModel):
|
|
|
7259
7259
|
|
|
7260
7260
|
def __init__(self):
|
|
7261
7261
|
r"""
|
|
7262
|
-
:param _IdCard:
|
|
7262
|
+
:param _IdCard: <p>身份证号</p>
|
|
7263
7263
|
:type IdCard: str
|
|
7264
|
-
:param _Name:
|
|
7264
|
+
:param _Name: <p>姓名。中文请使用UTF-8编码。</p>
|
|
7265
7265
|
:type Name: str
|
|
7266
|
-
:param _ImageBase64:
|
|
7267
|
-
Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。
|
|
7268
|
-
请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。
|
|
7266
|
+
:param _ImageBase64: <p>用于人脸比对的照片,图片的Base64值;<br>Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。<br>请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。</p>
|
|
7269
7267
|
:type ImageBase64: str
|
|
7270
|
-
:param _Optional:
|
|
7268
|
+
:param _Optional: <p>本接口不需要传递此参数。</p>
|
|
7271
7269
|
:type Optional: str
|
|
7272
|
-
:param _Encryption:
|
|
7270
|
+
:param _Encryption: <p>敏感数据加密信息。对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。</p>
|
|
7273
7271
|
:type Encryption: :class:`tencentcloud.faceid.v20180301.models.Encryption`
|
|
7274
7272
|
"""
|
|
7275
7273
|
self._IdCard = None
|
|
@@ -7280,7 +7278,7 @@ Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。
|
|
|
7280
7278
|
|
|
7281
7279
|
@property
|
|
7282
7280
|
def IdCard(self):
|
|
7283
|
-
r"""
|
|
7281
|
+
r"""<p>身份证号</p>
|
|
7284
7282
|
:rtype: str
|
|
7285
7283
|
"""
|
|
7286
7284
|
return self._IdCard
|
|
@@ -7291,7 +7289,7 @@ Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。
|
|
|
7291
7289
|
|
|
7292
7290
|
@property
|
|
7293
7291
|
def Name(self):
|
|
7294
|
-
r"""
|
|
7292
|
+
r"""<p>姓名。中文请使用UTF-8编码。</p>
|
|
7295
7293
|
:rtype: str
|
|
7296
7294
|
"""
|
|
7297
7295
|
return self._Name
|
|
@@ -7302,9 +7300,7 @@ Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。
|
|
|
7302
7300
|
|
|
7303
7301
|
@property
|
|
7304
7302
|
def ImageBase64(self):
|
|
7305
|
-
r"""
|
|
7306
|
-
Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。
|
|
7307
|
-
请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。
|
|
7303
|
+
r"""<p>用于人脸比对的照片,图片的Base64值;<br>Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。<br>请使用标准的Base64编码方式(带=补位),编码规范参考RFC4648。</p>
|
|
7308
7304
|
:rtype: str
|
|
7309
7305
|
"""
|
|
7310
7306
|
return self._ImageBase64
|
|
@@ -7315,7 +7311,7 @@ Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。
|
|
|
7315
7311
|
|
|
7316
7312
|
@property
|
|
7317
7313
|
def Optional(self):
|
|
7318
|
-
r"""
|
|
7314
|
+
r"""<p>本接口不需要传递此参数。</p>
|
|
7319
7315
|
:rtype: str
|
|
7320
7316
|
"""
|
|
7321
7317
|
return self._Optional
|
|
@@ -7326,7 +7322,7 @@ Base64编码后的图片数据大小不超过3M,仅支持jpg、png格式。
|
|
|
7326
7322
|
|
|
7327
7323
|
@property
|
|
7328
7324
|
def Encryption(self):
|
|
7329
|
-
r"""
|
|
7325
|
+
r"""<p>敏感数据加密信息。对传入信息(姓名、身份证号)有加密需求的用户可使用此参数,详情请点击左侧链接。</p>
|
|
7330
7326
|
:rtype: :class:`tencentcloud.faceid.v20180301.models.Encryption`
|
|
7331
7327
|
"""
|
|
7332
7328
|
return self._Encryption
|
|
@@ -7361,11 +7357,11 @@ class ImageRecognitionResponse(AbstractModel):
|
|
|
7361
7357
|
|
|
7362
7358
|
def __init__(self):
|
|
7363
7359
|
r"""
|
|
7364
|
-
:param _Sim:
|
|
7360
|
+
:param _Sim: <p>相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)</p>
|
|
7365
7361
|
:type Sim: float
|
|
7366
|
-
:param _Result:
|
|
7362
|
+
:param _Result: <p>业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分</p>
|
|
7367
7363
|
:type Result: str
|
|
7368
|
-
:param _Description:
|
|
7364
|
+
:param _Description: <p>业务结果描述。</p>
|
|
7369
7365
|
:type Description: str
|
|
7370
7366
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7371
7367
|
:type RequestId: str
|
|
@@ -7377,7 +7373,7 @@ class ImageRecognitionResponse(AbstractModel):
|
|
|
7377
7373
|
|
|
7378
7374
|
@property
|
|
7379
7375
|
def Sim(self):
|
|
7380
|
-
r"""
|
|
7376
|
+
r"""<p>相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)</p>
|
|
7381
7377
|
:rtype: float
|
|
7382
7378
|
"""
|
|
7383
7379
|
return self._Sim
|
|
@@ -7388,7 +7384,7 @@ class ImageRecognitionResponse(AbstractModel):
|
|
|
7388
7384
|
|
|
7389
7385
|
@property
|
|
7390
7386
|
def Result(self):
|
|
7391
|
-
r"""
|
|
7387
|
+
r"""<p>业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分</p>
|
|
7392
7388
|
:rtype: str
|
|
7393
7389
|
"""
|
|
7394
7390
|
return self._Result
|
|
@@ -7399,7 +7395,7 @@ class ImageRecognitionResponse(AbstractModel):
|
|
|
7399
7395
|
|
|
7400
7396
|
@property
|
|
7401
7397
|
def Description(self):
|
|
7402
|
-
r"""
|
|
7398
|
+
r"""<p>业务结果描述。</p>
|
|
7403
7399
|
:rtype: str
|
|
7404
7400
|
"""
|
|
7405
7401
|
return self._Description
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-faceid
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.40
|
|
4
4
|
Summary: Tencent Cloud Faceid SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.40
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.40
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.27
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|