flywheel-sdk 21.2.0rc0__py3-none-any.whl → 21.3.0__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/__init__.py +1 -0
- flywheel/api/acquisitions_api.py +4 -4
- flywheel/api/analyses_api.py +2 -2
- flywheel/api/audit_trail_api.py +2 -2
- flywheel/api/collections_api.py +8 -8
- flywheel/api/containers_api.py +4 -4
- flywheel/api/custom_filters_api.py +2 -2
- flywheel/api/data_view_executions_api.py +2 -2
- flywheel/api/dataexplorer_api.py +2 -2
- flywheel/api/devices_api.py +5 -5
- flywheel/api/files_api.py +2 -2
- flywheel/api/form_responses_api.py +2 -2
- flywheel/api/gears_api.py +2 -2
- flywheel/api/groups_api.py +4 -4
- flywheel/api/jobs_api.py +2 -2
- flywheel/api/modalities_api.py +2 -2
- flywheel/api/projects_api.py +14 -14
- flywheel/api/protocols_api.py +2 -2
- flywheel/api/reports_api.py +2 -2
- flywheel/api/roles_api.py +2 -2
- flywheel/api/sessions_api.py +8 -8
- flywheel/api/site_api.py +2 -2
- flywheel/api/staffing_pools_api.py +2 -2
- flywheel/api/subjects_api.py +6 -6
- flywheel/api/tasks_api.py +6 -10
- flywheel/api/tree_api.py +2 -2
- flywheel/api/users_api.py +14 -14
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +53 -53
- flywheel/models/__init__.py +1 -0
- flywheel/models/container_type.py +2 -0
- flywheel/models/core_workflows_form_responses_models_form_parents.py +139 -4
- flywheel/models/custom_field.py +4 -4
- flywheel/models/features.py +124 -97
- flywheel/models/project_container_output.py +1 -0
- flywheel/models/project_group_info.py +190 -0
- flywheel/models/project_list_output.py +31 -1
- flywheel/models/project_node.py +1 -0
- flywheel/models/project_output.py +31 -1
- flywheel/models/protocol.py +32 -4
- flywheel/models/search_parent_project.py +1 -0
- {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/METADATA +3 -2
- {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/RECORD +46 -45
- {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-21.2.0rc0.dist-info → flywheel_sdk-21.3.0.dist-info}/licenses/LICENSE.txt +0 -0
|
@@ -26,6 +26,7 @@ if TYPE_CHECKING:
|
|
|
26
26
|
from flywheel.models.ldap_sync_status import LdapSyncStatus # noqa: F401,E501
|
|
27
27
|
from flywheel.models.locked import Locked # noqa: F401,E501
|
|
28
28
|
from flywheel.models.note import Note # noqa: F401,E501
|
|
29
|
+
from flywheel.models.project_group_info import ProjectGroupInfo # noqa: F401,E501
|
|
29
30
|
from flywheel.models.project_parents import ProjectParents # noqa: F401,E501
|
|
30
31
|
from flywheel.models.project_settings_output import ProjectSettingsOutput # noqa: F401,E501
|
|
31
32
|
from flywheel.models.project_stats import ProjectStats # noqa: F401,E501
|
|
@@ -41,6 +42,7 @@ class ProjectListOutput(ProjectMixin):
|
|
|
41
42
|
'label': 'str',
|
|
42
43
|
'description': 'str',
|
|
43
44
|
'group': 'str',
|
|
45
|
+
'group_info': 'ProjectGroupInfo',
|
|
44
46
|
'parents': 'ProjectParents',
|
|
45
47
|
'editions': 'Edition',
|
|
46
48
|
'providers': 'Providers',
|
|
@@ -72,6 +74,7 @@ class ProjectListOutput(ProjectMixin):
|
|
|
72
74
|
'label': 'label',
|
|
73
75
|
'description': 'description',
|
|
74
76
|
'group': 'group',
|
|
77
|
+
'group_info': 'group_info',
|
|
75
78
|
'parents': 'parents',
|
|
76
79
|
'editions': 'editions',
|
|
77
80
|
'providers': 'providers',
|
|
@@ -103,6 +106,7 @@ class ProjectListOutput(ProjectMixin):
|
|
|
103
106
|
'label': 'label',
|
|
104
107
|
'description': 'description',
|
|
105
108
|
'group': 'group',
|
|
109
|
+
'group_info': 'group_info',
|
|
106
110
|
'parents': 'parents',
|
|
107
111
|
'editions': 'editions',
|
|
108
112
|
'providers': 'providers',
|
|
@@ -129,7 +133,7 @@ class ProjectListOutput(ProjectMixin):
|
|
|
129
133
|
'settings': 'settings'
|
|
130
134
|
}
|
|
131
135
|
|
|
132
|
-
def __init__(self, id=None, label=None, description=None, group=None, parents=None, editions=None, providers=None, ldap_sync=None, permissions=None, files=None, info=None, info_exists=None, notes=None, tags=None, templates=None, join_origin=None, analyses=None, locked=None, copyable=None, copy_status=None, copy_failure_reason=None, copy_of=None, original_copy_of=None, stats=None, revision=None, modified=None, created=None, settings=None): # noqa: E501
|
|
136
|
+
def __init__(self, id=None, label=None, description=None, group=None, group_info=None, parents=None, editions=None, providers=None, ldap_sync=None, permissions=None, files=None, info=None, info_exists=None, notes=None, tags=None, templates=None, join_origin=None, analyses=None, locked=None, copyable=None, copy_status=None, copy_failure_reason=None, copy_of=None, original_copy_of=None, stats=None, revision=None, modified=None, created=None, settings=None): # noqa: E501
|
|
133
137
|
"""ProjectListOutput - a model defined in Swagger"""
|
|
134
138
|
super(ProjectListOutput, self).__init__()
|
|
135
139
|
|
|
@@ -137,6 +141,7 @@ class ProjectListOutput(ProjectMixin):
|
|
|
137
141
|
self._label = None
|
|
138
142
|
self._description = None
|
|
139
143
|
self._group = None
|
|
144
|
+
self._group_info = None
|
|
140
145
|
self._parents = None
|
|
141
146
|
self._editions = None
|
|
142
147
|
self._providers = None
|
|
@@ -169,6 +174,8 @@ class ProjectListOutput(ProjectMixin):
|
|
|
169
174
|
self.label = label
|
|
170
175
|
self.description = description
|
|
171
176
|
self.group = group
|
|
177
|
+
if group_info is not None:
|
|
178
|
+
self.group_info = group_info
|
|
172
179
|
self.parents = parents
|
|
173
180
|
self.editions = editions
|
|
174
181
|
self.providers = providers
|
|
@@ -272,6 +279,7 @@ class ProjectListOutput(ProjectMixin):
|
|
|
272
279
|
def group(self):
|
|
273
280
|
"""Gets the group of this ProjectListOutput.
|
|
274
281
|
|
|
282
|
+
Use `group_info` instead
|
|
275
283
|
|
|
276
284
|
:return: The group of this ProjectListOutput.
|
|
277
285
|
:rtype: str
|
|
@@ -282,6 +290,7 @@ class ProjectListOutput(ProjectMixin):
|
|
|
282
290
|
def group(self, group):
|
|
283
291
|
"""Sets the group of this ProjectListOutput.
|
|
284
292
|
|
|
293
|
+
Use `group_info` instead
|
|
285
294
|
|
|
286
295
|
:param group: The group of this ProjectListOutput. # noqa: E501
|
|
287
296
|
:type: str
|
|
@@ -289,6 +298,27 @@ class ProjectListOutput(ProjectMixin):
|
|
|
289
298
|
|
|
290
299
|
self._group = group
|
|
291
300
|
|
|
301
|
+
@property
|
|
302
|
+
def group_info(self):
|
|
303
|
+
"""Gets the group_info of this ProjectListOutput.
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
:return: The group_info of this ProjectListOutput.
|
|
307
|
+
:rtype: ProjectGroupInfo
|
|
308
|
+
"""
|
|
309
|
+
return self._group_info
|
|
310
|
+
|
|
311
|
+
@group_info.setter
|
|
312
|
+
def group_info(self, group_info):
|
|
313
|
+
"""Sets the group_info of this ProjectListOutput.
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
:param group_info: The group_info of this ProjectListOutput. # noqa: E501
|
|
317
|
+
:type: ProjectGroupInfo
|
|
318
|
+
"""
|
|
319
|
+
|
|
320
|
+
self._group_info = group_info
|
|
321
|
+
|
|
292
322
|
@property
|
|
293
323
|
def parents(self):
|
|
294
324
|
"""Gets the parents of this ProjectListOutput.
|
flywheel/models/project_node.py
CHANGED
|
@@ -27,6 +27,7 @@ if TYPE_CHECKING:
|
|
|
27
27
|
from flywheel.models.ldap_sync_status import LdapSyncStatus # noqa: F401,E501
|
|
28
28
|
from flywheel.models.locked import Locked # noqa: F401,E501
|
|
29
29
|
from flywheel.models.note import Note # noqa: F401,E501
|
|
30
|
+
from flywheel.models.project_group_info import ProjectGroupInfo # noqa: F401,E501
|
|
30
31
|
from flywheel.models.project_output import ProjectOutput # noqa: F401,E501
|
|
31
32
|
from flywheel.models.project_parents import ProjectParents # noqa: F401,E501
|
|
32
33
|
from flywheel.models.project_settings_output import ProjectSettingsOutput # noqa: F401,E501
|
|
@@ -27,6 +27,7 @@ if TYPE_CHECKING:
|
|
|
27
27
|
from flywheel.models.ldap_sync_status import LdapSyncStatus # noqa: F401,E501
|
|
28
28
|
from flywheel.models.locked import Locked # noqa: F401,E501
|
|
29
29
|
from flywheel.models.note import Note # noqa: F401,E501
|
|
30
|
+
from flywheel.models.project_group_info import ProjectGroupInfo # noqa: F401,E501
|
|
30
31
|
from flywheel.models.project_parents import ProjectParents # noqa: F401,E501
|
|
31
32
|
from flywheel.models.project_settings_output import ProjectSettingsOutput # noqa: F401,E501
|
|
32
33
|
from flywheel.models.project_stats import ProjectStats # noqa: F401,E501
|
|
@@ -42,6 +43,7 @@ class ProjectOutput(ProjectMixin):
|
|
|
42
43
|
'label': 'str',
|
|
43
44
|
'description': 'str',
|
|
44
45
|
'group': 'str',
|
|
46
|
+
'group_info': 'ProjectGroupInfo',
|
|
45
47
|
'parents': 'ProjectParents',
|
|
46
48
|
'editions': 'Edition',
|
|
47
49
|
'providers': 'Providers',
|
|
@@ -73,6 +75,7 @@ class ProjectOutput(ProjectMixin):
|
|
|
73
75
|
'label': 'label',
|
|
74
76
|
'description': 'description',
|
|
75
77
|
'group': 'group',
|
|
78
|
+
'group_info': 'group_info',
|
|
76
79
|
'parents': 'parents',
|
|
77
80
|
'editions': 'editions',
|
|
78
81
|
'providers': 'providers',
|
|
@@ -104,6 +107,7 @@ class ProjectOutput(ProjectMixin):
|
|
|
104
107
|
'label': 'label',
|
|
105
108
|
'description': 'description',
|
|
106
109
|
'group': 'group',
|
|
110
|
+
'group_info': 'group_info',
|
|
107
111
|
'parents': 'parents',
|
|
108
112
|
'editions': 'editions',
|
|
109
113
|
'providers': 'providers',
|
|
@@ -130,7 +134,7 @@ class ProjectOutput(ProjectMixin):
|
|
|
130
134
|
'stats': 'stats'
|
|
131
135
|
}
|
|
132
136
|
|
|
133
|
-
def __init__(self, id=None, label=None, description=None, group=None, parents=None, editions=None, providers=None, ldap_sync=None, permissions=None, files=None, info=None, info_exists=None, notes=None, tags=None, templates=None, join_origin=None, analyses=None, settings=None, locked=None, revision=None, modified=None, created=None, copyable=None, copy_status=None, copy_failure_reason=None, copy_of=None, original_copy_of=None, stats=None): # noqa: E501
|
|
137
|
+
def __init__(self, id=None, label=None, description=None, group=None, group_info=None, parents=None, editions=None, providers=None, ldap_sync=None, permissions=None, files=None, info=None, info_exists=None, notes=None, tags=None, templates=None, join_origin=None, analyses=None, settings=None, locked=None, revision=None, modified=None, created=None, copyable=None, copy_status=None, copy_failure_reason=None, copy_of=None, original_copy_of=None, stats=None): # noqa: E501
|
|
134
138
|
"""ProjectOutput - a model defined in Swagger"""
|
|
135
139
|
super(ProjectOutput, self).__init__()
|
|
136
140
|
|
|
@@ -138,6 +142,7 @@ class ProjectOutput(ProjectMixin):
|
|
|
138
142
|
self._label = None
|
|
139
143
|
self._description = None
|
|
140
144
|
self._group = None
|
|
145
|
+
self._group_info = None
|
|
141
146
|
self._parents = None
|
|
142
147
|
self._editions = None
|
|
143
148
|
self._providers = None
|
|
@@ -170,6 +175,8 @@ class ProjectOutput(ProjectMixin):
|
|
|
170
175
|
self.label = label
|
|
171
176
|
self.description = description
|
|
172
177
|
self.group = group
|
|
178
|
+
if group_info is not None:
|
|
179
|
+
self.group_info = group_info
|
|
173
180
|
self.parents = parents
|
|
174
181
|
self.editions = editions
|
|
175
182
|
self.providers = providers
|
|
@@ -272,6 +279,7 @@ class ProjectOutput(ProjectMixin):
|
|
|
272
279
|
def group(self):
|
|
273
280
|
"""Gets the group of this ProjectOutput.
|
|
274
281
|
|
|
282
|
+
Use `group_info` instead
|
|
275
283
|
|
|
276
284
|
:return: The group of this ProjectOutput.
|
|
277
285
|
:rtype: str
|
|
@@ -282,6 +290,7 @@ class ProjectOutput(ProjectMixin):
|
|
|
282
290
|
def group(self, group):
|
|
283
291
|
"""Sets the group of this ProjectOutput.
|
|
284
292
|
|
|
293
|
+
Use `group_info` instead
|
|
285
294
|
|
|
286
295
|
:param group: The group of this ProjectOutput. # noqa: E501
|
|
287
296
|
:type: str
|
|
@@ -289,6 +298,27 @@ class ProjectOutput(ProjectMixin):
|
|
|
289
298
|
|
|
290
299
|
self._group = group
|
|
291
300
|
|
|
301
|
+
@property
|
|
302
|
+
def group_info(self):
|
|
303
|
+
"""Gets the group_info of this ProjectOutput.
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
:return: The group_info of this ProjectOutput.
|
|
307
|
+
:rtype: ProjectGroupInfo
|
|
308
|
+
"""
|
|
309
|
+
return self._group_info
|
|
310
|
+
|
|
311
|
+
@group_info.setter
|
|
312
|
+
def group_info(self, group_info):
|
|
313
|
+
"""Sets the group_info of this ProjectOutput.
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
:param group_info: The group_info of this ProjectOutput. # noqa: E501
|
|
317
|
+
:type: ProjectGroupInfo
|
|
318
|
+
"""
|
|
319
|
+
|
|
320
|
+
self._group_info = group_info
|
|
321
|
+
|
|
292
322
|
@property
|
|
293
323
|
def parents(self):
|
|
294
324
|
"""Gets the parents of this ProjectOutput.
|
flywheel/models/protocol.py
CHANGED
|
@@ -22,6 +22,7 @@ from typing import TYPE_CHECKING
|
|
|
22
22
|
if TYPE_CHECKING:
|
|
23
23
|
from flywheel.models.container_reference import ContainerReference # noqa: F401,E501
|
|
24
24
|
from flywheel.models.custom_form import CustomForm # noqa: F401,E501
|
|
25
|
+
from flywheel.models.origin import Origin # noqa: F401,E501
|
|
25
26
|
from flywheel.models.protocol_e_signature_config import ProtocolESignatureConfig # noqa: F401,E501
|
|
26
27
|
from flywheel.models.protocol_status import ProtocolStatus # noqa: F401,E501
|
|
27
28
|
from flywheel.models.reader_task_config import ReaderTaskConfig # noqa: F401,E501
|
|
@@ -42,7 +43,8 @@ class Protocol(object):
|
|
|
42
43
|
'task_type': 'str',
|
|
43
44
|
'completion_tags': 'list[str]',
|
|
44
45
|
'notes': 'str',
|
|
45
|
-
'esignature_config': 'ProtocolESignatureConfig'
|
|
46
|
+
'esignature_config': 'ProtocolESignatureConfig',
|
|
47
|
+
'modified_by': 'Origin'
|
|
46
48
|
}
|
|
47
49
|
|
|
48
50
|
attribute_map = {
|
|
@@ -59,7 +61,8 @@ class Protocol(object):
|
|
|
59
61
|
'task_type': 'task_type',
|
|
60
62
|
'completion_tags': 'completion_tags',
|
|
61
63
|
'notes': 'notes',
|
|
62
|
-
'esignature_config': 'esignature_config'
|
|
64
|
+
'esignature_config': 'esignature_config',
|
|
65
|
+
'modified_by': 'modified_by'
|
|
63
66
|
}
|
|
64
67
|
|
|
65
68
|
rattribute_map = {
|
|
@@ -76,10 +79,11 @@ class Protocol(object):
|
|
|
76
79
|
'task_type': 'task_type',
|
|
77
80
|
'completion_tags': 'completion_tags',
|
|
78
81
|
'notes': 'notes',
|
|
79
|
-
'esignature_config': 'esignature_config'
|
|
82
|
+
'esignature_config': 'esignature_config',
|
|
83
|
+
'modified_by': 'modified_by'
|
|
80
84
|
}
|
|
81
85
|
|
|
82
|
-
def __init__(self, id=None, label=None, form=None, protocol_config=None, created=None, modified=None, replaced=None, version=None, status=None, parent_ref=None, task_type=None, completion_tags=None, notes=None, esignature_config=None): # noqa: E501
|
|
86
|
+
def __init__(self, id=None, label=None, form=None, protocol_config=None, created=None, modified=None, replaced=None, version=None, status=None, parent_ref=None, task_type=None, completion_tags=None, notes=None, esignature_config=None, modified_by=None): # noqa: E501
|
|
83
87
|
"""Protocol - a model defined in Swagger"""
|
|
84
88
|
super(Protocol, self).__init__()
|
|
85
89
|
|
|
@@ -97,6 +101,7 @@ class Protocol(object):
|
|
|
97
101
|
self._completion_tags = None
|
|
98
102
|
self._notes = None
|
|
99
103
|
self._esignature_config = None
|
|
104
|
+
self._modified_by = None
|
|
100
105
|
self.discriminator = None
|
|
101
106
|
self.alt_discriminator = None
|
|
102
107
|
|
|
@@ -121,6 +126,8 @@ class Protocol(object):
|
|
|
121
126
|
self.notes = notes
|
|
122
127
|
if esignature_config is not None:
|
|
123
128
|
self.esignature_config = esignature_config
|
|
129
|
+
if modified_by is not None:
|
|
130
|
+
self.modified_by = modified_by
|
|
124
131
|
|
|
125
132
|
@property
|
|
126
133
|
def id(self):
|
|
@@ -416,6 +423,27 @@ class Protocol(object):
|
|
|
416
423
|
|
|
417
424
|
self._esignature_config = esignature_config
|
|
418
425
|
|
|
426
|
+
@property
|
|
427
|
+
def modified_by(self):
|
|
428
|
+
"""Gets the modified_by of this Protocol.
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
:return: The modified_by of this Protocol.
|
|
432
|
+
:rtype: Origin
|
|
433
|
+
"""
|
|
434
|
+
return self._modified_by
|
|
435
|
+
|
|
436
|
+
@modified_by.setter
|
|
437
|
+
def modified_by(self, modified_by):
|
|
438
|
+
"""Sets the modified_by of this Protocol.
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
:param modified_by: The modified_by of this Protocol. # noqa: E501
|
|
442
|
+
:type: Origin
|
|
443
|
+
"""
|
|
444
|
+
|
|
445
|
+
self._modified_by = modified_by
|
|
446
|
+
|
|
419
447
|
|
|
420
448
|
@staticmethod
|
|
421
449
|
def positional_to_model(value):
|
|
@@ -28,6 +28,7 @@ if TYPE_CHECKING:
|
|
|
28
28
|
from flywheel.models.ldap_sync_status import LdapSyncStatus # noqa: F401,E501
|
|
29
29
|
from flywheel.models.locked import Locked # noqa: F401,E501
|
|
30
30
|
from flywheel.models.note import Note # noqa: F401,E501
|
|
31
|
+
from flywheel.models.project_group_info import ProjectGroupInfo # noqa: F401,E501
|
|
31
32
|
from flywheel.models.project_output import ProjectOutput # noqa: F401,E501
|
|
32
33
|
from flywheel.models.project_parents import ProjectParents # noqa: F401,E501
|
|
33
34
|
from flywheel.models.project_settings_output import ProjectSettingsOutput # noqa: F401,E501
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flywheel-sdk
|
|
3
|
-
Version: 21.
|
|
3
|
+
Version: 21.3.0
|
|
4
4
|
Summary: Flywheel SDK
|
|
5
5
|
Project-URL: homepage, https://flywheel.io
|
|
6
6
|
Project-URL: documentation, https://api-docs.flywheel.io
|
|
@@ -10,11 +10,12 @@ License-File: LICENSE.txt
|
|
|
10
10
|
Keywords: flywheel,medical imaging,sdk
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Requires-Dist: certifi>=2024.12.14
|
|
13
|
+
Requires-Dist: packaging<26,>=25
|
|
13
14
|
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
14
15
|
Requires-Dist: requests-toolbelt==1.0.0
|
|
15
16
|
Requires-Dist: requests>=2.31.0
|
|
16
17
|
Requires-Dist: six>=1.17.0
|
|
17
|
-
Requires-Dist: urllib3
|
|
18
|
+
Requires-Dist: urllib3<3.0,>=2.5
|
|
18
19
|
Provides-Extra: asyncio
|
|
19
20
|
Requires-Dist: aiohttp>=3.8.4; extra == 'asyncio'
|
|
20
21
|
Provides-Extra: tornado
|
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
flywheel/__init__.py,sha256=
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
1
|
+
flywheel/__init__.py,sha256=mseWjST6X3l_fSC9xMdNpf9MuDCbFwqO5YMA8pEbJEI,48995
|
|
2
|
+
flywheel/api_client.py,sha256=bGrd7X0Z6xpF3-Ll3sX-quF9fz7-cDCRm0FNj0hOtxY,29570
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=2ixvPXnBR9iUnCwyLGslo0HZCC7MgrUoOVB-W4dxluw,10822
|
|
5
5
|
flywheel/drone_login.py,sha256=KeDUgLynS1Xq4_7AJUALyxSRCMPuGJMqTdFASdTsne0,2231
|
|
6
6
|
flywheel/file_spec.py,sha256=0BnFgyH0qsDxuupJG5_g9LX2cLq7JxRiSODN3HdI-ak,2220
|
|
7
7
|
flywheel/finder.py,sha256=QDnfHRsDeY4SG3-LNKsm_-Q4KLM84d6QSMSfZuvZSk0,6870
|
|
8
|
-
flywheel/flywheel.py,sha256=
|
|
8
|
+
flywheel/flywheel.py,sha256=LFqTt6AlWoI1f4kyXQ1zVIpfE_34HZRa5nwBhYO220o,432744
|
|
9
9
|
flywheel/gear_context.py,sha256=Dd0bcpvTqo7WyRHQwsbJoY5YLn-4W9hIDF9IEu7OKqE,13580
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=VCbDr4GrjtjfTHHQD1DVgQd8kfa_ODthZtaajNPzVF0,13756
|
|
12
12
|
flywheel/util.py,sha256=plr4v6RW-Yzw2qHNFiKIuCoNCUSILmW1ACiEmbopcfo,2559
|
|
13
13
|
flywheel/view_builder.py,sha256=Qc4SD5l_7Gf1DBLFfx7d6vwzS_ZSm4s0gr8q7LOKzcc,17364
|
|
14
14
|
flywheel/api/__init__.py,sha256=fsLg22MHNCl9ee6Pi1Ky6slHvB_Lwb7sp3b92D0Q7nI,2163
|
|
15
|
-
flywheel/api/acquisitions_api.py,sha256=
|
|
16
|
-
flywheel/api/analyses_api.py,sha256=
|
|
17
|
-
flywheel/api/audit_trail_api.py,sha256=
|
|
15
|
+
flywheel/api/acquisitions_api.py,sha256=HhbVNP7AWIQHwkA3ptEliWaDUqNkzY9RE17slA52SBM,215715
|
|
16
|
+
flywheel/api/analyses_api.py,sha256=i0OZ9-7nxKnG2EacsVjXvJ1pXJLbh3DlyfJNGvJk6s4,165964
|
|
17
|
+
flywheel/api/audit_trail_api.py,sha256=ROpq0xwjYj_CDSqhsluumcgLjg67BMD5M1NmcvV5Z6U,22050
|
|
18
18
|
flywheel/api/auth_api.py,sha256=y9_KTmJm3CaNe711jQhY9XbpR7-duRwWaFDgoLaq9jg,3789
|
|
19
19
|
flywheel/api/batch_api.py,sha256=a_qXqqvGnS053uLY2qfk8U5CBvFEkZ2bm7yT_3itXf0,23525
|
|
20
20
|
flywheel/api/bulk_api.py,sha256=e003LdZiWn-L1-oelORYt8Yyklh2Ig6DUmU48UtN5tw,4862
|
|
21
21
|
flywheel/api/change_log_api.py,sha256=C24ZY-WNVA-e4mHDzu1pnAL8DVmA3m04HxT8mJzOCv4,10127
|
|
22
|
-
flywheel/api/collections_api.py,sha256=
|
|
22
|
+
flywheel/api/collections_api.py,sha256=8bt5x0CZl_HtDmOUz0aGrqSemNPTizHJSghLXXFvDt0,163369
|
|
23
23
|
flywheel/api/config_api.py,sha256=XDdK4LDtPCXN6A5zWftO67xsE8vpfX8kJKpbf--BcIc,9746
|
|
24
24
|
flywheel/api/container_tasks_api.py,sha256=4XsHFLK8oNoPtU7BCel923Chzhhw9H-d73MHXZAzLw4,5072
|
|
25
25
|
flywheel/api/container_type_api.py,sha256=_9ADxi_eXiSzq_46KttPZYtlUWY79hTKBlq0oFjz9xE,5027
|
|
26
|
-
flywheel/api/containers_api.py,sha256=
|
|
27
|
-
flywheel/api/custom_filters_api.py,sha256=
|
|
28
|
-
flywheel/api/data_view_executions_api.py,sha256=
|
|
29
|
-
flywheel/api/dataexplorer_api.py,sha256=
|
|
30
|
-
flywheel/api/devices_api.py,sha256=
|
|
26
|
+
flywheel/api/containers_api.py,sha256=xLkiBE_XUCHHUDPXOMQdsX7YmSndbC5ZtbHg3apG5Y0,205672
|
|
27
|
+
flywheel/api/custom_filters_api.py,sha256=qThNzORKfy7RBQqeP5rgkNRBUz5ew7nW61UOGKiwZGg,20575
|
|
28
|
+
flywheel/api/data_view_executions_api.py,sha256=FHVgJYGcl_4Eb6GAuKeOYNYTvJM9fJNoUJTR87PK9Nw,21942
|
|
29
|
+
flywheel/api/dataexplorer_api.py,sha256=K2FaTuvLOZSo3X4MvohKQGwbRuNSUP3T-MM6ClzNOi4,45523
|
|
30
|
+
flywheel/api/devices_api.py,sha256=u92Tl2ZaoaJfQQdaxnwUY8XzJKwq_gDi1qqveZWfdgg,39970
|
|
31
31
|
flywheel/api/dimse_api.py,sha256=zmfoK502Isp79xdz13Wliji7C97iDlj9IHChO98JxSU,30326
|
|
32
32
|
flywheel/api/download_api.py,sha256=iY5mvkFT8wTChiji1l0TkS8cxx2m_Wmd9VGMHTyB6ck,10620
|
|
33
|
-
flywheel/api/files_api.py,sha256=
|
|
34
|
-
flywheel/api/form_responses_api.py,sha256=
|
|
35
|
-
flywheel/api/gears_api.py,sha256=
|
|
36
|
-
flywheel/api/groups_api.py,sha256=
|
|
37
|
-
flywheel/api/jobs_api.py,sha256
|
|
33
|
+
flywheel/api/files_api.py,sha256=licdpo2ywnoIbEtEgXAKIANtx4SOazb2lUEUVFtphAA,71816
|
|
34
|
+
flywheel/api/form_responses_api.py,sha256=n7PKvu-ux4OlRZcP4UdbGOTtJVIRDpKy-8Bf52iepMg,30708
|
|
35
|
+
flywheel/api/gears_api.py,sha256=dLUGgLYg8ZWOsv-l_JRsgO5BtmYIWeKDU8ytt3uoFCE,73924
|
|
36
|
+
flywheel/api/groups_api.py,sha256=GlvN3qNRGmCQPZ01vFOi9q0NtbPkgQLLAL8BIfcFAhE,110970
|
|
37
|
+
flywheel/api/jobs_api.py,sha256=mbB8Bk3XAu8524Av1UnqCP9hlymeONYFeAmEq9iSov0,86783
|
|
38
38
|
flywheel/api/jupyterlab_servers_api.py,sha256=-VSHX_p2ba9n9xSPDLlR_7wACzSWomRLEwh4qkSFsbk,9304
|
|
39
|
-
flywheel/api/modalities_api.py,sha256
|
|
39
|
+
flywheel/api/modalities_api.py,sha256=-8PLMepD-nTzMyL5Eyi9te-xyhtPRI_BC9cCj-T3Wlk,21260
|
|
40
40
|
flywheel/api/packfiles_api.py,sha256=A0Z68_EaBrLyooR2mVpsbi5BzgbXBnB4vKXbeE5eXOo,3933
|
|
41
|
-
flywheel/api/projects_api.py,sha256=
|
|
42
|
-
flywheel/api/protocols_api.py,sha256=
|
|
43
|
-
flywheel/api/reports_api.py,sha256=
|
|
41
|
+
flywheel/api/projects_api.py,sha256=vt4zQOlRQk27X4H7GAUvdTem11m2uUYo0WrihTxaUJA,330139
|
|
42
|
+
flywheel/api/protocols_api.py,sha256=uUsR4udO1abi4oglM6UG0YYnH-oX_C6Epm5JyuZiJM0,27966
|
|
43
|
+
flywheel/api/reports_api.py,sha256=QTNh4GsoBHE_Y8PY8arKqfvqcPo3VWCJ9m2WgvruIcE,40995
|
|
44
44
|
flywheel/api/resolve_api.py,sha256=fwr5AwtOHaqYZZnQXDnT3Tx76tedET60HSWrKFYi2Oo,12339
|
|
45
|
-
flywheel/api/roles_api.py,sha256=
|
|
46
|
-
flywheel/api/sessions_api.py,sha256=
|
|
47
|
-
flywheel/api/site_api.py,sha256=
|
|
48
|
-
flywheel/api/staffing_pools_api.py,sha256=
|
|
49
|
-
flywheel/api/subjects_api.py,sha256=
|
|
50
|
-
flywheel/api/tasks_api.py,sha256=
|
|
51
|
-
flywheel/api/tree_api.py,sha256=
|
|
45
|
+
flywheel/api/roles_api.py,sha256=GAmfprO-eokxVMZQmcVa9-xBkjqjdUQ1sd_d5scVPLY,21096
|
|
46
|
+
flywheel/api/sessions_api.py,sha256=WptcGttxdWGazmq5Mm9Z4_hRjHvPDGqTIDL2vr00txs,226288
|
|
47
|
+
flywheel/api/site_api.py,sha256=8klwu9zisfjlJqSrBsweUZVLECpZ3o1vUx9vW3jFSJ0,58157
|
|
48
|
+
flywheel/api/staffing_pools_api.py,sha256=8dX8Bv4AdONDO_2W4nMxRA0Es3XoaZq9zQF_9RTUHc4,25511
|
|
49
|
+
flywheel/api/subjects_api.py,sha256=TOsYX7oNS3ncbYr4agixal2badL-BEUoTpFfmXhggcg,229673
|
|
50
|
+
flywheel/api/tasks_api.py,sha256=OmotRDyN93xWiG5Ao-qHsGsShK1e4AUuPSIHETVqGPU,32985
|
|
51
|
+
flywheel/api/tree_api.py,sha256=_PbfE5l_COqkUBtTvRz6AUdLPBppmGLlVYbwjBcTwbQ,12621
|
|
52
52
|
flywheel/api/uids_api.py,sha256=MjH6i7ASSUa1VGIZVuTHIJFelWM7drswXJVhKxk05eg,5032
|
|
53
53
|
flywheel/api/upload_api.py,sha256=pMjW-OAIZnjqF05ym8vjPga-vYRq69aDa0zFSMUbxeU,38854
|
|
54
|
-
flywheel/api/users_api.py,sha256=
|
|
54
|
+
flywheel/api/users_api.py,sha256=JKqup4iziOgNwM7Aq7ap6F0R9h0LUd9Nxef18rSaoig,87287
|
|
55
55
|
flywheel/api/views_api.py,sha256=Xk0N-j_CRAglraip5Uw_tzDVfmW7Fy1IgTofZ_RinEI,44765
|
|
56
|
-
flywheel/models/__init__.py,sha256=
|
|
56
|
+
flywheel/models/__init__.py,sha256=zLhy47Yofr2_mgBXzpTy1H-aFHIaGWymoK55Zussv5Y,46443
|
|
57
57
|
flywheel/models/access_level.py,sha256=iZPluj0ovM9SmxFO1PW1j8M6F8Z80-NffJh5o7pGCxo,608
|
|
58
58
|
flywheel/models/access_permission.py,sha256=Db_r0vYllomQ_oFIwH02xYb5-UippdEOyhfCyxAVi9E,5391
|
|
59
59
|
flywheel/models/access_permission_output.py,sha256=H-yGRUOA6yD8f0lRcerNKX_mdAGrwyHcxJa9V7idJYE,5257
|
|
@@ -181,7 +181,7 @@ flywheel/models/container_reference.py,sha256=BTFgATmLkWJCgm_MgUOwAgqnBrtGz4v-na
|
|
|
181
181
|
flywheel/models/container_reference_with_label.py,sha256=v2ttR2uGfOPAwMjFiiV6-Fkyk0I7_jyPHE7e3DhVsow,6045
|
|
182
182
|
flywheel/models/container_session_parents.py,sha256=ktgLKZ-HMu2Rw0-8hu7ECQlvrDjF1j4QrvH8liYtZf0,564
|
|
183
183
|
flywheel/models/container_subject_parents.py,sha256=ZpJ0Hk5qDDeEedDoisnE5wQCGwD1I_qYKpz_jswCRAE,564
|
|
184
|
-
flywheel/models/container_type.py,sha256=
|
|
184
|
+
flywheel/models/container_type.py,sha256=wO61hY1Ak_vyo401pCYmLb_6ZrBbeZCTmX_4xyXVtsQ,938
|
|
185
185
|
flywheel/models/container_uidcheck.py,sha256=OQkZvJj-592QIK-cmTj3dl68Tqbx8dpl2sAljEb-Yek,7138
|
|
186
186
|
flywheel/models/container_update.py,sha256=KVouZ6jEeGXigE65oJuFJDvrMAxWENZPiqTpwifgEF4,3949
|
|
187
187
|
flywheel/models/context_input.py,sha256=B4B5-liq4ZtSQGCUVxLmsbm5sPbf7bV1ZeSZdegCS50,5682
|
|
@@ -193,13 +193,13 @@ flywheel/models/core_models_audit_trail_modify_report_input.py,sha256=PlelL62P2e
|
|
|
193
193
|
flywheel/models/core_models_common_source.py,sha256=-0lySCmMSCViBySTjItAAPvxIcAB1o8rCDJgTscaqfs,5094
|
|
194
194
|
flywheel/models/core_models_jobs_api_key_input.py,sha256=WwnQ939F941iWpN0dd-rSdB1o0c03nhyLOSY_QkZBuo,5221
|
|
195
195
|
flywheel/models/core_models_search_parent_type.py,sha256=zD4mxK7yn1hvwzHyPBx8rECK4QyFJa0Bo4Iae2ianL0,705
|
|
196
|
-
flywheel/models/core_workflows_form_responses_models_form_parents.py,sha256
|
|
196
|
+
flywheel/models/core_workflows_form_responses_models_form_parents.py,sha256=-ak6oi_czJspnZC1lsauhXT3hQJ9IAlZ3s7Fo6qwoqE,8580
|
|
197
197
|
flywheel/models/core_workflows_form_responses_models_form_response_output.py,sha256=Wb9tNgvGhD0U8bwrHHf2OJF_7vGugZeWg9e3yPbiPo8,13463
|
|
198
198
|
flywheel/models/core_workflows_reader_models_reader_task_parents.py,sha256=MV-wFKwa5dYpRrJuHsgjsGwIFQAVINzwyJ8Iz4wBi4M,8446
|
|
199
199
|
flywheel/models/creds.py,sha256=JXQjA1Epy-gq-k_FjlHbMJzXWoyEP390vjqJwuhaamA,3909
|
|
200
200
|
flywheel/models/curator.py,sha256=_WDJNU8BhVVkRlc4xTCAlLWPUzs5QiW6rnnN0lR8xlU,5759
|
|
201
201
|
flywheel/models/current_user_output.py,sha256=dNltOtwQSYrF2nq3kqQknZdTVbznU04d94uVmRLKI_I,18553
|
|
202
|
-
flywheel/models/custom_field.py,sha256=
|
|
202
|
+
flywheel/models/custom_field.py,sha256=2CTh9IVNMLbaJS-m6QZcNwbIqbNVWPmldj4g0sJBouk,11849
|
|
203
203
|
flywheel/models/custom_form.py,sha256=351pcHOuiC_Ckj2De5fYfMWJoW1uuNseRfj90Hm1Zqo,6496
|
|
204
204
|
flywheel/models/cvat_info.py,sha256=N0ji6ZrIyXyd141_pjjVMC13yb1uo3L2Schc9WNIxHY,7337
|
|
205
205
|
flywheel/models/cvat_settings.py,sha256=psaVgwrZ5Kct5JznAKoatZVk-OM3nh5DcbLpk7-_I4I,7721
|
|
@@ -260,7 +260,7 @@ flywheel/models/egress_provider_id.py,sha256=QGoKk-kNId2a-gx17qAYgTMdZaXGaHmbQBf
|
|
|
260
260
|
flywheel/models/exchange_storage.py,sha256=8ssoHtwR5DCSilQzpLKCuvLyJfF71XDaQ-TVdtZ861U,6752
|
|
261
261
|
flywheel/models/executor_info.py,sha256=V7Pr_5mSKoRXtbCaeCGwyqZB38ieTRPb1pKaw6Q49Do,9249
|
|
262
262
|
flywheel/models/export_templates.py,sha256=B-fclf_Y8kdw-8cQlhDX-pGjKBRqXx8-fzcgYgzjUVg,5554
|
|
263
|
-
flywheel/models/features.py,sha256=
|
|
263
|
+
flywheel/models/features.py,sha256=V10Aw8vQrKOPIrsw-s5D7Mrv3mhj_mB0WVkNeJr88GQ,54949
|
|
264
264
|
flywheel/models/field_change.py,sha256=VQKWoD-BVXaZeurCHlreI7CQkxa8zoRcO5LbO5_GPg0,7086
|
|
265
265
|
flywheel/models/field_change_log_document.py,sha256=rKVsMFqN6KnT6UrfCk7fzbxfoPkfxvSkHBJ2vTFxOgk,7146
|
|
266
266
|
flywheel/models/field_type.py,sha256=gVZnZUUZYCU9DGI9lHGoxdQCgA_tJiliQiW5D0MjH00,792
|
|
@@ -512,21 +512,22 @@ flywheel/models/project_aet.py,sha256=s5H10KKjUuSQgEsFasTm_8UTXFaj5nJaFINbGwyzcm
|
|
|
512
512
|
flywheel/models/project_aet_input.py,sha256=gSWAsN-uMKwodc9L8hlR9cAlc5azA8SU9-uqSrMqq-A,6638
|
|
513
513
|
flywheel/models/project_catalog_list_output.py,sha256=Yu389Tsc7tFDE3t3UdloDSjC5_prUzh8nU3LdkjWbUc,575
|
|
514
514
|
flywheel/models/project_contact.py,sha256=uvVfLKfnkd_ALWtiCOM0dIlNx3JO8JqVnFYijKCCtPE,5299
|
|
515
|
-
flywheel/models/project_container_output.py,sha256=
|
|
515
|
+
flywheel/models/project_container_output.py,sha256=CsDMYPBwyugiY8JD5vhx7nHm0O9MHY1kJn59rR9n0r0,1740
|
|
516
516
|
flywheel/models/project_copy_input.py,sha256=sEPXoa98uljS3Gh_uWvmjHHGPVkUDtV2MOpEM6r-Ixk,6792
|
|
517
517
|
flywheel/models/project_copy_output.py,sha256=ztsyFWN6-gFPTiV7q0QkMPg8H1e53QNBt38JCHdhZ1g,5972
|
|
518
518
|
flywheel/models/project_counters.py,sha256=c6Pdrusda51PC_MZXbz2QdHlarlOEFoa-buWt5R9oVY,9419
|
|
519
|
+
flywheel/models/project_group_info.py,sha256=Ln7OT61rLTeQvQTQLpplmgas4NqkZem5bZoKz9GZnOE,5079
|
|
519
520
|
flywheel/models/project_hierarchy_input.py,sha256=6fsu-ldFyOmao2FPzmlYERw1OaXKV20g9jQ8b06o1jc,8034
|
|
520
521
|
flywheel/models/project_hierarchy_output.py,sha256=dpFbZ_MeBF4vf1hwNiQPJjt7gSpAnrugt6dSQb73BDg,6527
|
|
521
522
|
flywheel/models/project_hierarchy_upsert_input.py,sha256=rWlxR2zQHtY4pDe0cIK0bj90-J0rvJmlZ3zKLOwtu0g,590
|
|
522
523
|
flywheel/models/project_hierarchy_upsert_output.py,sha256=EPhjXmQJ5V_u2SbhpKAS2YJi-t8oh1jCq2foBA4tkq4,594
|
|
523
524
|
flywheel/models/project_input.py,sha256=PpbwRjtsEmGM8apnl8mM2DiMWvhuW4QCaNUMFoxvSEk,10219
|
|
524
525
|
flywheel/models/project_institution.py,sha256=ioDZNwrJ0j63iBMYyrdv9dMLqeRFWwf05NEpIzeZymw,5317
|
|
525
|
-
flywheel/models/project_list_output.py,sha256=
|
|
526
|
+
flywheel/models/project_list_output.py,sha256=VjbiWcCi6SezQUHciALvc1nxVPHMdtuGOXdqsE4ZQUk,25182
|
|
526
527
|
flywheel/models/project_locking_reason.py,sha256=Qrt65li9eYkVwnPor2sxdORbClCLe62rob2s4CGjdc8,743
|
|
527
528
|
flywheel/models/project_modify.py,sha256=pPU09c0d7Sb8zNCgOdcPldT68seD2gzaDq2WMvuRwaI,11231
|
|
528
|
-
flywheel/models/project_node.py,sha256=
|
|
529
|
-
flywheel/models/project_output.py,sha256=
|
|
529
|
+
flywheel/models/project_node.py,sha256=_GoqIpqZWSZAao0V3xyXutlfb8oPDxiftfHfGYGauFg,1807
|
|
530
|
+
flywheel/models/project_output.py,sha256=d6EF3oHhMMcO93BPuP6rUQuAz1OVfytN9Wl-pgipheU,24823
|
|
530
531
|
flywheel/models/project_parents.py,sha256=qFJQLdHRaMoC4XeY9g8yaRl844RyaBnQtWilosPe6aI,4710
|
|
531
532
|
flywheel/models/project_report.py,sha256=i_59A9SsTwefJVBjX2S8b4NTMLvrTjvS0ZVck7kc2Qo,13010
|
|
532
533
|
flywheel/models/project_report_list.py,sha256=ykw0fxY30gRyp1tb6Zc9xMh9BphrxH44OESr86KXa0A,4784
|
|
@@ -556,7 +557,7 @@ flywheel/models/project_template_list_input.py,sha256=LvD9B3kM18yxghSejwUJ1Dy3r5
|
|
|
556
557
|
flywheel/models/project_template_requirement.py,sha256=wY863iixwWWNgUrqKf3ANLN8uLNn8qDJoOLnQtTl6hc,991
|
|
557
558
|
flywheel/models/project_template_session_template.py,sha256=aJH1w596Nbz6n7fgdXYa0pkW4F3-p_4WYVNAyjTkFBM,977
|
|
558
559
|
flywheel/models/project_upsert_origin.py,sha256=zLiTAUlvjV4ILS6hZ479XQYqpuZIHQm3XnoDNpGospg,922
|
|
559
|
-
flywheel/models/protocol.py,sha256=
|
|
560
|
+
flywheel/models/protocol.py,sha256=oipPUvsOsHCkiaHmqmkFef1Ea-DK6yuWB00O9RLj6yM,14331
|
|
560
561
|
flywheel/models/protocol_e_signature_config.py,sha256=PHBDSNG6jFRg2s2acj7UGaD8emstkMitjmiah7Q0sSU,5402
|
|
561
562
|
flywheel/models/protocol_input.py,sha256=NZ6FXHrzoBO3cs93lTQ86uJ7eBQxVfP7zTgmnGanS7Q,9840
|
|
562
563
|
flywheel/models/protocol_modify.py,sha256=EPZwLWn7hZwxeU3MOsOjExRk_OXCVPUMadCmax2wdiE,8066
|
|
@@ -637,7 +638,7 @@ flywheel/models/search_group_response.py,sha256=vX0Cg7H-ZvhLqK4dSNH6eiqfotd3sBkn
|
|
|
637
638
|
flywheel/models/search_parent_acquisition.py,sha256=0LWSsj_n_pPNMA7c3ZP-_JDzRR03GV6Q9OOdMQ5vW34,1699
|
|
638
639
|
flywheel/models/search_parent_analysis.py,sha256=nLO7dccBPSz0alh47XK-RtVyZmVZ1ZWaEiscG0jrEXg,1679
|
|
639
640
|
flywheel/models/search_parent_collection.py,sha256=op2ANoU4YWEaRtvH0kfA82BEypjnrUqexNQs4bJsJIQ,1602
|
|
640
|
-
flywheel/models/search_parent_project.py,sha256=
|
|
641
|
+
flywheel/models/search_parent_project.py,sha256=bgpBH70u7g5mI6xGVr6MmVQn82D67hp0MK2Emr0pZ_k,2299
|
|
641
642
|
flywheel/models/search_parent_response.py,sha256=_3D7Hk2cEsKGLvq8xxqqqU5G_gE5g96bwYv9j0ylAlM,6022
|
|
642
643
|
flywheel/models/search_parent_session.py,sha256=G4PPMFeahHlb1gSlqBszSYowScMLmymBxFjH1MwYRsw,1747
|
|
643
644
|
flywheel/models/search_parent_subject.py,sha256=r2jhwbCtJfKDqCmqxJMQblxvex5N9RFgqnRNFVINuw0,1737
|
|
@@ -766,7 +767,7 @@ flywheel/models/virus_scan_state.py,sha256=QveEYn07Ti3oUeJJsmKOzS1dSlXcARQd_Ot7z
|
|
|
766
767
|
flywheel/models/work_in_progress_features.py,sha256=XT-_BKodTAJ4peRlnvNK-dRYvjAjj3GLcXp8bSxmV9Q,3977
|
|
767
768
|
flywheel/models/zipfile_info.py,sha256=Y4XGk2-azfJoAoI5kIro9EhzfojQW27hdeuYCoIgY-Y,5298
|
|
768
769
|
flywheel/models/zipfile_member_info.py,sha256=gBqT8E3jVVwSXExyEmZA5AekBO6bINcVFixtP9bQMxo,6379
|
|
769
|
-
flywheel_sdk-21.
|
|
770
|
-
flywheel_sdk-21.
|
|
771
|
-
flywheel_sdk-21.
|
|
772
|
-
flywheel_sdk-21.
|
|
770
|
+
flywheel_sdk-21.3.0.dist-info/METADATA,sha256=_1OE2kPK9yyqvvYnq3NAeQbwsSx1fgMdSBb5OKUf-kM,1097
|
|
771
|
+
flywheel_sdk-21.3.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
772
|
+
flywheel_sdk-21.3.0.dist-info/licenses/LICENSE.txt,sha256=6ZOEPIdNnRz8JrhEV49bDqjdyJwIUCL2hR-1ct5iDvs,1057
|
|
773
|
+
flywheel_sdk-21.3.0.dist-info/RECORD,,
|
|
File without changes
|