flywheel-sdk 20.4.0rc1__py2.py3-none-any.whl → 20.5.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.
Files changed (35) hide show
  1. flywheel/__init__.py +2 -0
  2. flywheel/api/acquisitions_api.py +116 -0
  3. flywheel/api/sessions_api.py +3 -3
  4. flywheel/api/subjects_api.py +116 -0
  5. flywheel/api_client.py +1 -1
  6. flywheel/configuration.py +2 -2
  7. flywheel/drone_login.py +2 -1
  8. flywheel/finder.py +11 -12
  9. flywheel/flywheel.py +28 -2
  10. flywheel/gear_context.py +6 -17
  11. flywheel/models/__init__.py +3 -1
  12. flywheel/models/acquisition_container_output.py +1 -0
  13. flywheel/models/acquisition_copy_input.py +221 -0
  14. flywheel/models/acquisition_list_output.py +32 -4
  15. flywheel/models/acquisition_node.py +1 -0
  16. flywheel/models/acquisition_output.py +32 -4
  17. flywheel/models/acquisition_upsert_input.py +31 -4
  18. flywheel/models/cvat_info.py +31 -4
  19. flywheel/models/features.py +28 -28
  20. flywheel/models/gear_invocation.py +1 -0
  21. flywheel/models/gear_mixin.py +4 -16
  22. flywheel/models/mixins.py +25 -76
  23. flywheel/models/search_parent_acquisition.py +1 -0
  24. flywheel/models/session_upsert_input.py +31 -4
  25. flywheel/models/subject.py +8 -0
  26. flywheel/models/subject_copy_input.py +221 -0
  27. flywheel/models/subject_upsert_input.py +31 -4
  28. flywheel/models/work_in_progress_features.py +30 -1
  29. flywheel/util.py +6 -8
  30. flywheel/view_builder.py +14 -40
  31. {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.5.0rc0.dist-info}/METADATA +1 -1
  32. {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.5.0rc0.dist-info}/RECORD +35 -33
  33. {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.5.0rc0.dist-info}/WHEEL +0 -0
  34. {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.5.0rc0.dist-info}/licenses/LICENSE.txt +0 -0
  35. {flywheel_sdk-20.4.0rc1.dist-info → flywheel_sdk-20.5.0rc0.dist-info}/top_level.txt +0 -0
@@ -38,7 +38,8 @@ class SubjectUpsertInput(object):
38
38
  'species': 'str',
39
39
  'strain': 'str',
40
40
  'info': 'object',
41
- 'state': 'SubjectState'
41
+ 'state': 'SubjectState',
42
+ 'tags': 'list[str]'
42
43
  }
43
44
 
44
45
  attribute_map = {
@@ -56,7 +57,8 @@ class SubjectUpsertInput(object):
56
57
  'species': 'species',
57
58
  'strain': 'strain',
58
59
  'info': 'info',
59
- 'state': 'state'
60
+ 'state': 'state',
61
+ 'tags': 'tags'
60
62
  }
61
63
 
62
64
  rattribute_map = {
@@ -74,10 +76,11 @@ class SubjectUpsertInput(object):
74
76
  'species': 'species',
75
77
  'strain': 'strain',
76
78
  'info': 'info',
77
- 'state': 'state'
79
+ 'state': 'state',
80
+ 'tags': 'tags'
78
81
  }
79
82
 
80
- def __init__(self, date_of_birth=None, id=None, routing_field=None, label=None, source=None, firstname=None, lastname=None, sex=None, type=None, race=None, ethnicity=None, species=None, strain=None, info=None, state=None): # noqa: E501
83
+ def __init__(self, date_of_birth=None, id=None, routing_field=None, label=None, source=None, firstname=None, lastname=None, sex=None, type=None, race=None, ethnicity=None, species=None, strain=None, info=None, state=None, tags=None): # noqa: E501
81
84
  """SubjectUpsertInput - a model defined in Swagger"""
82
85
  super(SubjectUpsertInput, self).__init__()
83
86
 
@@ -96,6 +99,7 @@ class SubjectUpsertInput(object):
96
99
  self._strain = None
97
100
  self._info = None
98
101
  self._state = None
102
+ self._tags = None
99
103
  self.discriminator = None
100
104
  self.alt_discriminator = None
101
105
 
@@ -129,6 +133,8 @@ class SubjectUpsertInput(object):
129
133
  self.info = info
130
134
  if state is not None:
131
135
  self.state = state
136
+ if tags is not None:
137
+ self.tags = tags
132
138
 
133
139
  @property
134
140
  def date_of_birth(self):
@@ -445,6 +451,27 @@ class SubjectUpsertInput(object):
445
451
 
446
452
  self._state = state
447
453
 
454
+ @property
455
+ def tags(self):
456
+ """Gets the tags of this SubjectUpsertInput.
457
+
458
+
459
+ :return: The tags of this SubjectUpsertInput.
460
+ :rtype: list[str]
461
+ """
462
+ return self._tags
463
+
464
+ @tags.setter
465
+ def tags(self, tags):
466
+ """Sets the tags of this SubjectUpsertInput.
467
+
468
+
469
+ :param tags: The tags of this SubjectUpsertInput. # noqa: E501
470
+ :type: list[str]
471
+ """
472
+
473
+ self._tags = tags
474
+
448
475
 
