flywheel-sdk 19.2.0rc0__py2.py3-none-any.whl → 19.3.0rc0__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/acquisitions_api.py +162 -52
- flywheel/api/analyses_api.py +164 -60
- flywheel/api/collections_api.py +146 -38
- flywheel/api/containers_api.py +58 -52
- flywheel/api/files_api.py +104 -0
- flywheel/api/groups_api.py +114 -10
- flywheel/api/projects_api.py +170 -60
- flywheel/api/sessions_api.py +162 -52
- flywheel/api/subjects_api.py +162 -52
- flywheel/api_client.py +26 -12
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +316 -195
- flywheel/gear_context.py +12 -1
- flywheel/models/__init__.py +1 -1
- flywheel/models/action.py +2 -0
- flywheel/models/azure_creds.py +2 -1
- flywheel/models/features.py +28 -28
- flywheel/models/project_copy_filter.py +4 -31
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/METADATA +1 -1
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/RECORD +23 -23
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.2.0rc0.dist-info → flywheel_sdk-19.3.0rc0.dist-info}/top_level.txt +0 -0
flywheel/gear_context.py
CHANGED
|
@@ -3,6 +3,7 @@ import copy
|
|
|
3
3
|
import json
|
|
4
4
|
import logging
|
|
5
5
|
import os
|
|
6
|
+
import warnings
|
|
6
7
|
|
|
7
8
|
from .client import Client
|
|
8
9
|
|
|
@@ -11,9 +12,19 @@ DEFAULT_GEAR_PATH = "/flywheel/v0"
|
|
|
11
12
|
|
|
12
13
|
|
|
13
14
|
class GearContext(object):
|
|
14
|
-
"""
|
|
15
|
+
"""
|
|
16
|
+
This class is DEPRECATED. Please use the
|
|
17
|
+
`Flywheel Gear Toolkit <https://flywheel-io.gitlab.io/public/gear-toolkit/index.html>`_
|
|
18
|
+
instead.
|
|
19
|
+
|
|
20
|
+
Provides helper functions for gear development
|
|
21
|
+
"""
|
|
15
22
|
|
|
16
23
|
def __init__(self, gear_path=None):
|
|
24
|
+
warnings.warn(
|
|
25
|
+
"Please use the Flywheel Gear Toolkit instead: https://flywheel-io.gitlab.io/public/gear-toolkit/index.html",
|
|
26
|
+
DeprecationWarning
|
|
27
|
+
)
|
|
17
28
|
self._path = os.path.abspath(gear_path or DEFAULT_GEAR_PATH)
|
|
18
29
|
self._client = None
|
|
19
30
|
self._invocation = None
|
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: 19.
|
|
9
|
+
OpenAPI spec version: 19.3.0-rc0
|
|
10
10
|
|
|
11
11
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
"""
|
flywheel/models/action.py
CHANGED
|
@@ -36,6 +36,8 @@ class Action(str, enum.Enum):
|
|
|
36
36
|
FILES_VIEW_CONTENTS = "files_view_contents"
|
|
37
37
|
FILES_DOWNLOAD = "files_download"
|
|
38
38
|
FILES_CREATE_UPLOAD = "files_create_upload"
|
|
39
|
+
FILES_CREATE_BULK = "files_create_bulk"
|
|
40
|
+
FILES_CREATE_SINGLE = "files_create_single"
|
|
39
41
|
FILES_MODIFY_METADATA = "files_modify_metadata"
|
|
40
42
|
FILES_MOVE = "files_move"
|
|
41
43
|
FILES_DELETE_NON_DEVICE_DATA = "files_delete_non_device_data"
|
flywheel/models/azure_creds.py
CHANGED
|
@@ -45,7 +45,8 @@ class AzureCreds(object):
|
|
|
45
45
|
self.alt_discriminator = None
|
|
46
46
|
|
|
47
47
|
self.azure_account_name = azure_account_name
|
|
48
|
-
|
|
48
|
+
if azure_account_key is not None:
|
|
49
|
+
self.azure_account_key = azure_account_key
|
|
49
50
|
|
|
50
51
|
@property
|
|
51
52
|
def azure_account_name(self):
|
flywheel/models/features.py
CHANGED
|
@@ -47,6 +47,7 @@ class Features(object):
|
|
|
47
47
|
'job_prioritization': 'bool',
|
|
48
48
|
'job_tickets': 'bool',
|
|
49
49
|
'jupyter_integration': 'bool',
|
|
50
|
+
'jupyterhub_external_storage': 'bool',
|
|
50
51
|
'ldap_sync': 'bool',
|
|
51
52
|
'multifactor_auth': 'bool',
|
|
52
53
|
'multipart_signed_url': 'bool',
|
|
@@ -58,7 +59,6 @@ class Features(object):
|
|
|
58
59
|
'ohif_v2_adhoc_indexing': 'bool',
|
|
59
60
|
'ohif_v3': 'bool',
|
|
60
61
|
'ohif_v3_beta': 'bool',
|
|
61
|
-
'ohif_v3_datasource': 'str',
|
|
62
62
|
'ohif_v3_default_app': 'bool',
|
|
63
63
|
'ohif_v3_readonly': 'bool',
|
|
64
64
|
'project_export': 'bool',
|
|
@@ -111,6 +111,7 @@ class Features(object):
|
|
|
111
111
|
'job_prioritization': 'job_prioritization',
|
|
112
112
|
'job_tickets': 'job_tickets',
|
|
113
113
|
'jupyter_integration': 'jupyter_integration',
|
|
114
|
+
'jupyterhub_external_storage': 'jupyterhub_external_storage',
|
|
114
115
|
'ldap_sync': 'ldap_sync',
|
|
115
116
|
'multifactor_auth': 'multifactor_auth',
|
|
116
117
|
'multipart_signed_url': 'multipart_signed_url',
|
|
@@ -122,7 +123,6 @@ class Features(object):
|
|
|
122
123
|
'ohif_v2_adhoc_indexing': 'ohif_v2_adhoc_indexing',
|
|
123
124
|
'ohif_v3': 'ohif_v3',
|
|
124
125
|
'ohif_v3_beta': 'ohif_v3_beta',
|
|
125
|
-
'ohif_v3_datasource': 'ohif_v3_datasource',
|
|
126
126
|
'ohif_v3_default_app': 'ohif_v3_default_app',
|
|
127
127
|
'ohif_v3_readonly': 'ohif_v3_readonly',
|
|
128
128
|
'project_export': 'project_export',
|
|
@@ -175,6 +175,7 @@ class Features(object):
|
|
|
175
175
|
'job_prioritization': 'job_prioritization',
|
|
176
176
|
'job_tickets': 'job_tickets',
|
|
177
177
|
'jupyter_integration': 'jupyter_integration',
|
|
178
|
+
'jupyterhub_external_storage': 'jupyterhub_external_storage',
|
|
178
179
|
'ldap_sync': 'ldap_sync',
|
|
179
180
|
'multifactor_auth': 'multifactor_auth',
|
|
180
181
|
'multipart_signed_url': 'multipart_signed_url',
|
|
@@ -186,7 +187,6 @@ class Features(object):
|
|
|
186
187
|
'ohif_v2_adhoc_indexing': 'ohif_v2_adhoc_indexing',
|
|
187
188
|
'ohif_v3': 'ohif_v3',
|
|
188
189
|
'ohif_v3_beta': 'ohif_v3_beta',
|
|
189
|
-
'ohif_v3_datasource': 'ohif_v3_datasource',
|
|
190
190
|
'ohif_v3_default_app': 'ohif_v3_default_app',
|
|
191
191
|
'ohif_v3_readonly': 'ohif_v3_readonly',
|
|
192
192
|
'project_export': 'project_export',
|
|
@@ -212,7 +212,7 @@ class Features(object):
|
|
|
212
212
|
'web_uploader_v2': 'web_uploader_v2'
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
-
def __init__(self, api_enabled_gear_rules=True, auth0=None, audit_trail=False, azureml_integration=False, cold_job_logs=False, collections=False, copy_by_reference=True, core_api=True, crawler=False, data_views_non_21_cfr=True, default_viewer_apps=True, deid_log=False, deid_profile=False, dicom_web_uploader_non_21_cfr=True, dimse=False, elastic_search_primary=False, exchange=False, exchange_admin=False, external_routing=False, gear_access=True, google_analytics=True, healthcare_api=False, job_ask=True, job_prioritization=True, job_tickets=True, jupyter_integration=False, ldap_sync=False, multifactor_auth=False, multipart_signed_url=True, multiproject=False, ohif_multi_subject_view=False, ohif_react=False, ohif_react_beta=False, ohif_slice_order=None, ohif_v2_adhoc_indexing=True, ohif_v3=False, ohif_v3_beta=False,
|
|
215
|
+
def __init__(self, api_enabled_gear_rules=True, auth0=None, audit_trail=False, azureml_integration=False, cold_job_logs=False, collections=False, copy_by_reference=True, core_api=True, crawler=False, data_views_non_21_cfr=True, default_viewer_apps=True, deid_log=False, deid_profile=False, dicom_web_uploader_non_21_cfr=True, dimse=False, elastic_search_primary=False, exchange=False, exchange_admin=False, external_routing=False, gear_access=True, google_analytics=True, healthcare_api=False, job_ask=True, job_prioritization=True, job_tickets=True, jupyter_integration=False, jupyterhub_external_storage=True, ldap_sync=False, multifactor_auth=False, multipart_signed_url=True, multiproject=False, ohif_multi_subject_view=False, ohif_react=False, ohif_react_beta=False, ohif_slice_order=None, ohif_v2_adhoc_indexing=True, ohif_v3=False, ohif_v3_beta=False, ohif_v3_default_app=False, ohif_v3_readonly=True, project_export=True, project_import=True, project_list_uses_stats=False, project_locking=False, reader_tasks=False, rts_sync=False, sentry_logging=None, session_templates_non_21_cfr=True, shared_projects=False, signed_url=False, study_task_status=False, tagging=False, tags_in_lists=True, task_manager_data_views=True, transform_search_fields=True, unsafe_login=False, url_access_apps=False, userpilot=None, validate_classification=False, virus_scan=False, web_uploader_v2=True): # noqa: E501
|
|
216
216
|
"""Features - a model defined in Swagger"""
|
|
217
217
|
super(Features, self).__init__()
|
|
218
218
|
|
|
@@ -242,6 +242,7 @@ class Features(object):
|
|
|
242
242
|
self._job_prioritization = None
|
|
243
243
|
self._job_tickets = None
|
|
244
244
|
self._jupyter_integration = None
|
|
245
|
+
self._jupyterhub_external_storage = None
|
|
245
246
|
self._ldap_sync = None
|
|
246
247
|
self._multifactor_auth = None
|
|
247
248
|
self._multipart_signed_url = None
|
|
@@ -253,7 +254,6 @@ class Features(object):
|
|
|
253
254
|
self._ohif_v2_adhoc_indexing = None
|
|
254
255
|
self._ohif_v3 = None
|
|
255
256
|
self._ohif_v3_beta = None
|
|
256
|
-
self._ohif_v3_datasource = None
|
|
257
257
|
self._ohif_v3_default_app = None
|
|
258
258
|
self._ohif_v3_readonly = None
|
|
259
259
|
self._project_export = None
|
|
@@ -332,6 +332,8 @@ class Features(object):
|
|
|
332
332
|
self.job_tickets = job_tickets
|
|
333
333
|
if jupyter_integration is not None:
|
|
334
334
|
self.jupyter_integration = jupyter_integration
|
|
335
|
+
if jupyterhub_external_storage is not None:
|
|
336
|
+
self.jupyterhub_external_storage = jupyterhub_external_storage
|
|
335
337
|
if ldap_sync is not None:
|
|
336
338
|
self.ldap_sync = ldap_sync
|
|
337
339
|
if multifactor_auth is not None:
|
|
@@ -354,8 +356,6 @@ class Features(object):
|
|
|
354
356
|
self.ohif_v3 = ohif_v3
|
|
355
357
|
if ohif_v3_beta is not None:
|
|
356
358
|
self.ohif_v3_beta = ohif_v3_beta
|
|
357
|
-
if ohif_v3_datasource is not None:
|
|
358
|
-
self.ohif_v3_datasource = ohif_v3_datasource
|
|
359
359
|
if ohif_v3_default_app is not None:
|
|
360
360
|
self.ohif_v3_default_app = ohif_v3_default_app
|
|
361
361
|
if ohif_v3_readonly is not None:
|
|
@@ -949,6 +949,27 @@ class Features(object):
|
|
|
949
949
|
|
|
950
950
|
self._jupyter_integration = jupyter_integration
|
|
951
951
|
|
|
952
|
+
@property
|
|
953
|
+
def jupyterhub_external_storage(self):
|
|
954
|
+
"""Gets the jupyterhub_external_storage of this Features.
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
:return: The jupyterhub_external_storage of this Features.
|
|
958
|
+
:rtype: bool
|
|
959
|
+
"""
|
|
960
|
+
return self._jupyterhub_external_storage
|
|
961
|
+
|
|
962
|
+
@jupyterhub_external_storage.setter
|
|
963
|
+
def jupyterhub_external_storage(self, jupyterhub_external_storage):
|
|
964
|
+
"""Sets the jupyterhub_external_storage of this Features.
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
:param jupyterhub_external_storage: The jupyterhub_external_storage of this Features. # noqa: E501
|
|
968
|
+
:type: bool
|
|
969
|
+
"""
|
|
970
|
+
|
|
971
|
+
self._jupyterhub_external_storage = jupyterhub_external_storage
|
|
972
|
+
|
|
952
973
|
@property
|
|
953
974
|
def ldap_sync(self):
|
|
954
975
|
"""Gets the ldap_sync of this Features.
|
|
@@ -1180,27 +1201,6 @@ class Features(object):
|
|
|
1180
1201
|
|
|
1181
1202
|
self._ohif_v3_beta = ohif_v3_beta
|
|
1182
1203
|
|
|
1183
|
-
@property
|
|
1184
|
-
def ohif_v3_datasource(self):
|
|
1185
|
-
"""Gets the ohif_v3_datasource of this Features.
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
:return: The ohif_v3_datasource of this Features.
|
|
1189
|
-
:rtype: str
|
|
1190
|
-
"""
|
|
1191
|
-
return self._ohif_v3_datasource
|
|
1192
|
-
|
|
1193
|
-
@ohif_v3_datasource.setter
|
|
1194
|
-
def ohif_v3_datasource(self, ohif_v3_datasource):
|
|
1195
|
-
"""Sets the ohif_v3_datasource of this Features.
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
:param ohif_v3_datasource: The ohif_v3_datasource of this Features. # noqa: E501
|
|
1199
|
-
:type: str
|
|
1200
|
-
"""
|
|
1201
|
-
|
|
1202
|
-
self._ohif_v3_datasource = ohif_v3_datasource
|
|
1203
|
-
|
|
1204
1204
|
@property
|
|
1205
1205
|
def ohif_v3_default_app(self):
|
|
1206
1206
|
"""Gets the ohif_v3_default_app of this Features.
|
|
@@ -25,8 +25,7 @@ class ProjectCopyFilter(object):
|
|
|
25
25
|
'exclude_notes': 'bool',
|
|
26
26
|
'exclude_tags': 'bool',
|
|
27
27
|
'include_rules': 'list[str]',
|
|
28
|
-
'exclude_rules': 'list[str]'
|
|
29
|
-
'exclude_empty_containers': 'bool'
|
|
28
|
+
'exclude_rules': 'list[str]'
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
attribute_map = {
|
|
@@ -34,8 +33,7 @@ class ProjectCopyFilter(object):
|
|
|
34
33
|
'exclude_notes': 'exclude_notes',
|
|
35
34
|
'exclude_tags': 'exclude_tags',
|
|
36
35
|
'include_rules': 'include_rules',
|
|
37
|
-
'exclude_rules': 'exclude_rules'
|
|
38
|
-
'exclude_empty_containers': 'exclude_empty_containers'
|
|
36
|
+
'exclude_rules': 'exclude_rules'
|
|
39
37
|
}
|
|
40
38
|
|
|
41
39
|
rattribute_map = {
|
|
@@ -43,11 +41,10 @@ class ProjectCopyFilter(object):
|
|
|
43
41
|
'exclude_notes': 'exclude_notes',
|
|
44
42
|
'exclude_tags': 'exclude_tags',
|
|
45
43
|
'include_rules': 'include_rules',
|
|
46
|
-
'exclude_rules': 'exclude_rules'
|
|
47
|
-
'exclude_empty_containers': 'exclude_empty_containers'
|
|
44
|
+
'exclude_rules': 'exclude_rules'
|
|
48
45
|
}
|
|
49
46
|
|
|
50
|
-
def __init__(self, exclude_analysis=False, exclude_notes=False, exclude_tags=False, include_rules=None, exclude_rules=None
|
|
47
|
+
def __init__(self, exclude_analysis=False, exclude_notes=False, exclude_tags=False, include_rules=None, exclude_rules=None): # noqa: E501
|
|
51
48
|
"""ProjectCopyFilter - a model defined in Swagger"""
|
|
52
49
|
super(ProjectCopyFilter, self).__init__()
|
|
53
50
|
|
|
@@ -56,7 +53,6 @@ class ProjectCopyFilter(object):
|
|
|
56
53
|
self._exclude_tags = None
|
|
57
54
|
self._include_rules = None
|
|
58
55
|
self._exclude_rules = None
|
|
59
|
-
self._exclude_empty_containers = None
|
|
60
56
|
self.discriminator = None
|
|
61
57
|
self.alt_discriminator = None
|
|
62
58
|
|
|
@@ -70,8 +66,6 @@ class ProjectCopyFilter(object):
|
|
|
70
66
|
self.include_rules = include_rules
|
|
71
67
|
if exclude_rules is not None:
|
|
72
68
|
self.exclude_rules = exclude_rules
|
|
73
|
-
if exclude_empty_containers is not None:
|
|
74
|
-
self.exclude_empty_containers = exclude_empty_containers
|
|
75
69
|
|
|
76
70
|
@property
|
|
77
71
|
def exclude_analysis(self):
|
|
@@ -178,27 +172,6 @@ class ProjectCopyFilter(object):
|
|
|
178
172
|
|
|
179
173
|
self._exclude_rules = exclude_rules
|
|
180
174
|
|
|
181
|
-
@property
|
|
182
|
-
def exclude_empty_containers(self):
|
|
183
|
-
"""Gets the exclude_empty_containers of this ProjectCopyFilter.
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
:return: The exclude_empty_containers of this ProjectCopyFilter.
|
|
187
|
-
:rtype: bool
|
|
188
|
-
"""
|
|
189
|
-
return self._exclude_empty_containers
|
|
190
|
-
|
|
191
|
-
@exclude_empty_containers.setter
|
|
192
|
-
def exclude_empty_containers(self, exclude_empty_containers):
|
|
193
|
-
"""Sets the exclude_empty_containers of this ProjectCopyFilter.
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
:param exclude_empty_containers: The exclude_empty_containers of this ProjectCopyFilter. # noqa: E501
|
|
197
|
-
:type: bool
|
|
198
|
-
"""
|
|
199
|
-
|
|
200
|
-
self._exclude_empty_containers = exclude_empty_containers
|
|
201
|
-
|
|
202
175
|
|
|
203
176
|
@staticmethod
|
|
204
177
|
def positional_to_model(value):
|
|
@@ -1,52 +1,52 @@
|
|
|
1
1
|
flywheel/__init__.py,sha256=k90flLAHQmy4g2aosIjzNWr6OWo1ivZAErqHjtYT0Gs,44933
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
2
|
+
flywheel/api_client.py,sha256=gxAxOd9tXmnTSMBYXEGEIx1i9y8O6T6unjC2hIPZpvk,29574
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=5qyTyCtaUnWRBzN4oJS1GpGZKP9ifgMviDJA-S6LiSU,8647
|
|
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=ueECCweO48TTAJXudzh3xBbqyhV-Vbzt1NnPUSqEU9U,6739
|
|
8
|
-
flywheel/flywheel.py,sha256=
|
|
9
|
-
flywheel/gear_context.py,sha256=
|
|
8
|
+
flywheel/flywheel.py,sha256=bHnHryR9La-PU7yUGaP1maDzNeOzpK-mDWBjxVg69BA,399818
|
|
9
|
+
flywheel/gear_context.py,sha256=cFJs8cC_on6v184HVUTXSSVS9y5ee73QN0lCkPTQ5jk,13701
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=hRPcmGLghBkiZ06jyFEE39iEdP0-6o4pDWj2Ocl7mSc,13119
|
|
12
12
|
flywheel/util.py,sha256=_97fv5qRvxvSFi1eHsli4VszoOBhYMhtC26hz_ukrEA,2198
|
|
13
13
|
flywheel/view_builder.py,sha256=0hGDvjiljUuyuHezawx-TSO5Nv885No6rGf3lb3qvxo,17758
|
|
14
14
|
flywheel/api/__init__.py,sha256=S0erMpSONSRh8RUbADUNnAczZwUhe-Lt9s8E4TMGH5M,1760
|
|
15
|
-
flywheel/api/acquisitions_api.py,sha256=
|
|
16
|
-
flywheel/api/analyses_api.py,sha256=
|
|
15
|
+
flywheel/api/acquisitions_api.py,sha256=i8s8FL_LqB2OKvbrzk-7cow6yETIF_uDR0tuJyLNlNg,212577
|
|
16
|
+
flywheel/api/analyses_api.py,sha256=AKoMwGk3v_tzprvmAUHFjjbRrPATYDEeQMk6iKMQlZ4,114225
|
|
17
17
|
flywheel/api/audit_trail_api.py,sha256=dFinVdTCqO1TsCoRndTT1qqV61J2FWMyYS2FqQwqP54,21492
|
|
18
18
|
flywheel/api/auth_api.py,sha256=w6wscqpCv-Rc9n9Q1KogyeaByM9YhiDNl4upvErV674,3703
|
|
19
19
|
flywheel/api/batch_api.py,sha256=zpeo0U6ubk-AxlCQ_j-rTmVuKpjJue9icFq-zBP5ZVo,23287
|
|
20
20
|
flywheel/api/bulk_api.py,sha256=kSIQUYBHS37yDKdM1TMNYNLhXTrIkfTYznRhtVuEUS0,4776
|
|
21
21
|
flywheel/api/change_log_api.py,sha256=Nln-mDIsCRLcsDCBDo8e9sYv1jTCf6ql_JX9SfP5-ds,10003
|
|
22
|
-
flywheel/api/collections_api.py,sha256=
|
|
22
|
+
flywheel/api/collections_api.py,sha256=Ykc_9-9_yxJ3sBASflU0ZvOU9WLais-fmYdhZqiUuW0,163044
|
|
23
23
|
flywheel/api/config_api.py,sha256=rBURhYVyT22BpOjDIQ_2iJ3UOnfspgjowQnz2cKND_s,9584
|
|
24
|
-
flywheel/api/containers_api.py,sha256=
|
|
24
|
+
flywheel/api/containers_api.py,sha256=Uf8OO2PlyKL-rXgGYeSNHPWWAEDZ8z9010Dj8Qfj0Is,206500
|
|
25
25
|
flywheel/api/data_view_executions_api.py,sha256=vdQ3vRbebC2InZp0s7WUMGxJjRiq_aaXLrYIHi2lk4s,21544
|
|
26
26
|
flywheel/api/dataexplorer_api.py,sha256=nxNB0E_1VcOceyms6GdiS5o-UT0OlShSwuxOCL7hnAM,37588
|
|
27
27
|
flywheel/api/devices_api.py,sha256=jAQ9IRm0fqJWHuJwhTKmOIDAVNNjfdVCSIX2XvRl2hk,39374
|
|
28
28
|
flywheel/api/dimse_api.py,sha256=rTPcy5CTFFnpx1YWSuhsWMNjW4c9nTV85Q8EY1QcGN8,29974
|
|
29
29
|
flywheel/api/download_api.py,sha256=fFOA8DgRq1yknYQ6YZC26fcaZDhGIDnGuWMjvYD_Ans,10590
|
|
30
|
-
flywheel/api/files_api.py,sha256=
|
|
30
|
+
flywheel/api/files_api.py,sha256=eZZRPtuE_cadPocqt1lHN_de2YXF7-T-wM82J-D6jVY,49618
|
|
31
31
|
flywheel/api/gears_api.py,sha256=7vlmbJtmaVBnPoI3BRPc3EoQ28raVZh0x-5TobeTqcI,73128
|
|
32
|
-
flywheel/api/groups_api.py,sha256=
|
|
32
|
+
flywheel/api/groups_api.py,sha256=NW7PhIu6_5HoO690dvjnnTFAZe79C7ma7XNewhuabIQ,109346
|
|
33
33
|
flywheel/api/jobs_api.py,sha256=7FULp8eICFjCQLhYGHHOaAdaF86D6Pc98eGocaLeByU,73651
|
|
34
34
|
flywheel/api/jupyterlab_servers_api.py,sha256=FiwtzKL6SClFXiBnzbf5dtjHCjonMQ3jB7FHlrFNGQM,9180
|
|
35
35
|
flywheel/api/modalities_api.py,sha256=upQC0IB11zP08V2j0zXrd0b9A0xwr-u9pQNrOCO9N-U,20862
|
|
36
36
|
flywheel/api/packfiles_api.py,sha256=3IQHwnmjCYBw7L4gJIxnZwpGdIT6LqEZPb-eIHG3t8o,3847
|
|
37
|
-
flywheel/api/projects_api.py,sha256=
|
|
37
|
+
flywheel/api/projects_api.py,sha256=wpHLD2iQZ4TiIy8xs4xPjz2sWjOThfUX-wqtEjJxdnE,328904
|
|
38
38
|
flywheel/api/reports_api.py,sha256=6WW5CroopwNrw6GBE0_R34stBWbyqUXgRoyiHkAAZE4,36251
|
|
39
39
|
flywheel/api/resolve_api.py,sha256=6yuXytZnhpFBPz0x5TN1B57jtRn9kuSqth6WtXWSYaw,11603
|
|
40
40
|
flywheel/api/roles_api.py,sha256=ncA8ys7TC6Z_ciwzRR-uZZ_hsUAAl5oVDVjZIqfg7HA,20692
|
|
41
|
-
flywheel/api/sessions_api.py,sha256=
|
|
41
|
+
flywheel/api/sessions_api.py,sha256=DYIAZFT64UK_dDPTjI85ynQJ4fwgJM_53mFgzW3BPS8,222282
|
|
42
42
|
flywheel/api/site_api.py,sha256=IrcUYtt57L446ggUu_tx-sYqm92JWFGGjNY1uWiFIS0,57373
|
|
43
|
-
flywheel/api/subjects_api.py,sha256=
|
|
43
|
+
flywheel/api/subjects_api.py,sha256=Cqvo3dIGL92LEqp_ePKIAV-BTgDvJSFlhF_pRCTl6wo,226195
|
|
44
44
|
flywheel/api/tree_api.py,sha256=f7o8PO-BdTZ7MOl2cMMP5KC49z1Rl0QBx0_pqROOKQE,12031
|
|
45
45
|
flywheel/api/uids_api.py,sha256=mFStWRKbdgymR_FYDHq8EsOiTfDKjz2XEcWT1XQUYtQ,4946
|
|
46
46
|
flywheel/api/upload_api.py,sha256=emrzAmurhGb-uBI7Ewckbn5DyP9LBkfn6OI1zxhKnb8,38540
|
|
47
47
|
flywheel/api/users_api.py,sha256=Dkg5AhRULro1Wcg0qrYt_bwrVMLpvBYXjlnr3uU0Zeo,83240
|
|
48
48
|
flywheel/api/views_api.py,sha256=ZbPYA_sOQ9qnOjkOUeioV0v08VPbsuuOnMP3EBySEVY,44375
|
|
49
|
-
flywheel/models/__init__.py,sha256=
|
|
49
|
+
flywheel/models/__init__.py,sha256=BX0-_Mh0hOynMpPGP3BIsfj7WkLgjBhaXI7s1GhZGEM,42813
|
|
50
50
|
flywheel/models/access_level.py,sha256=zSgO2gWTTSo-p1v49ilz3Q5ZizZ7DESA5P6Ur67fgX0,575
|
|
51
51
|
flywheel/models/access_permission.py,sha256=-IYmy-yb8zecmGZx7iE0bhZW7PvuWpm3zAHr2FwCyLI,5336
|
|
52
52
|
flywheel/models/access_permission_output.py,sha256=faCnvyMYozmSVSlLFYMdJw84hQc3ugxx7LH2JzBfnoE,5202
|
|
@@ -64,7 +64,7 @@ flywheel/models/acquisition_parents.py,sha256=G-mcOdBtSJZQPbD6mSgfez3AZ-FYQf_oXg
|
|
|
64
64
|
flywheel/models/acquisition_template_options.py,sha256=bbvtpv0DD24UjtJLA6tuC2NgifwoLAap7Lno6j8Eeuk,7436
|
|
65
65
|
flywheel/models/acquisition_upsert_input.py,sha256=OKyzNC8CvrhKwl4ikcmDR2OTgEt3Kncp_NLhM_B6ct4,9423
|
|
66
66
|
flywheel/models/acquisition_upsert_output.py,sha256=KvOcTqnJq_oct1XzblgdetZJKRviSTTAKa8TmYBL4dY,6498
|
|
67
|
-
flywheel/models/action.py,sha256=
|
|
67
|
+
flywheel/models/action.py,sha256=IYd86GMGW41kQYvr3f8SL9TMfsia6kxJzHHTwR4Ig40,3414
|
|
68
68
|
flywheel/models/adhoc_analysis_input.py,sha256=aysSK-CiV76WN5tUYvNObBivFDYjIcu-NEXTky3TWzw,6633
|
|
69
69
|
flywheel/models/analysis.py,sha256=o2cG94BT-qsA1ITF89XNHw2usGoRiDjzvNVU4_Zyy7A,516
|
|
70
70
|
flywheel/models/analysis_container_output.py,sha256=Vptxnt3l9_UPQfaJ6EntrPxZL20OxAEem8FoJ_8Lysk,963
|
|
@@ -91,7 +91,7 @@ flywheel/models/auth_session_output.py,sha256=wu3opWmaF9O9NAPf-qLSkTx47OOhMJ5ERC
|
|
|
91
91
|
flywheel/models/avatars.py,sha256=rvnQEtfdlEwt5GPSZ-NwnINO0c58MJxEZdZMj-hPrX8,5762
|
|
92
92
|
flywheel/models/aws_creds.py,sha256=c7Gk7rQ2Qu6scHPLwFUu_8RHu5GMqXuWdWVPoe09Ti0,5661
|
|
93
93
|
flywheel/models/aws_storage.py,sha256=Z_h1SJzBgJH8AKrol9vQmrfGfG2IYNN3Yl5WD_lwR4E,9249
|
|
94
|
-
flywheel/models/azure_creds.py,sha256=
|
|
94
|
+
flywheel/models/azure_creds.py,sha256=YSe6kfxVZQWgXxA1SitQbbtoibOj6SnFmUguXFhkM0U,5572
|
|
95
95
|
flywheel/models/azure_ml_account.py,sha256=EuiipOG5FH0WMWvupxmpd4XkN618Q9oIQeitMe72dp8,5136
|
|
96
96
|
flywheel/models/azure_ml_initialization.py,sha256=tLi5iDETyY4V2qTI_UILNswUYNMpHFH3AeJcUAfP8zg,7585
|
|
97
97
|
flywheel/models/azure_ml_integration.py,sha256=BqSOhHO0p5VlivYRmtEpx-3jlNAH2UsLblolgPtUgGQ,6531
|
|
@@ -240,7 +240,7 @@ flywheel/models/egress_provider_id.py,sha256=1dKUprJXQii7w_sdUr_hB_PebJDkLgZt9yj
|
|
|
240
240
|
flywheel/models/exchange_storage.py,sha256=J5ki23OZ78IU-snirVzcbXd6Jjuek4FjwHGG1FTlIzM,6719
|
|
241
241
|
flywheel/models/executor_info.py,sha256=nbvDWU_yEi_xwpF52y186xEgKkuKSjmBLGOGqmVA_Wg,9216
|
|
242
242
|
flywheel/models/export_templates.py,sha256=fAW_tPW2tBT1DhuzF4nS7GwSgvqHkFLED--Swl4ndco,5495
|
|
243
|
-
flywheel/models/features.py,sha256
|
|
243
|
+
flywheel/models/features.py,sha256=ZgAhUYRjGd18abB680oUH_vUor7rUX4_bTnTU-PPjRo,52659
|
|
244
244
|
flywheel/models/field_change.py,sha256=H0QoBOIJuzgBsryMejJnhu5Vzwa2FpZ2ChQV7NnAgLU,7027
|
|
245
245
|
flywheel/models/field_change_log_document.py,sha256=-G5oxplkcregMMHywMAXuexl5x21PRe5X2SQxaIaAj0,7091
|
|
246
246
|
flywheel/models/file.py,sha256=SkL9vxFcvaTwveNQ8TO-33CnJ_EJttLSLf9iFInhSgw,27877
|
|
@@ -477,7 +477,7 @@ flywheel/models/project_aet_input.py,sha256=W8mzPlcJyc2KKgLCe05TpQdHmpy3mdJG8-eA
|
|
|
477
477
|
flywheel/models/project_catalog_list_output.py,sha256=xeqKCNfqOmT4ms_6DQjqR5Uz6moTSAH_tkZbM6X9am8,542
|
|
478
478
|
flywheel/models/project_contact.py,sha256=WiCoHfnq62ThKUss5hRCGhVGHv7YI_q5Un2OdqZlZIw,5266
|
|
479
479
|
flywheel/models/project_container_output.py,sha256=ucS7vWJhh_ApVHqVZH5KNiVEkRpu2pVFdcMeS6sTTdE,1485
|
|
480
|
-
flywheel/models/project_copy_filter.py,sha256=
|
|
480
|
+
flywheel/models/project_copy_filter.py,sha256=wF2beP3GOFdtNdYoweMXHCaiYQ_uEdPJyrwH9j_cVD4,7970
|
|
481
481
|
flywheel/models/project_copy_input.py,sha256=BR1AMjA3M77BNI1eBy2pm7bLOV-wlzFvWpuvnlAUfoU,6030
|
|
482
482
|
flywheel/models/project_copy_output.py,sha256=VBNZPXCni0fMWoSj1s_hBhHkyZkMBXgF3hJnLTcI5jo,5939
|
|
483
483
|
flywheel/models/project_copy_status.py,sha256=I1UPavaYxo3NDsLOn0-Y7ZlZ-N0Ml7II04NJ7WIZtZ4,657
|
|
@@ -705,8 +705,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
705
705
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
706
706
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
707
707
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
708
|
-
flywheel_sdk-19.
|
|
709
|
-
flywheel_sdk-19.
|
|
710
|
-
flywheel_sdk-19.
|
|
711
|
-
flywheel_sdk-19.
|
|
712
|
-
flywheel_sdk-19.
|
|
708
|
+
flywheel_sdk-19.3.0rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
709
|
+
flywheel_sdk-19.3.0rc0.dist-info/METADATA,sha256=z4ggWHB_VMxhbg7nNP6Ag72uVNmN1M_nM30AOm2BuXo,973
|
|
710
|
+
flywheel_sdk-19.3.0rc0.dist-info/WHEEL,sha256=TJ49d73sNs10F0aze1W_bTW2P_X7-F4YXOlBqoqA-jY,109
|
|
711
|
+
flywheel_sdk-19.3.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
712
|
+
flywheel_sdk-19.3.0rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|