Skip to content

Commit 8724a43

Browse files
committed
Release MonitorExamination.
1 parent 9380ca7 commit 8724a43

File tree

5 files changed

+54
-3
lines changed

5 files changed

+54
-3
lines changed

aliyun-python-sdk-facebody/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-04-06 Version: 1.2.19
2+
- Release MonitorExamination.
3+
14
2021-03-11 Version: 1.2.18
25
- Update DetectIPCPedestrian.
36

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.2.18'
1+
__version__ = '1.2.19'

aliyun-python-sdk-facebody/aliyunsdkfacebody/request/v20191230/DetectLivingFaceRequest.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@ def get_Taskss(self):
3737
def set_Taskss(self, Taskss):
3838
for depth1 in range(len(Taskss)):
3939
if Taskss[depth1].get('ImageURL') is not None:
40-
self.add_body_params('Tasks.' + str(depth1 + 1) + '.ImageURL', Taskss[depth1].get('ImageURL'))
40+
self.add_body_params('Tasks.' + str(depth1 + 1) + '.ImageURL', Taskss[depth1].get('ImageURL'))
41+
if Taskss[depth1].get('ImageData') is not None:
42+
self.add_body_params('Tasks.' + str(depth1 + 1) + '.ImageData', Taskss[depth1].get('ImageData'))
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkfacebody.endpoint import endpoint_data
22+
23+
class MonitorExaminationRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'facebody', '2019-12-30', 'MonitorExamination','facebody')
27+
self.set_method('POST')
28+
if hasattr(self, "endpoint_map"):
29+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
30+
if hasattr(self, "endpoint_regional"):
31+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
32+
33+
34+
def get_Type(self):
35+
return self.get_body_params().get('Type')
36+
37+
def set_Type(self,Type):
38+
self.add_body_params('Type', Type)
39+
40+
def get_ImageURL(self):
41+
return self.get_body_params().get('ImageURL')
42+
43+
def set_ImageURL(self,ImageURL):
44+
self.add_body_params('ImageURL', ImageURL)

aliyun-python-sdk-facebody/aliyunsdkfacebody/request/v20191230/RecognizePublicFaceRequest.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@ def get_Tasks(self):
3737
def set_Tasks(self, Tasks):
3838
for depth1 in range(len(Tasks)):
3939
if Tasks[depth1].get('ImageURL') is not None:
40-
self.add_body_params('Task.' + str(depth1 + 1) + '.ImageURL', Tasks[depth1].get('ImageURL'))
40+
self.add_body_params('Task.' + str(depth1 + 1) + '.ImageURL', Tasks[depth1].get('ImageURL'))
41+
if Tasks[depth1].get('ImageData') is not None:
42+
self.add_body_params('Task.' + str(depth1 + 1) + '.ImageData', Tasks[depth1].get('ImageData'))

0 commit comments

Comments
 (0)