449
476
  @staticmethod
450
477
  def positional_to_model(value):
@@ -21,20 +21,49 @@ import six
21
21
  class WorkInProgressFeatures(object):
22
22
 
23
23
  swagger_types = {
24
+ 'disable_mfa_channels': 'bool'
24
25
  }
25
26
 
26
27
  attribute_map = {
28
+ 'disable_mfa_channels': 'disable_mfa_channels'
27
29
  }
28
30
 
29
31
  rattribute_map = {
32
+ 'disable_mfa_channels': 'disable_mfa_channels'
30
33
  }
31
34
 
32
- def __init__(self): # noqa: E501
35
+ def __init__(self, disable_mfa_channels=False): # noqa: E501
33
36
  """WorkInProgressFeatures - a model defined in Swagger"""
34
37
  super(WorkInProgressFeatures, self).__init__()
38
+
39
+ self._disable_mfa_channels = None
35
40
  self.discriminator = None
36
41
  self.alt_discriminator = None
37
42
 
43
+ if disable_mfa_channels is not None:
44
+ self.disable_mfa_channels = disable_mfa_channels
45
+
46
+ @property
47
+ def disable_mfa_channels(self):
48
+ """Gets the disable_mfa_channels of this WorkInProgressFeatures.
49
+
50
+
51
+ :return: The disable_mfa_channels of this WorkInProgressFeatures.
52
+ :rtype: bool
53
+ """
54
+ return self._disable_mfa_channels
55
+
56
+ @disable_mfa_channels.setter
57
+ def disable_mfa_channels(self, disable_mfa_channels):
58
+ """Sets the disable_mfa_channels of this WorkInProgressFeatures.
59
+
60
+
61
+ :param disable_mfa_channels: The disable_mfa_channels of this WorkInProgressFeatures. # noqa: E501
62
+ :type: bool
63
+ """
64
+
65
+ self._disable_mfa_channels = disable_mfa_channels
66
+
38
67
 
39
68
  @staticmethod
40
69
  def positional_to_model(value):
flywheel/util.py CHANGED
@@ -1,4 +1,5 @@
1
1
  """Provides utility functions"""
2
+
2
3
  import collections
3
4
  import os
4
5
  import warnings
@@ -51,12 +52,8 @@ def params_to_dict(method_name, args, kwargs):
51
52
  if args:
52
53
  if kwargs:
53
54
  raise ValueError(method_name + "() expects either a dictionary or kwargs")
54
- elif not isinstance(args[0], collections.abc.MutableMapping) and not hasattr(
55
- args[0], "to_dict"
56
- ):
57
- raise ValueError(
58
- method_name + "() expects first argument to be a dictionary"
59
- )
55
+ elif not isinstance(args[0], collections.abc.MutableMapping) and not hasattr(args[0], "to_dict"):
56
+ raise ValueError(method_name + "() expects first argument to be a dictionary")
60
57
  return args[0]
61
58
  elif not kwargs:
62
59
  raise ValueError(method_name + "() expects either a dictionary or kwargs")
@@ -93,5 +90,6 @@ def check_filename_params(params):
93
90
  filename = params.get("filename", params.get("file_name"))
94
91
  if filename is not None:
95
92
  if "/" in filename:
96
- warnings.warn(f"Filename {filename} contains disallowed character '/', "
97
- "methods on this object will fail. Rename file with fw.move_file.")
93
+ warnings.warn(
94
+ f"Filename {filename} contains disallowed character '/', methods on this object will fail. Rename file with fw.move_file."
95
+ )
flywheel/view_builder.py CHANGED
@@ -65,13 +65,9 @@ class ViewBuilder(object):
65
65
  self._filter = filter
66
66
 
67
67
  if isinstance(group_by, str):
68
- self._group_by = DataViewGroupBy(
69
- columns=[DataViewGroupByColumn(src=group_by)]
70
- )
68
+ self._group_by = DataViewGroupBy(columns=[DataViewGroupByColumn(src=group_by)])
71
69
  elif isinstance(group_by, list):
72
- self._group_by = DataViewGroupBy(
73
- columns=[DataViewGroupByColumn(src=col) for col in group_by]
74
- )
70
+ self._group_by = DataViewGroupBy(columns=[DataViewGroupByColumn(src=col) for col in group_by])
75
71
  elif isinstance(group_by, DataViewGroupBy):
76
72
  self._group_by = group_by
77
73
  else:
@@ -135,9 +131,7 @@ class ViewBuilder(object):
135
131
  or self._file_format
136
132
  or self._analysis_filter
137
133
  ):
138
- raise ValueError(
139
- "Both file_container and file_filter are required to process files!"
140
- )
134
+ raise ValueError("Both file_container and file_filter are required to process files!")
141
135
  self._check_missing_data_strategy_and_error_column(self._missing_data_strategy, self._error_column)
