tencentcloud-sdk-python-faceid 3.0.1213__tar.gz → 3.0.1215__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-faceid might be problematic. Click here for more details.
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/setup.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud/faceid/v20180301/models.py +26 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud_sdk_python_faceid.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-faceid-3.0.1215/tencentcloud_sdk_python_faceid.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-faceid-3.0.1213/tencentcloud_sdk_python_faceid.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/README.rst +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/setup.cfg +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud/faceid/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud/faceid/v20180301/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud/faceid/v20180301/errorcodes.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud/faceid/v20180301/faceid_client.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud_sdk_python_faceid.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud_sdk_python_faceid.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/tencentcloud_sdk_python_faceid.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/setup.py
RENAMED
|
@@ -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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1215"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Faceid SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1423,9 +1423,15 @@ Base64编码后的大小不超过8M,支持mp4、avi、flv格式。
|
|
|
1423
1423
|
2- 传入的是视频类型
|
|
1424
1424
|
其他 - 返回错误码InvalidParameter
|
|
1425
1425
|
:type FaceInputType: int
|
|
1426
|
+
:param _Encryption: 是否需要对请求信息进行全包体加密; 支持的加密算法:AES-256-CBC、SM4-GCM; 有加密需求的用户可使用此参数,详情请点击左侧链接。
|
|
1427
|
+
:type Encryption: :class:`tencentcloud.faceid.v20180301.models.Encryption`
|
|
1428
|
+
:param _EncryptedBody: 加密后的密文; 加密前的数据格式如下:{"FaceInput":"AAAAA","FaceInputType":1}
|
|
1429
|
+
:type EncryptedBody: str
|
|
1426
1430
|
"""
|
|
1427
1431
|
self._FaceInput = None
|
|
1428
1432
|
self._FaceInputType = None
|
|
1433
|
+
self._Encryption = None
|
|
1434
|
+
self._EncryptedBody = None
|
|
1429
1435
|
|
|
1430
1436
|
@property
|
|
1431
1437
|
def FaceInput(self):
|
|
@@ -1443,10 +1449,30 @@ Base64编码后的大小不超过8M,支持mp4、avi、flv格式。
|
|
|
1443
1449
|
def FaceInputType(self, FaceInputType):
|
|
1444
1450
|
self._FaceInputType = FaceInputType
|
|
1445
1451
|
|
|
1452
|
+
@property
|
|
1453
|
+
def Encryption(self):
|
|
1454
|
+
return self._Encryption
|
|
1455
|
+
|
|
1456
|
+
@Encryption.setter
|
|
1457
|
+
def Encryption(self, Encryption):
|
|
1458
|
+
self._Encryption = Encryption
|
|
1459
|
+
|
|
1460
|
+
@property
|
|
1461
|
+
def EncryptedBody(self):
|
|
1462
|
+
return self._EncryptedBody
|
|
1463
|
+
|
|
1464
|
+
@EncryptedBody.setter
|
|
1465
|
+
def EncryptedBody(self, EncryptedBody):
|
|
1466
|
+
self._EncryptedBody = EncryptedBody
|
|
1467
|
+
|
|
1446
1468
|
|
|
1447
1469
|
def _deserialize(self, params):
|
|
1448
1470
|
self._FaceInput = params.get("FaceInput")
|
|
1449
1471
|
self._FaceInputType = params.get("FaceInputType")
|
|
1472
|
+
if params.get("Encryption") is not None:
|
|
1473
|
+
self._Encryption = Encryption()
|
|
1474
|
+
self._Encryption._deserialize(params.get("Encryption"))
|
|
1475
|
+
self._EncryptedBody = params.get("EncryptedBody")
|
|
1450
1476
|
memeber_set = set(params.keys())
|
|
1451
1477
|
for name, value in vars(self).items():
|
|
1452
1478
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1215
|
tencentcloud-sdk-python-faceid-3.0.1213/tencentcloud_sdk_python_faceid.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1213
|
{tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-faceid-3.0.1213 → tencentcloud-sdk-python-faceid-3.0.1215}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|