flywheel-sdk 20.4.0rc1__py2.py3-none-any.whl → 20.4.4__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.
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +1 -1
- flywheel/models/__init__.py +1 -1
- flywheel/models/cvat_info.py +31 -4
- {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.4.4.dist-info}/METADATA +1 -1
- {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.4.4.dist-info}/RECORD +10 -10
- {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.4.4.dist-info}/WHEEL +0 -0
- {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.4.4.dist-info}/licenses/LICENSE.txt +0 -0
- {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.4.4.dist-info}/top_level.txt +0 -0
flywheel/api_client.py
CHANGED
|
@@ -84,7 +84,7 @@ class ApiClient(object):
|
|
|
84
84
|
self.default_query_params = []
|
|
85
85
|
self.cookie = cookie
|
|
86
86
|
# Set default User-Agent.
|
|
87
|
-
self.user_agent = 'Swagger-Codegen/20.4.
|
|
87
|
+
self.user_agent = 'Swagger-Codegen/20.4.4/python'
|
|
88
88
|
self.last_response = None
|
|
89
89
|
self._version_check_fn = None
|
|
90
90
|
self._context = context
|
flywheel/configuration.py
CHANGED
|
@@ -253,8 +253,8 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
|
|
|
253
253
|
return "Python SDK Debug Report:\n"\
|
|
254
254
|
"OS: {env}\n"\
|
|
255
255
|
"Python Version: {pyversion}\n"\
|
|
256
|
-
"Version of the API: 20.4.
|
|
257
|
-
"SDK Package Version: 20.4.
|
|
256
|
+
"Version of the API: 20.4.4\n"\
|
|
257
|
+
"SDK Package Version: 20.4.4".\
|
|
258
258
|
format(env=sys.platform, pyversion=sys.version)
|
|
259
259
|
|
|
260
260
|
def enable_message_cutoff(self, message_cutoff):
|
flywheel/flywheel.py
CHANGED
flywheel/models/__init__.py
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
Flywheel: API for data import, automated curation, image processing, machine learning workflows, and secure collaboration. # noqa: E501
|
|
8
8
|
|
|
9
|
-
OpenAPI spec version: 20.4.
|
|
9
|
+
OpenAPI spec version: 20.4.4
|
|
10
10
|
|
|
11
11
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
"""
|
flywheel/models/cvat_info.py
CHANGED
|
@@ -26,24 +26,27 @@ class CVATInfo(object):
|
|
|
26
26
|
'task_id': 'int',
|
|
27
27
|
'job_id': 'int',
|
|
28
28
|
'sync_state': 'CVATSyncState',
|
|
29
|
-
'errors': 'list[str]'
|
|
29
|
+
'errors': 'list[str]',
|
|
30
|
+
'error_summary': 'str'
|
|
30
31
|
}
|
|
31
32
|
|
|
32
33
|
attribute_map = {
|
|
33
34
|
'task_id': 'task_id',
|
|
34
35
|
'job_id': 'job_id',
|
|
35
36
|
'sync_state': 'sync_state',
|
|
36
|
-
'errors': 'errors'
|
|
37
|
+
'errors': 'errors',
|
|
38
|
+
'error_summary': 'error_summary'
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
rattribute_map = {
|
|
40
42
|
'task_id': 'task_id',
|
|
41
43
|
'job_id': 'job_id',
|
|
42
44
|
'sync_state': 'sync_state',
|
|
43
|
-
'errors': 'errors'
|
|
45
|
+
'errors': 'errors',
|
|
46
|
+
'error_summary': 'error_summary'
|
|
44
47
|
}
|
|
45
48
|
|
|
46
|
-
def __init__(self, task_id=None, job_id=None, sync_state=None, errors=None): # noqa: E501
|
|
49
|
+
def __init__(self, task_id=None, job_id=None, sync_state=None, errors=None, error_summary=None): # noqa: E501
|
|
47
50
|
"""CVATInfo - a model defined in Swagger"""
|
|
48
51
|
super(CVATInfo, self).__init__()
|
|
49
52
|
|
|
@@ -51,6 +54,7 @@ class CVATInfo(object):
|
|
|
51
54
|
self._job_id = None
|
|
52
55
|
self._sync_state = None
|
|
53
56
|
self._errors = None
|
|
57
|
+
self._error_summary = None
|
|
54
58
|
self.discriminator = None
|
|
55
59
|
self.alt_discriminator = None
|
|
56
60
|
|
|
@@ -62,6 +66,8 @@ class CVATInfo(object):
|
|
|
62
66
|
self.sync_state = sync_state
|
|
63
67
|
if errors is not None:
|
|
64
68
|
self.errors = errors
|
|
69
|
+
if error_summary is not None:
|
|
70
|
+
self.error_summary = error_summary
|
|
65
71
|
|
|
66
72
|
@property
|
|
67
73
|
def task_id(self):
|
|
@@ -147,6 +153,27 @@ class CVATInfo(object):
|
|
|
147
153
|
|
|
148
154
|
self._errors = errors
|
|
149
155
|
|
|
156
|
+
@property
|
|
157
|
+
def error_summary(self):
|
|
158
|
+
"""Gets the error_summary of this CVATInfo.
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
:return: The error_summary of this CVATInfo.
|
|
162
|
+
:rtype: str
|
|
163
|
+
"""
|
|
164
|
+
return self._error_summary
|
|
165
|
+
|
|
166
|
+
@error_summary.setter
|
|
167
|
+
def error_summary(self, error_summary):
|
|
168
|
+
"""Sets the error_summary of this CVATInfo.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param error_summary: The error_summary of this CVATInfo. # noqa: E501
|
|
172
|
+
:type: str
|
|
173
|
+
"""
|
|
174
|
+
|
|
175
|
+
self._error_summary = error_summary
|
|
176
|
+
|
|
150
177
|
|
|
151
178
|
@staticmethod
|
|
152
179
|
def positional_to_model(value):
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
flywheel/__init__.py,sha256=cHiW2b3yaRFfaz68ObkD2r40hK9hV8YrUVuqvipprz8,45074
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
2
|
+
flywheel/api_client.py,sha256=wu6B3BMwdjtiG1l41X0seI3oLNaVWZBGFKkSiTwHTdY,29570
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=SNO91Ci4gt5JXWIG8-f6rfqSqrRX8_rXmrmFXJn004E,10822
|
|
5
5
|
flywheel/drone_login.py,sha256=8nELIBYBJMuPHQ0zdrGjWB20C3OTZbxpFVyxWmQ0kr0,2229
|
|
6
6
|
flywheel/file_spec.py,sha256=0BnFgyH0qsDxuupJG5_g9LX2cLq7JxRiSODN3HdI-ak,2220
|
|
7
7
|
flywheel/finder.py,sha256=h5hxD03Ye4lZJflxh3Ub_zwFS273wWq2wTLf2CQz-lM,6887
|
|
8
|
-
flywheel/flywheel.py,sha256=
|
|
8
|
+
flywheel/flywheel.py,sha256=AeoAaXvDXCvg-WfDkfnC3LLnNVLlI9VXBEjBtoJUv8o,414527
|
|
9
9
|
flywheel/gear_context.py,sha256=cFJs8cC_on6v184HVUTXSSVS9y5ee73QN0lCkPTQ5jk,13701
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=Luybe_pjqufXgw3LHSwPrSWFKrrAH6UU3IvTtSeCoAQ,13604
|
|
@@ -47,7 +47,7 @@ flywheel/api/uids_api.py,sha256=MjH6i7ASSUa1VGIZVuTHIJFelWM7drswXJVhKxk05eg,5032
|
|
|
47
47
|
flywheel/api/upload_api.py,sha256=pMjW-OAIZnjqF05ym8vjPga-vYRq69aDa0zFSMUbxeU,38854
|
|
48
48
|
flywheel/api/users_api.py,sha256=CGylcLYcF0XYIdaeVNpe6I-llsNpyaQq6YlHPmJwzAE,86167
|
|
49
49
|
flywheel/api/views_api.py,sha256=Xk0N-j_CRAglraip5Uw_tzDVfmW7Fy1IgTofZ_RinEI,44765
|
|
50
|
-
flywheel/models/__init__.py,sha256=
|
|
50
|
+
flywheel/models/__init__.py,sha256=EvSlzsY8DNgZrjBMigDb4qjHDmyF9up52mzufvo7drA,42889
|
|
51
51
|
flywheel/models/access_level.py,sha256=zSgO2gWTTSo-p1v49ilz3Q5ZizZ7DESA5P6Ur67fgX0,575
|
|
52
52
|
flywheel/models/access_permission.py,sha256=-IYmy-yb8zecmGZx7iE0bhZW7PvuWpm3zAHr2FwCyLI,5336
|
|
53
53
|
flywheel/models/access_permission_output.py,sha256=faCnvyMYozmSVSlLFYMdJw84hQc3ugxx7LH2JzBfnoE,5202
|
|
@@ -184,7 +184,7 @@ flywheel/models/create_report_input.py,sha256=JpkgTHRQA8TK_K1ViU5utiX_XV0YIO1Zek
|
|
|
184
184
|
flywheel/models/creds.py,sha256=kFhJ7_1zmHzHneoan4XKlJ7iRDIgZKuZFbnjCBQg28o,3876
|
|
185
185
|
flywheel/models/curator.py,sha256=S1yhs6s-gCj-Zqz0NWrXE873xsBq7Ha4Ym82qWeABDs,5726
|
|
186
186
|
flywheel/models/current_user_output.py,sha256=p7Zlfajmtqf3PRbDLBtvGhPKaU6zv2QVRvc5oiYp4GY,17621
|
|
187
|
-
flywheel/models/cvat_info.py,sha256=
|
|
187
|
+
flywheel/models/cvat_info.py,sha256=A7buPcdRdkNanXXu3gE3Hpmx-4Sb3iMw0HVgZshv4Go,7282
|
|
188
188
|
flywheel/models/cvat_settings.py,sha256=e1SaRBO-I6T9cTvKHZYCZAgBKi0N6Vueh9SrAJiRh8g,7688
|
|
189
189
|
flywheel/models/cvat_settings_input.py,sha256=ApMhgrc_sBPtpqCmDXscDhGPmFJOxpvE9Qd7xWq5mlA,7807
|
|
190
190
|
flywheel/models/cvat_sync_state.py,sha256=0VfuWGj-7185nuuITk3g55sf41Y3C8KLXsNtU6r7iIo,601
|
|
@@ -709,8 +709,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
709
709
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
710
710
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
711
711
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
712
|
-
flywheel_sdk-20.4.
|
|
713
|
-
flywheel_sdk-20.4.
|
|
714
|
-
flywheel_sdk-20.4.
|
|
715
|
-
flywheel_sdk-20.4.
|
|
716
|
-
flywheel_sdk-20.4.
|
|
712
|
+
flywheel_sdk-20.4.4.dist-info/licenses/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
713
|
+
flywheel_sdk-20.4.4.dist-info/METADATA,sha256=ijXGWinm2pHwZoGqPM4jEFgxaxWivMbwCvmaABVfivw,1000
|
|
714
|
+
flywheel_sdk-20.4.4.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
715
|
+
flywheel_sdk-20.4.4.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
716
|
+
flywheel_sdk-20.4.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|