142
136
  return DataView(
143
137
  label=self._label,
@@ -212,11 +206,7 @@ class ViewBuilder(object):
212
206
  :return: self
213
207
  """
214
208
  src, dst, type = self._preprocess_column(src, dst, type)
215
- self._columns.append(
216
- DataViewColumnSpec(
217
- src=src, dst=dst, type=type, accumulator=accumulator, expr=expr
218
- )
219
- )
209
+ self._columns.append(DataViewColumnSpec(src=src, dst=dst, type=type, accumulator=accumulator, expr=expr))
220
210
  return self
221
211
 
222
212
  def files(
@@ -241,9 +231,7 @@ class ViewBuilder(object):
241
231
  :return: self
242
232
  """
243
233
  if not container or not filename:
244
- raise ValueError(
245
- "Both container and filename are required for file matching"
246
- )
234
+ raise ValueError("Both container and filename are required for file matching")
247
235
 
248
236
  self._file_container = container
249
237
  self._file_filter = DataViewNameFilterSpec(value=filename)
@@ -286,9 +274,7 @@ class ViewBuilder(object):
286
274
  self._file_match = match_value
287
275
  return self
288
276
 
289
- def analysis_filter(
290
- self, label=None, gear_name=None, gear_version=None, regex=False
291
- ):
277
+ def analysis_filter(self, label=None, gear_name=None, gear_version=None, regex=False):
292
278
  """Set the filter to use for matching analyses. If this is set, then analyses files will be matched instead of container.
293
279
 
294
280
  :param str label: The label match string, wildcards ``(*, ?)`` are supported.
@@ -301,17 +287,11 @@ class ViewBuilder(object):
301
287
  self._analysis_filter = DataViewAnalysisFilterSpec()
302
288
 
303
289
  if label:
304
- self._analysis_filter.label = DataViewNameFilterSpec(
305
- value=label, regex=regex
306
- )
290
+ self._analysis_filter.label = DataViewNameFilterSpec(value=label, regex=regex)
307
291
  if gear_name:
308
- self._analysis_filter.gear_name = DataViewNameFilterSpec(
309
- value=gear_name, regex=regex
310
- )
292
+ self._analysis_filter.gear_name = DataViewNameFilterSpec(value=gear_name, regex=regex)
311
293
  if gear_version:
312
- self._analysis_filter.gear_version = DataViewNameFilterSpec(
313
- value=gear_version, regex=regex
314
- )
294
+ self._analysis_filter.gear_version = DataViewNameFilterSpec(value=gear_version, regex=regex)
315
295
  return self
316
296
 
317
297
  def file_filter(self, value=None, regex=False):
@@ -332,9 +312,7 @@ class ViewBuilder(object):
332
312
  :param str match: The file match type, one of: first, last, newest, oldest, all
333
313
  :return: self
334
314
  """
335
- self._file_zip_filter = DataViewZipFilterSpec(
336
- value=value, regex=regex, match=match
337
- )
315
+ self._file_zip_filter = DataViewZipFilterSpec(value=value, regex=regex, match=match)
338
316
  return self
339
317
 
340
318
  def file_format(self, format_name):
@@ -414,13 +392,13 @@ class ViewBuilder(object):
414
392
  self._sort = value
415
393
  return self
416
394
 
417
- def _check_missing_data_strategy_and_error_column(self, missing_data_strategy = None, error_column = None):
395
+ def _check_missing_data_strategy_and_error_column(self, missing_data_strategy=None, error_column=None):
418
396
  """
419
397
  If missing_data_strategy is 'drop-row' and if the user doesn't explicitly
420
398
  set 'error_column'" to True, 'error_column' should be 'False'.
421
399
  """
422
400
  if error_column is None:
423
- self._error_column = missing_data_strategy != 'drop-row'
401
+ self._error_column = missing_data_strategy != "drop-row"
424
402
 
425
403
  def _preprocess_column(self, src, dst, type):
426
404
  """If file is in src name, then select but don't process files"""
@@ -438,15 +416,11 @@ class ViewBuilder(object):
438
416
  if self._file_container:
439
417
  if file_container != self._file_container:
440
418
  raise ValueError(
441
- "Can only select files one one container ({} already selected)".format(
442
- self._file_container
443
- )
419
+ "Can only select files one one container ({} already selected)".format(self._file_container)
444
420
  )
445
421
  if analysis_container and not self._analysis_filter:
446
422
  raise ValueError(
447
- "Can only select files one one container ({} already selected)".format(
448
- self._file_container
449
- )
423
+ "Can only select files one one container ({} already selected)".format(self._file_container)
450
424
  )
451
425
  elif self._analysis_filter and not analysis_container:
452
426
  raise ValueError(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flywheel-sdk
3
- Version: 20.4.0rc1
3
+ Version: 20.5.0rc0
4
4
  Summary: Flywheel SDK
5
5
  Home-page:
6
6
  Author-email: support@flywheel.io
@@ -1,18 +1,18 @@
1
- flywheel/__init__.py,sha256=cHiW2b3yaRFfaz68ObkD2r40hK9hV8YrUVuqvipprz8,45074
2
- flywheel/api_client.py,sha256=c_bnvMic2qQ-W-o-bKHi4Hwg3_ZtMM2H3lw1TpLvZkw,29574
1
+ flywheel/__init__.py,sha256=NAZxXtW74hRN0Xwuj34IDHKvNX4d5haDeZmYkOTof7Q,45210
2
+ flywheel/api_client.py,sha256=6CrrqXWnf6b6qkzHl0U7wMqUGdS5_YaX8dvurQcXf2Q,29574
3
3
  flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
4
- flywheel/configuration.py,sha256=WTsFehXQbfLj0SVg4lzGeDsAjv43VbYjU_HjIzkpJKA,10830
5
- flywheel/drone_login.py,sha256=8nELIBYBJMuPHQ0zdrGjWB20C3OTZbxpFVyxWmQ0kr0,2229
4
+ flywheel/configuration.py,sha256=t5jGLRc2MtQQ2Kxk-MhIvHaZqraj4ZqSSdTgGxHX1BU,10830
5
+ flywheel/drone_login.py,sha256=U2aD45m5jCH47nHq3EfP3THX5HhaDYvRmNEo3g7c52Q,2230
6
6
  flywheel/file_spec.py,sha256=0BnFgyH0qsDxuupJG5_g9LX2cLq7JxRiSODN3HdI-ak,2220
7
- flywheel/finder.py,sha256=h5hxD03Ye4lZJflxh3Ub_zwFS273wWq2wTLf2CQz-lM,6887
8
- flywheel/flywheel.py,sha256=StrWURvsFVHrhIeLpOXSMIHChq-3yPBFOiM7DhtKXtI,414531
9
- flywheel/gear_context.py,sha256=cFJs8cC_on6v184HVUTXSSVS9y5ee73QN0lCkPTQ5jk,13701
7
+ flywheel/finder.py,sha256=QDnfHRsDeY4SG3-LNKsm_-Q4KLM84d6QSMSfZuvZSk0,6870
8
+ flywheel/flywheel.py,sha256=3tjOcOT7G4hcnl-FoGUyf7zhjIU6npbLOTQyfmrHSwg,415376
9
+ flywheel/gear_context.py,sha256=frEx6nB5TYssLsyShdEd9UwfpkhQn0MXZN6GU1MkMZE,13581
10
10
  flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
11
11
  flywheel/rest.py,sha256=Luybe_pjqufXgw3LHSwPrSWFKrrAH6UU3IvTtSeCoAQ,13604
12
- flywheel/util.py,sha256=L-hHpKGU0wypCoNZyUOvA2sqJcxJVq9dKYOh3FRiRQw,2599
13
- flywheel/view_builder.py,sha256=0hGDvjiljUuyuHezawx-TSO5Nv885No6rGf3lb3qvxo,17758
12
+ flywheel/util.py,sha256=plr4v6RW-Yzw2qHNFiKIuCoNCUSILmW1ACiEmbopcfo,2559
13
+ flywheel/view_builder.py,sha256=XM57HYUYQRVlg3OIf5ij400rY-B1y1EdcTYFBGpERlA,17364
14
14
  flywheel/api/__init__.py,sha256=EIvTPkM5mmQqBzlTUx4iUPWkjJrh-4LduSccVuwZxxo,1821
15
- flywheel/api/acquisitions_api.py,sha256=rRsfLoI5sAIaVkK8NIbOTMF-env1cUF_iwXaiqm6xQ4,214836
15
+ flywheel/api/acquisitions_api.py,sha256=5xrQB5ha98YqlrbTg_kUovz5iLYoQW7UWSJyf67UF5c,219457
16
16
  flywheel/api/analyses_api.py,sha256=UuC7Y350Em_Za-aIwljs0fjRrrY58k_GdAo9C7S_n2o,169836
17
17
  flywheel/api/audit_trail_api.py,sha256=Kjp6cqSHYvFTInSMetQ2DKMYxhv2lWf2Yvxmuqf2xMU,21730
18
18
  flywheel/api/auth_api.py,sha256=y9_KTmJm3CaNe711jQhY9XbpR7-duRwWaFDgoLaq9jg,3789
@@ -39,15 +39,15 @@ flywheel/api/projects_api.py,sha256=OVoZ3Ku_4Hro-krkAS7r4v07yy1_4cJPqgrYJkCqu0M,
39
39
  flywheel/api/reports_api.py,sha256=3ScvB_p8pjHpUOmow2I870kaTXQWyx3xTH5UHzrXGbQ,40835
40
40
  flywheel/api/resolve_api.py,sha256=fwr5AwtOHaqYZZnQXDnT3Tx76tedET60HSWrKFYi2Oo,12339
41
41
  flywheel/api/roles_api.py,sha256=D7OUI6JoYBbkJxQ32khOBimpexVa4jH5rO8lCaIN6k0,20936
42
- flywheel/api/sessions_api.py,sha256=EHCMfcw27X-l8UnrPvf3vRd_Bs4Q3GOeMjgNZ-B8JMY,229655
42
+ flywheel/api/sessions_api.py,sha256=2ouSpzpp11xPmHBHZDl1zwQf0A4s0xYNLegbfc7RtJw,229666
43
43
  flywheel/api/site_api.py,sha256=wUKEYvtJ-7vTjGErKLADJuEUt_9M8tjiDRcOiDSxjso,57997
44
- flywheel/api/subjects_api.py,sha256=Ay13_zVmEzDcyWMFSYLvVb20yQ5iZtbfDSxCWtgT8Zw,228830
44
+ flywheel/api/subjects_api.py,sha256=7P1p_OStsEWSp1kxgn4lMuxH5Sd5Nkhg5Jv9HDRlNpo,233311
45
45
  flywheel/api/tree_api.py,sha256=pvE7WAXzV5uZ7Qd-ekkS8pwQTXaUkfzWEu29dhRe5eI,12461
46
46
  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=yGydVGUiGZYC5xw_Lbv0h_X6TLUnazTC21g1sdTVpBo,42893
50
+ flywheel/models/__init__.py,sha256=PCvFLK8TB4CmXyavvmrmxu6ubl7s0LiGV1YZR80IK5k,43029
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
@@ -55,15 +55,16 @@ flywheel/models/access_permission_update.py,sha256=0acb0i74KEY41ifys64hckaaoDaaI
55
55
  flywheel/models/access_type.py,sha256=avb0y1fm3uJCUma1EmVEd4l4MDj0977i755qyZmnoug,1554
56
56
  flywheel/models/accumulator.py,sha256=GsvpdVztFdUAdDJHUqvKB_SOC3SGjxMQbKULGkOwP00,675
57
57
  flywheel/models/acquisition.py,sha256=n5OOI9hIqmzcpLuVgricOa_eijY-g4quuh6AG16Sxos,528
58
- flywheel/models/acquisition_container_output.py,sha256=Fa2IsV9hFJq5sZTVpS4b_iB-VDKIhH-zTvhC0sh4YZU,907
58
+ flywheel/models/acquisition_container_output.py,sha256=fPBp88YHC_0imKgirplt7BS6fa96GV8n6eFuZ4yfbrQ,977
59
+ flywheel/models/acquisition_copy_input.py,sha256=awD8w_S8MvJpinv_FYR-eh2s6nz-68J71JK6HAf2Teg,6202
59
60
  flywheel/models/acquisition_input.py,sha256=qtLelP2kohg00tfqX3cbtgbCkEeeMf3aCDbf8AKqnP8,7671
60
- flywheel/models/acquisition_list_output.py,sha256=ynsNkFiahVTmWg2VwYHzeG5L3gaJsZErhfQk9qBeg1s,19980
61
+ flywheel/models/acquisition_list_output.py,sha256=3qEW6Q5EZqXcswnyPv5GMKYndjuqzgvEQP0vD3qx3sA,20834
61
62
  flywheel/models/acquisition_modify_input.py,sha256=xqX22pZJejfgUyOnMcCwefT2jwJ_lqhgfntGlk_C83I,7909
62
- flywheel/models/acquisition_node.py,sha256=TG0KQDW2LaLV19rKn7pv0pevADem3z9TBo1AAsmBET0,1054
63
- flywheel/models/acquisition_output.py,sha256=hsWBlti0YXIr-S-s-46UtxS3f-OwAZ_XLjZ60R0W2Mo,19609
63
+ flywheel/models/acquisition_node.py,sha256=GEj_pdpGKVAPdVWDOzo_Unty78Jy45gijzMD_oPBMRM,1124
64
+ flywheel/models/acquisition_output.py,sha256=wWWrTAwe4j9U6wq-cWqdlSJEhpyXzLFr0BYybwv1jqw,20447
64
65
  flywheel/models/acquisition_parents.py,sha256=G-mcOdBtSJZQPbD6mSgfez3AZ-FYQf_oXg4z6mgt1M0,6393
65
66
  flywheel/models/acquisition_template_options.py,sha256=bbvtpv0DD24UjtJLA6tuC2NgifwoLAap7Lno6j8Eeuk,7436
66
- flywheel/models/acquisition_upsert_input.py,sha256=OKyzNC8CvrhKwl4ikcmDR2OTgEt3Kncp_NLhM_B6ct4,9423
67
+ flywheel/models/acquisition_upsert_input.py,sha256=y6NKQr6ABiSJxsS8BkLd7V0Q_eDSmDjS5TdO1bsGgo4,10054
67
68
  flywheel/models/acquisition_upsert_output.py,sha256=KvOcTqnJq_oct1XzblgdetZJKRviSTTAKa8TmYBL4dY,6498
68
69
  flywheel/models/action.py,sha256=fS76JIhFWzKS9vzc7stuY4lAojzNTvupDEfJbMIemrc,3436
69
70
  flywheel/models/adhoc_analysis_input.py,sha256=aysSK-CiV76WN5tUYvNObBivFDYjIcu-NEXTky3TWzw,6633
@@ -184,7 +185,7 @@ flywheel/models/create_report_input.py,sha256=JpkgTHRQA8TK_K1ViU5utiX_XV0YIO1Zek
184
185
  flywheel/models/creds.py,sha256=kFhJ7_1zmHzHneoan4XKlJ7iRDIgZKuZFbnjCBQg28o,3876
185
186
  flywheel/models/curator.py,sha256=S1yhs6s-gCj-Zqz0NWrXE873xsBq7Ha4Ym82qWeABDs,5726
186
187
  flywheel/models/current_user_output.py,sha256=p7Zlfajmtqf3PRbDLBtvGhPKaU6zv2QVRvc5oiYp4GY,17621
187
- flywheel/models/cvat_info.py,sha256=XUD78Ypdd4_hKb_H6G1Pg7bGGJWXP_nBHea42407irY,6527
188
+ flywheel/models/cvat_info.py,sha256=A7buPcdRdkNanXXu3gE3Hpmx-4Sb3iMw0HVgZshv4Go,7282
188
189
  flywheel/models/cvat_settings.py,sha256=e1SaRBO-I6T9cTvKHZYCZAgBKi0N6Vueh9SrAJiRh8g,7688
189
190
  flywheel/models/cvat_settings_input.py,sha256=ApMhgrc_sBPtpqCmDXscDhGPmFJOxpvE9Qd7xWq5mlA,7807
190
191
  flywheel/models/cvat_sync_state.py,sha256=0VfuWGj-7185nuuITk3g55sf41Y3C8KLXsNtU6r7iIo,601
@@ -242,7 +243,7 @@ flywheel/models/egress_provider_id.py,sha256=1dKUprJXQii7w_sdUr_hB_PebJDkLgZt9yj
242
243
  flywheel/models/exchange_storage.py,sha256=J5ki23OZ78IU-snirVzcbXd6Jjuek4FjwHGG1FTlIzM,6719
243
244
  flywheel/models/executor_info.py,sha256=nbvDWU_yEi_xwpF52y186xEgKkuKSjmBLGOGqmVA_Wg,9216
244
245
  flywheel/models/export_templates.py,sha256=fAW_tPW2tBT1DhuzF4nS7GwSgvqHkFLED--Swl4ndco,5495
245
- flywheel/models/features.py,sha256=0c-SmhPdk0eZodaFae-igRuLTKidE93FqOpxsp9ucRA,55981
246
+ flywheel/models/features.py,sha256=m9e7R9z-H6FhmjyGVZ1W_lX28ZVas_UizpIQ0bfOyTk,55632
246
247
  flywheel/models/field_change.py,sha256=H0QoBOIJuzgBsryMejJnhu5Vzwa2FpZ2ChQV7NnAgLU,7027
247
248
  flywheel/models/field_change_log_document.py,sha256=-G5oxplkcregMMHywMAXuexl5x21PRe5X2SQxaIaAj0,7091
248
249
  flywheel/models/file.py,sha256=g8_NDeVUzCqnF6706oD1eX3benfLxDrNDRuw5Dxbp1k,28499
@@ -301,10 +302,10 @@ flywheel/models/gear_id_output.py,sha256=Ry2PlsCaKhAjSx_zAey3uDq-quOjcYR5w60yooX
301
302
  flywheel/models/gear_info.py,sha256=QnMdUffIFWy7sjL8ANwhivdHqnTVdfnYNZwEvsSiVi0,6543
302
303
  flywheel/models/gear_input_item.py,sha256=HrAEXFs2uRzw0HJGETWjhpCM0BNmEqBwjAzCcpLkOgg,6426
303
304
  flywheel/models/gear_inputs.py,sha256=96OQus_hL1w-8wqIG_Ul7NbMIfwCNpr--y-Mqr7-wCU,4063
304
- flywheel/models/gear_invocation.py,sha256=j_9uY5it-zI4cY2OsL2wfryWXLIo0KrpLmoKI4nqX9M,4543
305
+ flywheel/models/gear_invocation.py,sha256=c4C3Pb1OPlVV7F8IbSeOm71sOydXF13jsbA8EDm2Fdk,4544
305
306
  flywheel/models/gear_key_input.py,sha256=JA4DYi2NddAOMz_PiWFJotCAS0GGhdA3Z5WsU2OZIqE,5168
306
307
  flywheel/models/gear_manifest.py,sha256=qVtWwRFwTyjOsMJt6MinJL4T-Wk8XYTOXcJmfl6ynZA,15996
307
- flywheel/models/gear_mixin.py,sha256=Jx1h8tmIizi2vB7DPvQoa-R0ARpZHTtIlvORswUM2_4,7819
308
+ flywheel/models/gear_mixin.py,sha256=j5hjYJJlUY7ihPJdhnraXgRRsxKyTEr2MbwAg5K5rxA,7706
308
309
  flywheel/models/gear_node.py,sha256=6yN-03t_xjv6elRiE4A1omy3T3shYbmwocsDH03nPqI,8444
309
310
  flywheel/models/gear_output_configuration.py,sha256=AaNRmdoKITKGVGntp9ASi70BNo6Ce4LXvyBNctvbxts,5051
310
311
  flywheel/models/gear_permissions.py,sha256=DqfEZjJ_KbCFAJT58gFvQI-ahqqNIVCb6HcZHapl8M4,5231
@@ -442,7 +443,7 @@ flywheel/models/master_subject_code_dob_input.py,sha256=IWAPS_rR-i7MP2c-yUafiz3M
442
443
  flywheel/models/master_subject_code_input.py,sha256=z1iYzK7jJsXxMBaJnwHLd7O7q1LiRx2cUGFrpiuH6bM,8106
443
444
  flywheel/models/master_subject_code_output.py,sha256=ejSXHL6KRfh2L94bsiFrIjxNHfuct9QLXmFi-dT9tV0,4620
444
445
  flywheel/models/matched_acquisition_output.py,sha256=whZ27xZHKL2ngnQKWI4cxQHcvwtTXFH9zg2NL-hi5Sk,14157
445
- flywheel/models/mixins.py,sha256=ZSx3kKoeI2RuYoOSqIt82J16xfwGGlWph8qROhFI5K8,29812
446
+ flywheel/models/mixins.py,sha256=hKTmboP3o60H3jG2tcZ0hkEM7q0cZIv6UR4FUcwueVE,29272
446
447
  flywheel/models/ml_set_filter.py,sha256=s7BWp9gbVv8waLmSmJQT5treYHp1y4YT_LL-BqB3_nM,5176
447
448
  flywheel/models/ml_type.py,sha256=lNe0BiH5vu_USajw5HMMa8sKdfjk9ZYWjZlL5yFlX10,602
448
449
  flywheel/models/modality.py,sha256=gsPmZbGNbXLONNqBdS--JKTla9rhljoToxVP17vUX0s,6690
@@ -591,7 +592,7 @@ flywheel/models/search_analysis_response.py,sha256=T-ZadT7J-0nkuKgbb17xymggKrVbV
591
592
  flywheel/models/search_collection_response.py,sha256=rgok6AEB5xa9yMrbxA0MF2sd4pr6VrgtprHl98FTmg4,6875
592
593
  flywheel/models/search_file_response.py,sha256=jhqpD5XjhdHTfkyVywXevTnK-a4o1ZlIBEE2zCBQvOY,8428
593
594
  flywheel/models/search_group_response.py,sha256=aXWrqYkRH7AWjHwOHlqIYbav_K-w0Uq9OsuVDbgUdmk,5272
594
- flywheel/models/search_parent_acquisition.py,sha256=dmopV_wckUIaASQg2p-R6UKGI4RrJFvkEZR_Fz4VTeU,1542
595
+ flywheel/models/search_parent_acquisition.py,sha256=ncgZVZhCljQ2LbKib-lQl8UFGKf2-iIL6PJben22gz0,1612
595
596
  flywheel/models/search_parent_analysis.py,sha256=zV_OrxxmObj42Qc0z0gy-FJaA-1EKTkpdamUWUA6wiE,1592
596
597
  flywheel/models/search_parent_collection.py,sha256=t4PTKjfrjdPE-JLJwhXiaJVVbnnIVbI_RqGqZcJ4KSU,1519
597
598
  flywheel/models/search_parent_project.py,sha256=p2LVvedZA76WkpuISdZpmW13MRQ8PhMSR-2C07lDmak,2097
@@ -630,7 +631,7 @@ flywheel/models/session_output.py,sha256=OG84a_O-hKbUojogKsagXDKGSlRMcvGcACHwpN5
630
631
  flywheel/models/session_parents.py,sha256=LRlg_eh2EDuEOPZdZa07lyne48M_urYADIxoHIiCrDQ,5899
631
632
  flywheel/models/session_template_options.py,sha256=Zj4ZBpjzcGsqtu9FtmiaTnDlXF0rMqaBVZVxmDsBRls,6023
632
633
  flywheel/models/session_template_recalc_output.py,sha256=k99UXLRpLE4WhaIlSBllP1u34ooSDZez19DrlDtV57A,4887
633
- flywheel/models/session_upsert_input.py,sha256=c3GTcCTg_2387WnWvmzNod36osW4ok6Ge1ckZCw3Rb4,11186
634
+ flywheel/models/session_upsert_input.py,sha256=qPSKbBw5d8CyK7efcIUlhR4ZRTMHPNQ6ThqoanwEpoQ,11801
634
635
  flywheel/models/session_upsert_output.py,sha256=tDaaif8giZ471rQX8Y2QS5I7HePiIK2IDDOPXJOQYiI,6418
635
636
  flywheel/models/sharing_filter_options.py,sha256=RgY6qVu0CYw5jzyqMRpPJnA7rf_HytnzVp6t0jJaXQg,9831
636
637
  flywheel/models/signed_fs_upload_output.py,sha256=o4nTuKsnG9MuxPALXmaB4vdop3pOJ3eYXiTCy-KiESo,5226
@@ -651,8 +652,9 @@ flywheel/models/storage_strategy_config.py,sha256=542hXYtvqb5BbD3Pq4QL7gVcOhozuJ
651
652
  flywheel/models/structured_query.py,sha256=gqY-80w38_nzdHEGOSkx2XC50DLOxAhc842s7i7CX4E,4823
652
653
  flywheel/models/structured_query_suggestions.py,sha256=KtbO45OLlQ0dm31RJlhzj0tqQ-MkgULAcGZ3Yko71jY,5743
653
654
  flywheel/models/structured_query_value_suggestion.py,sha256=smfjtnTfhg6bMK5FW0Q35WEi33vTJObcIRJkWUgLzKM,6768
654
- flywheel/models/subject.py,sha256=gOctKSjA1VaQSPM36LyEj1ViUk7Qg1SLTM8c7u4ByCM,512
655
+ flywheel/models/subject.py,sha256=w9-utaQmD0kOgjDuTjCXk1glU3o-aixjpRV2N_KQUwI,993
655
656
  flywheel/models/subject_container_output.py,sha256=HBBSU9efCfxzuDTOpypDlXa82LafqyEjSfKOyf6pbCo,1095
657
+ flywheel/models/subject_copy_input.py,sha256=oLQmtcBYp7pZlfs-MPC_04yJT-Y_eUoT-Dic7IDGsT8,6394
656
658
  flywheel/models/subject_input.py,sha256=iFTye5hY0EgmvrmIyFH8Hjo3FUE9GwH1sK6ToY5_r4I,15390
657
659
  flywheel/models/subject_modify.py,sha256=cQb8-KjbnY0JoGt5qGNASN1hPE9OSxXYyVetjMCuaWA,17039
658
660
  flywheel/models/subject_node.py,sha256=unNIXZ6EJo6lWS9Cijp_BmdtfpGb7u4y6RxExWJr5F0,1234
@@ -662,7 +664,7 @@ flywheel/models/subject_parents.py,sha256=uG5SUbRzMczasE5oqnfwQLk-Kk03DXlj86kG2q
662
664
  flywheel/models/subject_role_permission.py,sha256=IAGIMwqjPcTIkP7hSnQEX4bNOmN_rp-77TrYyExtQWg,5322
663
665
  flywheel/models/subject_state.py,sha256=8Z54JmiMa6p05C9yvE5cP5P7EzRmQAT1RonLmGxvn2s,592
664
666
  flywheel/models/subject_template_options.py,sha256=OT973eYRHm86toHbz4GV7LHgb4RALTBigZ2aA71FBro,5169
665
- flywheel/models/subject_upsert_input.py,sha256=oSCs4oRx5C5zn6DgIGQWjunNj1kfui0bw0mGxUweId4,13999
667
+ flywheel/models/subject_upsert_input.py,sha256=mgGvgtqJDMo-vxH293eFqzinrp3C1EWj8ZKTEEh3xVc,14614
666
668
  flywheel/models/subject_upsert_output.py,sha256=sS8lgPvNjX-xD8p4TIvGBywgsqqgSkRC3PdIDmoU5Mg,5839
667
669
  flywheel/models/sync_user_input.py,sha256=bB1IulXvfRr5eq8yy1Du1EO0rQvL0jx9EYtzr2kYyDU,8325
668
670
  flywheel/models/tag.py,sha256=F7FA106lPGRB7zQAi0_zQTRNtsDtDthMgzg-m1eVZtI,4483
@@ -706,11 +708,11 @@ flywheel/models/viewer_app_input.py,sha256=J20oeUcH8dkS1zo012sSA0aQazg4rP_RmEqyq
706
708
  flywheel/models/viewer_app_type.py,sha256=J7J_3DXnQz19w1D7AmCEWs8VFK0jTLBa2nCPG5Gzn2E,569
707
709
  flywheel/models/virus_scan.py,sha256=ZZJEwnQ7nkubX4qmQq-qkUPgJp-AvdYqAukxnDRrTp4,4553
708
710
  flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklLdTeu3s,602
709
- flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
711
+ flywheel/models/work_in_progress_features.py,sha256=1mry6KYpCX_6vl2iBb1mKxyLfkyRFMjG324KLLO-e_8,4912
710
712
  flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
711
713
  flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
712
- flywheel_sdk-20.4.0rc1.dist-info/licenses/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
713
- flywheel_sdk-20.4.0rc1.dist-info/METADATA,sha256=QWuE5IOMSH7ZkdX0tuDOESOFeTI5Dzus0EDClbC_o7s,1003
714
- flywheel_sdk-20.4.0rc1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
715
- flywheel_sdk-20.4.0rc1.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
716
- flywheel_sdk-20.4.0rc1.dist-info/RECORD,,
714
+ flywheel_sdk-20.5.0rc0.dist-info/licenses/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
715
+ flywheel_sdk-20.5.0rc0.dist-info/METADATA,sha256=FM9GdEGyY93w03vI8RF2jDRm6tp9CvcD2GmrwGgSuTA,1003
716
+ flywheel_sdk-20.5.0rc0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
717
+ flywheel_sdk-20.5.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
718
+ flywheel_sdk-20.5.0rc0.dist-info/RECORD,,