flywheel-sdk 19.1.0__py2.py3-none-any.whl → 19.2.0__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/bulk_api.py +2 -0
- flywheel/api/files_api.py +5 -1
- flywheel/api/users_api.py +10 -0
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +8 -1
- flywheel/models/__init__.py +1 -1
- flywheel/models/features.py +1 -1
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.2.0.dist-info}/METADATA +2 -2
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.2.0.dist-info}/RECORD +13 -13
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.2.0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.2.0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.2.0.dist-info}/top_level.txt +0 -0
flywheel/api/bulk_api.py
CHANGED
|
@@ -33,6 +33,7 @@ class BulkApi(object):
|
|
|
33
33
|
def bulk_move_sessions(self, body, **kwargs): # noqa: E501
|
|
34
34
|
"""Perform a bulk move of sessions to either a subject or project
|
|
35
35
|
|
|
36
|
+
Move sessions
|
|
36
37
|
This method makes a synchronous HTTP request by default.
|
|
37
38
|
|
|
38
39
|
:param BulkMoveInput body: (required)
|
|
@@ -58,6 +59,7 @@ class BulkApi(object):
|
|
|
58
59
|
def bulk_move_sessions_with_http_info(self, body, **kwargs): # noqa: E501
|
|
59
60
|
"""Perform a bulk move of sessions to either a subject or project
|
|
60
61
|
|
|
62
|
+
Move sessions
|
|
61
63
|
This method makes a synchronous HTTP request by default.
|
|
62
64
|
|
|
63
65
|
:param BulkMoveInput body: (required)
|
flywheel/api/files_api.py
CHANGED
|
@@ -1100,6 +1100,7 @@ class FilesApi(object):
|
|
|
1100
1100
|
This method makes a synchronous HTTP request by default.
|
|
1101
1101
|
|
|
1102
1102
|
:param FileUpsertInput body: (required)
|
|
1103
|
+
:param bool force_update:
|
|
1103
1104
|
:param bool async_: Perform the request asynchronously
|
|
1104
1105
|
:return: FileUpsertOutput
|
|
1105
1106
|
"""
|
|
@@ -1126,11 +1127,12 @@ class FilesApi(object):
|
|
|
1126
1127
|
This method makes a synchronous HTTP request by default.
|
|
1127
1128
|
|
|
1128
1129
|
:param FileUpsertInput body: (required)
|
|
1130
|
+
:param bool force_update:
|
|
1129
1131
|
:param bool async_: Perform the request asynchronously
|
|
1130
1132
|
:return: FileUpsertOutput
|
|
1131
1133
|
"""
|
|
1132
1134
|
|
|
1133
|
-
all_params = ['body',] # noqa: E501
|
|
1135
|
+
all_params = ['body','force_update',] # noqa: E501
|
|
1134
1136
|
all_params.append('async_')
|
|
1135
1137
|
all_params.append('_return_http_data_only')
|
|
1136
1138
|
all_params.append('_preload_content')
|
|
@@ -1156,6 +1158,8 @@ class FilesApi(object):
|
|
|
1156
1158
|
path_params = {}
|
|
1157
1159
|
|
|
1158
1160
|
query_params = []
|
|
1161
|
+
if 'force_update' in params:
|
|
1162
|
+
query_params.append(('force_update', params['force_update'])) # noqa: E501
|
|
1159
1163
|
|
|
1160
1164
|
header_params = {}
|
|
1161
1165
|
|
flywheel/api/users_api.py
CHANGED
|
@@ -33,6 +33,7 @@ class UsersApi(object):
|
|
|
33
33
|
def add_user(self, body, **kwargs): # noqa: E501
|
|
34
34
|
"""Add a new user
|
|
35
35
|
|
|
36
|
+
Add a new user
|
|
36
37
|
This method makes a synchronous HTTP request by default.
|
|
37
38
|
|
|
38
39
|
:param UserInput body: (required)
|
|
@@ -58,6 +59,7 @@ class UsersApi(object):
|
|
|
58
59
|
def add_user_with_http_info(self, body, **kwargs): # noqa: E501
|
|
59
60
|
"""Add a new user
|
|
60
61
|
|
|
62
|
+
Add a new user
|
|
61
63
|
This method makes a synchronous HTTP request by default.
|
|
62
64
|
|
|
63
65
|
:param UserInput body: (required)
|
|
@@ -138,6 +140,7 @@ class UsersApi(object):
|
|
|
138
140
|
def delete_user(self, user_id, **kwargs): # noqa: E501
|
|
139
141
|
"""Delete a user
|
|
140
142
|
|
|
143
|
+
Delete a user
|
|
141
144
|
This method makes a synchronous HTTP request by default.
|
|
142
145
|
|
|
143
146
|
:param str user_id: (required)
|
|
@@ -163,6 +166,7 @@ class UsersApi(object):
|
|
|
163
166
|
def delete_user_with_http_info(self, user_id, **kwargs): # noqa: E501
|
|
164
167
|
"""Delete a user
|
|
165
168
|
|
|
169
|
+
Delete a user
|
|
166
170
|
This method makes a synchronous HTTP request by default.
|
|
167
171
|
|
|
168
172
|
:param str user_id: (required)
|
|
@@ -1047,6 +1051,7 @@ class UsersApi(object):
|
|
|
1047
1051
|
def get_user_acquisitions(self, uid, **kwargs): # noqa: E501
|
|
1048
1052
|
"""Get all acquisitions that belong to the given user.
|
|
1049
1053
|
|
|
1054
|
+
Get all acquisitions that belong to the given user.
|
|
1050
1055
|
This method makes a synchronous HTTP request by default.
|
|
1051
1056
|
|
|
1052
1057
|
:param str uid: (required)
|
|
@@ -1079,6 +1084,7 @@ class UsersApi(object):
|
|
|
1079
1084
|
def get_user_acquisitions_with_http_info(self, uid, **kwargs): # noqa: E501
|
|
1080
1085
|
"""Get all acquisitions that belong to the given user.
|
|
1081
1086
|
|
|
1087
|
+
Get all acquisitions that belong to the given user.
|
|
1082
1088
|
This method makes a synchronous HTTP request by default.
|
|
1083
1089
|
|
|
1084
1090
|
:param str uid: (required)
|
|
@@ -1519,6 +1525,7 @@ class UsersApi(object):
|
|
|
1519
1525
|
def get_user_projects(self, uid, **kwargs): # noqa: E501
|
|
1520
1526
|
"""Get all projects that belong to the given user.
|
|
1521
1527
|
|
|
1528
|
+
Get all projects that belong to the given user.
|
|
1522
1529
|
This method makes a synchronous HTTP request by default.
|
|
1523
1530
|
|
|
1524
1531
|
:param str uid: (required)
|
|
@@ -1551,6 +1558,7 @@ class UsersApi(object):
|
|
|
1551
1558
|
def get_user_projects_with_http_info(self, uid, **kwargs): # noqa: E501
|
|
1552
1559
|
"""Get all projects that belong to the given user.
|
|
1553
1560
|
|
|
1561
|
+
Get all projects that belong to the given user.
|
|
1554
1562
|
This method makes a synchronous HTTP request by default.
|
|
1555
1563
|
|
|
1556
1564
|
:param str uid: (required)
|
|
@@ -1872,6 +1880,7 @@ class UsersApi(object):
|
|
|
1872
1880
|
def modify_user(self, uid, body, **kwargs): # noqa: E501
|
|
1873
1881
|
"""Update the specified user
|
|
1874
1882
|
|
|
1883
|
+
Update the specified user
|
|
1875
1884
|
This method makes a synchronous HTTP request by default.
|
|
1876
1885
|
|
|
1877
1886
|
:param str uid: (required)
|
|
@@ -1899,6 +1908,7 @@ class UsersApi(object):
|
|
|
1899
1908
|
def modify_user_with_http_info(self, uid, body, **kwargs): # noqa: E501
|
|
1900
1909
|
"""Update the specified user
|
|
1901
1910
|
|
|
1911
|
+
Update the specified user
|
|
1902
1912
|
This method makes a synchronous HTTP request by default.
|
|
1903
1913
|
|
|
1904
1914
|
:param str uid: (required)
|
flywheel/api_client.py
CHANGED
|
@@ -81,7 +81,7 @@ class ApiClient(object):
|
|
|
81
81
|
self.default_query_params = []
|
|
82
82
|
self.cookie = cookie
|
|
83
83
|
# Set default User-Agent.
|
|
84
|
-
self.user_agent = 'Swagger-Codegen/19.
|
|
84
|
+
self.user_agent = 'Swagger-Codegen/19.2.0/python'
|
|
85
85
|
self.last_response = None
|
|
86
86
|
self._version_check_fn = None
|
|
87
87
|
self._context = context
|
flywheel/configuration.py
CHANGED
|
@@ -252,6 +252,6 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
|
|
|
252
252
|
return "Python SDK Debug Report:\n"\
|
|
253
253
|
"OS: {env}\n"\
|
|
254
254
|
"Python Version: {pyversion}\n"\
|
|
255
|
-
"Version of the API: 19.
|
|
256
|
-
"SDK Package Version: 19.
|
|
255
|
+
"Version of the API: 19.2.0\n"\
|
|
256
|
+
"SDK Package Version: 19.2.0".\
|
|
257
257
|
format(env=sys.platform, pyversion=sys.version)
|
flywheel/flywheel.py
CHANGED
|
@@ -40,7 +40,7 @@ from flywheel.view_builder import ViewBuilder
|
|
|
40
40
|
from flywheel.finder import Finder
|
|
41
41
|
import flywheel.api
|
|
42
42
|
|
|
43
|
-
SDK_VERSION = "19.
|
|
43
|
+
SDK_VERSION = "19.2.0"
|
|
44
44
|
|
|
45
45
|
def config_from_api_key(api_key):
|
|
46
46
|
parts = api_key.split(':')
|
|
@@ -1344,6 +1344,7 @@ class Flywheel:
|
|
|
1344
1344
|
def bulk_move_sessions(self, body, **kwargs): # noqa: E501
|
|
1345
1345
|
"""Perform a bulk move of sessions to either a subject or project
|
|
1346
1346
|
|
|
1347
|
+
Move sessions
|
|
1347
1348
|
|
|
1348
1349
|
:param BulkMoveInput body: (required)
|
|
1349
1350
|
:param bool async_: Perform the request asynchronously
|
|
@@ -3115,6 +3116,7 @@ class Flywheel:
|
|
|
3115
3116
|
Create or update a file
|
|
3116
3117
|
|
|
3117
3118
|
:param FileUpsertInput body: (required)
|
|
3119
|
+
:param bool force_update:
|
|
3118
3120
|
:param bool async_: Perform the request asynchronously
|
|
3119
3121
|
:return: FileUpsertOutput
|
|
3120
3122
|
"""
|
|
@@ -6930,6 +6932,7 @@ class Flywheel:
|
|
|
6930
6932
|
def add_user(self, body, **kwargs): # noqa: E501
|
|
6931
6933
|
"""Add a new user
|
|
6932
6934
|
|
|
6935
|
+
Add a new user
|
|
6933
6936
|
|
|
6934
6937
|
:param UserInput body: (required)
|
|
6935
6938
|
:param bool async_: Perform the request asynchronously
|
|
@@ -6941,6 +6944,7 @@ class Flywheel:
|
|
|
6941
6944
|
def delete_user(self, user_id, **kwargs): # noqa: E501
|
|
6942
6945
|
"""Delete a user
|
|
6943
6946
|
|
|
6947
|
+
Delete a user
|
|
6944
6948
|
|
|
6945
6949
|
:param str user_id: (required)
|
|
6946
6950
|
:param bool async_: Perform the request asynchronously
|
|
@@ -7061,6 +7065,7 @@ class Flywheel:
|
|
|
7061
7065
|
def get_user_acquisitions(self, uid, **kwargs): # noqa: E501
|
|
7062
7066
|
"""Get all acquisitions that belong to the given user.
|
|
7063
7067
|
|
|
7068
|
+
Get all acquisitions that belong to the given user.
|
|
7064
7069
|
|
|
7065
7070
|
:param str uid: (required)
|
|
7066
7071
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
@@ -7129,6 +7134,7 @@ class Flywheel:
|
|
|
7129
7134
|
def get_user_projects(self, uid, **kwargs): # noqa: E501
|
|
7130
7135
|
"""Get all projects that belong to the given user.
|
|
7131
7136
|
|
|
7137
|
+
Get all projects that belong to the given user.
|
|
7132
7138
|
|
|
7133
7139
|
:param str uid: (required)
|
|
7134
7140
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
@@ -7178,6 +7184,7 @@ class Flywheel:
|
|
|
7178
7184
|
def modify_user(self, uid, body, **kwargs): # noqa: E501
|
|
7179
7185
|
"""Update the specified user
|
|
7180
7186
|
|
|
7187
|
+
Update the specified user
|
|
7181
7188
|
|
|
7182
7189
|
:param str uid: (required)
|
|
7183
7190
|
:param ModifyUserInput body: (required)
|
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.2.0
|
|
10
10
|
|
|
11
11
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
"""
|
flywheel/models/features.py
CHANGED
|
@@ -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, ohif_v3_datasource=
|
|
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, ohif_v3_datasource='framethrower', 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
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: flywheel-sdk
|
|
3
|
-
Version: 19.
|
|
3
|
+
Version: 19.2.0
|
|
4
4
|
Summary: Flywheel SDK
|
|
5
5
|
Home-page:
|
|
6
6
|
Author-email: support@flywheel.io
|
|
7
|
-
License:
|
|
7
|
+
License: Other/Proprietary
|
|
8
8
|
Project-URL: Documentation, https://flywheel-io.gitlab.io/product/backend/sdk/branches/master/python
|
|
9
9
|
Project-URL: Source, https://gitlab.com/flywheel-io/product/backend/core
|
|
10
10
|
Keywords: Swagger,Flywheel API,flywheel
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
flywheel/__init__.py,sha256=k90flLAHQmy4g2aosIjzNWr6OWo1ivZAErqHjtYT0Gs,44933
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
2
|
+
flywheel/api_client.py,sha256=0qsZPh0jtrY-yH61e3f0fbCID2n26Poqr7eTXtZIGhg,28936
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256
|
|
4
|
+
flywheel/configuration.py,sha256=vJPWNeltmiUCxHA-pY1TYkiweqLsiJ9FnnN_24cBsu8,8639
|
|
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=
|
|
8
|
+
flywheel/flywheel.py,sha256=M-IR7VTjsRDUxgjqbOoQZAamyaA4T9ajEtWdHEQ2MUo,394543
|
|
9
9
|
flywheel/gear_context.py,sha256=xOjNzpReJPAKhdpfpQ-gDwsDoIdxAcS5CG-b1pJ69-o,13338
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=hRPcmGLghBkiZ06jyFEE39iEdP0-6o4pDWj2Ocl7mSc,13119
|
|
@@ -17,7 +17,7 @@ flywheel/api/analyses_api.py,sha256=FCatFzJ9VyTJ8mMZL8zsiymsigyhgr4cvaUc0aC2J0w,
|
|
|
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
|
-
flywheel/api/bulk_api.py,sha256=
|
|
20
|
+
flywheel/api/bulk_api.py,sha256=kSIQUYBHS37yDKdM1TMNYNLhXTrIkfTYznRhtVuEUS0,4776
|
|
21
21
|
flywheel/api/change_log_api.py,sha256=Nln-mDIsCRLcsDCBDo8e9sYv1jTCf6ql_JX9SfP5-ds,10003
|
|
22
22
|
flywheel/api/collections_api.py,sha256=IZeCioCfQpVhXPz81mp0zcp7JRGSjXldpzdTpa8iQBI,158729
|
|
23
23
|
flywheel/api/config_api.py,sha256=rBURhYVyT22BpOjDIQ_2iJ3UOnfspgjowQnz2cKND_s,9584
|
|
@@ -27,7 +27,7 @@ flywheel/api/dataexplorer_api.py,sha256=nxNB0E_1VcOceyms6GdiS5o-UT0OlShSwuxOCL7h
|
|
|
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=zwtv0aSpvRsKDC0yTrj0WsL03w3WMtuwdB1ioOdS6cY,45743
|
|
31
31
|
flywheel/api/gears_api.py,sha256=7vlmbJtmaVBnPoI3BRPc3EoQ28raVZh0x-5TobeTqcI,73128
|
|
32
32
|
flywheel/api/groups_api.py,sha256=h8lOXjpuVDB32isLSqFjtTfoI5quHi_WBeBZNliHSdA,105316
|
|
33
33
|
flywheel/api/jobs_api.py,sha256=7FULp8eICFjCQLhYGHHOaAdaF86D6Pc98eGocaLeByU,73651
|
|
@@ -44,9 +44,9 @@ flywheel/api/subjects_api.py,sha256=g7wF73DbnsGAe_oOMpdNLeEut_SEVwD0LD-1pFvH_T4,
|
|
|
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
|
-
flywheel/api/users_api.py,sha256=
|
|
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=4O89w_WgdMk6HbF5vxN4WvaA98p8tExL1c4aCh81U7k,42809
|
|
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
|
|
@@ -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=-0sS61Ukx2NF7ll4PVC2QHtD96mtCUMytuNwRDzeHbY,52468
|
|
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
|
|
@@ -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.2.0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
709
|
+
flywheel_sdk-19.2.0.dist-info/METADATA,sha256=ibFdB1PqmlibdNh8F-KBAP7uGi1Q7CYkeMxb9lTLWzU,970
|
|
710
|
+
flywheel_sdk-19.2.0.dist-info/WHEEL,sha256=AHX6tWk3qWuce7vKLrj7lnulVHEdWoltgauo8bgCXgU,109
|
|
711
|
+
flywheel_sdk-19.2.0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
712
|
+
flywheel_sdk-19.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|