tencentcloud-sdk-python-ocr 3.1.111__py2.py3-none-any.whl → 3.1.112__py2.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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ocr/v20181119/models.py +30 -0
- {tencentcloud_sdk_python_ocr-3.1.111.dist-info → tencentcloud_sdk_python_ocr-3.1.112.dist-info}/METADATA +2 -2
- {tencentcloud_sdk_python_ocr-3.1.111.dist-info → tencentcloud_sdk_python_ocr-3.1.112.dist-info}/RECORD +6 -6
- {tencentcloud_sdk_python_ocr-3.1.111.dist-info → tencentcloud_sdk_python_ocr-3.1.112.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_ocr-3.1.111.dist-info → tencentcloud_sdk_python_ocr-3.1.112.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -17765,6 +17765,10 @@ class MarkInfo(AbstractModel):
|
|
|
17765
17765
|
:type QuestionImagePositions: list of Positions
|
|
17766
17766
|
:param _RightAnswer: <p>题目级正确答案(步骤批改时使用,包含完整解题步骤)</p>
|
|
17767
17767
|
:type RightAnswer: str
|
|
17768
|
+
:param _Subject: <p>学科(如语文、数学、英语)</p>
|
|
17769
|
+
:type Subject: str
|
|
17770
|
+
:param _QuestionType: <p>题型(如选择题、填空题、计算题、应用题、判断题、作文题)</p>
|
|
17771
|
+
:type QuestionType: str
|
|
17768
17772
|
"""
|
|
17769
17773
|
self._MarkItemTitle = None
|
|
17770
17774
|
self._AnswerInfos = None
|
|
@@ -17772,6 +17776,8 @@ class MarkInfo(AbstractModel):
|
|
|
17772
17776
|
self._QuestionPositions = None
|
|
17773
17777
|
self._QuestionImagePositions = None
|
|
17774
17778
|
self._RightAnswer = None
|
|
17779
|
+
self._Subject = None
|
|
17780
|
+
self._QuestionType = None
|
|
17775
17781
|
|
|
17776
17782
|
@property
|
|
17777
17783
|
def MarkItemTitle(self):
|
|
@@ -17839,6 +17845,28 @@ class MarkInfo(AbstractModel):
|
|
|
17839
17845
|
def RightAnswer(self, RightAnswer):
|
|
17840
17846
|
self._RightAnswer = RightAnswer
|
|
17841
17847
|
|
|
17848
|
+
@property
|
|
17849
|
+
def Subject(self):
|
|
17850
|
+
r"""<p>学科(如语文、数学、英语)</p>
|
|
17851
|
+
:rtype: str
|
|
17852
|
+
"""
|
|
17853
|
+
return self._Subject
|
|
17854
|
+
|
|
17855
|
+
@Subject.setter
|
|
17856
|
+
def Subject(self, Subject):
|
|
17857
|
+
self._Subject = Subject
|
|
17858
|
+
|
|
17859
|
+
@property
|
|
17860
|
+
def QuestionType(self):
|
|
17861
|
+
r"""<p>题型(如选择题、填空题、计算题、应用题、判断题、作文题)</p>
|
|
17862
|
+
:rtype: str
|
|
17863
|
+
"""
|
|
17864
|
+
return self._QuestionType
|
|
17865
|
+
|
|
17866
|
+
@QuestionType.setter
|
|
17867
|
+
def QuestionType(self, QuestionType):
|
|
17868
|
+
self._QuestionType = QuestionType
|
|
17869
|
+
|
|
17842
17870
|
|
|
17843
17871
|
def _deserialize(self, params):
|
|
17844
17872
|
self._MarkItemTitle = params.get("MarkItemTitle")
|
|
@@ -17862,6 +17890,8 @@ class MarkInfo(AbstractModel):
|
|
|
17862
17890
|
obj._deserialize(item)
|
|
17863
17891
|
self._QuestionImagePositions.append(obj)
|
|
17864
17892
|
self._RightAnswer = params.get("RightAnswer")
|
|
17893
|
+
self._Subject = params.get("Subject")
|
|
17894
|
+
self._QuestionType = params.get("QuestionType")
|
|
17865
17895
|
memeber_set = set(params.keys())
|
|
17866
17896
|
for name, value in vars(self).items():
|
|
17867
17897
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ocr
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.112
|
|
4
4
|
Summary: Tencent Cloud Ocr 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.112
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=Mq2JsEBUAoVRWhH2ZdmzNAC82kdYoTWlSdIYTDQ0TH0,630
|
|
2
2
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=JIZv0T7mSsIMfQKdQjHDSsF8oW-b9rJTZovBM5qM9xU,7187
|
|
5
|
-
tencentcloud/ocr/v20181119/models.py,sha256=
|
|
5
|
+
tencentcloud/ocr/v20181119/models.py,sha256=OtYIntc2RfOxcRZ7wMY62eNo56yiwBfkvfJPDxPgw60,1383988
|
|
6
6
|
tencentcloud/ocr/v20181119/ocr_client.py,sha256=xEW5nrPuxaL9egKZ27ygbU2NAhPPs7n-rqrsva0P0oA,118985
|
|
7
7
|
tencentcloud/ocr/v20181119/ocr_client_async.py,sha256=gGoyNah1hoKeEl5-Hxb8mb7Qbh7dsk0F8o9JUm1U_IY,94693
|
|
8
|
-
tencentcloud_sdk_python_ocr-3.1.
|
|
9
|
-
tencentcloud_sdk_python_ocr-3.1.
|
|
10
|
-
tencentcloud_sdk_python_ocr-3.1.
|
|
11
|
-
tencentcloud_sdk_python_ocr-3.1.
|
|
8
|
+
tencentcloud_sdk_python_ocr-3.1.112.dist-info/METADATA,sha256=YSd_5xJ8kBcCsm-Cl4IQyLY-4KECGBucg9w-J58GYmc,1497
|
|
9
|
+
tencentcloud_sdk_python_ocr-3.1.112.dist-info/WHEEL,sha256=a5ogxI61vGGBHYbAAwISCXsfU7mxKr76gTpCEmSNOI8,109
|
|
10
|
+
tencentcloud_sdk_python_ocr-3.1.112.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
+
tencentcloud_sdk_python_ocr-3.1.112.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|