flywheel-sdk 19.4.0rc4__py2.py3-none-any.whl → 19.5.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/acquisitions_api.py +17 -17
- flywheel/api/containers_api.py +17 -17
- flywheel/api/dataexplorer_api.py +11 -11
- flywheel/api/devices_api.py +11 -11
- flywheel/api/files_api.py +12 -12
- flywheel/api/gears_api.py +5 -5
- flywheel/api/jobs_api.py +15 -15
- flywheel/api/modalities_api.py +8 -8
- flywheel/api/projects_api.py +85 -85
- flywheel/api/roles_api.py +6 -6
- flywheel/api/sessions_api.py +17 -17
- flywheel/api/site_api.py +11 -11
- flywheel/api/subjects_api.py +17 -17
- flywheel/api/users_api.py +58 -58
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +91 -91
- flywheel/models/__init__.py +1 -1
- flywheel/models/project_copy_filter.py +31 -4
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0.dist-info}/METADATA +1 -1
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0.dist-info}/RECORD +24 -24
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0.dist-info}/WHEEL +0 -0
- {flywheel_sdk-19.4.0rc4.dist-info → flywheel_sdk-19.5.0.dist-info}/top_level.txt +0 -0
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.5.0"
|
|
44
44
|
|
|
45
45
|
def config_from_api_key(api_key):
|
|
46
46
|
parts = api_key.split(':')
|
|
@@ -607,16 +607,16 @@ class Flywheel:
|
|
|
607
607
|
Returns analyses that directly belong to this resource.
|
|
608
608
|
|
|
609
609
|
:param str cid: (required)
|
|
610
|
+
:param bool inflate_job:
|
|
611
|
+
:param bool join_avatars:
|
|
612
|
+
:param JoinType join:
|
|
613
|
+
:param bool include_all_info: Include all info in returned objects
|
|
610
614
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
611
615
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
612
616
|
:param int limit: The maximum number of entries to return.
|
|
613
617
|
:param int skip: The number of entries to skip.
|
|
614
618
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
615
619
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
616
|
-
:param bool inflate_job:
|
|
617
|
-
:param bool join_avatars:
|
|
618
|
-
:param JoinType join:
|
|
619
|
-
:param bool include_all_info: Include all info in returned objects
|
|
620
620
|
:param list[str] x_accept_feature:
|
|
621
621
|
:param bool async_: Perform the request asynchronously
|
|
622
622
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -2366,16 +2366,16 @@ class Flywheel:
|
|
|
2366
2366
|
Returns analyses that directly belong to this resource.
|
|
2367
2367
|
|
|
2368
2368
|
:param str cid: (required)
|
|
2369
|
+
:param bool inflate_job:
|
|
2370
|
+
:param bool join_avatars:
|
|
2371
|
+
:param JoinType join:
|
|
2372
|
+
:param bool include_all_info: Include all info in returned objects
|
|
2369
2373
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
2370
2374
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2371
2375
|
:param int limit: The maximum number of entries to return.
|
|
2372
2376
|
:param int skip: The number of entries to skip.
|
|
2373
2377
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
2374
2378
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
2375
|
-
:param bool inflate_job:
|
|
2376
|
-
:param bool join_avatars:
|
|
2377
|
-
:param JoinType join:
|
|
2378
|
-
:param bool include_all_info: Include all info in returned objects
|
|
2379
2379
|
:param list[str] x_accept_feature:
|
|
2380
2380
|
:param bool async_: Perform the request asynchronously
|
|
2381
2381
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -2690,13 +2690,13 @@ class Flywheel:
|
|
|
2690
2690
|
def get_all_saved_searches(self, **kwargs): # noqa: E501
|
|
2691
2691
|
"""Get Queries
|
|
2692
2692
|
|
|
2693
|
+
:param bool exhaustive: Return all queries, Admin only
|
|
2693
2694
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
2694
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
2695
|
-
:param int limit: The maximum number of entries to return
|
|
2696
|
-
:param int skip: The number of entries to skip
|
|
2695
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2696
|
+
:param int limit: The maximum number of entries to return.
|
|
2697
|
+
:param int skip: The number of entries to skip.
|
|
2697
2698
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
2698
2699
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
2699
|
-
:param bool exhaustive: Return all queries, Admin only
|
|
2700
2700
|
:param list[str] x_accept_feature:
|
|
2701
2701
|
:param bool async_: Perform the request asynchronously
|
|
2702
2702
|
:return: union[list[SaveSearchOutput],SaveSearchPage]
|
|
@@ -2822,13 +2822,13 @@ class Flywheel:
|
|
|
2822
2822
|
|
|
2823
2823
|
Requires login.
|
|
2824
2824
|
|
|
2825
|
+
:param bool join_keys: Return device key. Admins only
|
|
2825
2826
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
2826
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
2827
|
-
:param int limit: The maximum number of entries to return
|
|
2828
|
-
:param int skip: The number of entries to skip
|
|
2827
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
2828
|
+
:param int limit: The maximum number of entries to return.
|
|
2829
|
+
:param int skip: The number of entries to skip.
|
|
2829
2830
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
2830
2831
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
2831
|
-
:param bool join_keys: Return device key. Admins only
|
|
2832
2832
|
:param list[str] x_accept_feature:
|
|
2833
2833
|
:param bool async_: Perform the request asynchronously
|
|
2834
2834
|
:return: union[list[EgressDevice],EgressDevicePage]
|
|
@@ -3103,12 +3103,12 @@ class Flywheel:
|
|
|
3103
3103
|
|
|
3104
3104
|
Get metadata of all current user files
|
|
3105
3105
|
|
|
3106
|
-
:param str filter:
|
|
3107
|
-
:param str sort:
|
|
3108
|
-
:param int limit:
|
|
3109
|
-
:param int skip:
|
|
3110
|
-
:param int page:
|
|
3111
|
-
:param str after_id:
|
|
3106
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3107
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3108
|
+
:param int limit: The maximum number of entries to return.
|
|
3109
|
+
:param int skip: The number of entries to skip.
|
|
3110
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
3111
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3112
3112
|
:param bool async_: Perform the request asynchronously
|
|
3113
3113
|
:return: PageGenericFileOutput
|
|
3114
3114
|
"""
|
|
@@ -3290,8 +3290,8 @@ class Flywheel:
|
|
|
3290
3290
|
:param int limit: The maximum number of entries to return.
|
|
3291
3291
|
:param int skip: The number of entries to skip.
|
|
3292
3292
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3293
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
3294
3293
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3294
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
3295
3295
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
3296
3296
|
:param bool async_: Perform the request asynchronously
|
|
3297
3297
|
:return: union[list[GearDocument],Page]
|
|
@@ -3863,14 +3863,14 @@ class Flywheel:
|
|
|
3863
3863
|
def get_all_jobs(self, **kwargs): # noqa: E501
|
|
3864
3864
|
"""Return all jobs
|
|
3865
3865
|
|
|
3866
|
+
:param bool include_parent_info: Include the parent info for the jobs
|
|
3867
|
+
:param bool include_all_info: Include all info in returned objects
|
|
3866
3868
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
3867
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
3868
|
-
:param int limit: The maximum number of entries to return
|
|
3869
|
-
:param int skip: The number of entries to skip
|
|
3869
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3870
|
+
:param int limit: The maximum number of entries to return.
|
|
3871
|
+
:param int skip: The number of entries to skip.
|
|
3870
3872
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
3871
3873
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3872
|
-
:param bool include_parent_info: Include the parent info for the jobs
|
|
3873
|
-
:param bool include_all_info: Include all info in returned objects
|
|
3874
3874
|
:param list[str] x_accept_feature:
|
|
3875
3875
|
:param bool async_: Perform the request asynchronously
|
|
3876
3876
|
:return: union[list[JobListOutput],Page]
|
|
@@ -4061,10 +4061,10 @@ class Flywheel:
|
|
|
4061
4061
|
|
|
4062
4062
|
Requires login.
|
|
4063
4063
|
|
|
4064
|
-
:param str filter: The filter to apply. (e.g.
|
|
4065
|
-
:param str sort: The sort fields and order.(e.g.
|
|
4066
|
-
:param int limit: The maximum number of entries to return
|
|
4067
|
-
:param int skip: The number of entries to skip
|
|
4064
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4065
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4066
|
+
:param int limit: The maximum number of entries to return.
|
|
4067
|
+
:param int skip: The number of entries to skip.
|
|
4068
4068
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4069
4069
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4070
4070
|
:param list[str] x_accept_feature:
|
|
@@ -4215,9 +4215,9 @@ class Flywheel:
|
|
|
4215
4215
|
|
|
4216
4216
|
:param str search_string: Include only results containing the search string
|
|
4217
4217
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4218
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
4219
|
-
:param int limit: The maximum number of entries to return
|
|
4220
|
-
:param int skip: The number of entries to skip
|
|
4218
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4219
|
+
:param int limit: The maximum number of entries to return.
|
|
4220
|
+
:param int skip: The number of entries to skip.
|
|
4221
4221
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4222
4222
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4223
4223
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
@@ -4568,18 +4568,18 @@ class Flywheel:
|
|
|
4568
4568
|
def get_all_projects(self, **kwargs): # noqa: E501
|
|
4569
4569
|
"""Get a list of projects
|
|
4570
4570
|
|
|
4571
|
-
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4572
|
-
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4573
|
-
:param int limit: The maximum number of entries to return.
|
|
4574
|
-
:param int skip: The number of entries to skip.
|
|
4575
|
-
:param int page: The page number (i.e. skip limit*page entries)
|
|
4576
|
-
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4577
4571
|
:param bool counts: Append the count of subjects in each project
|
|
4578
4572
|
:param bool stats: Return the status of subjects and sessions in each project
|
|
4579
4573
|
:param bool join_avatars: Return the joined avatars of the permissions
|
|
4580
4574
|
:param JoinType join:
|
|
4581
4575
|
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
4582
4576
|
:param bool include_all_info: Include all info in returned objects
|
|
4577
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4578
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4579
|
+
:param int limit: The maximum number of entries to return.
|
|
4580
|
+
:param int skip: The number of entries to skip.
|
|
4581
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
4582
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4583
4583
|
:param list[union[HeaderFeature,str]] x_accept_feature:
|
|
4584
4584
|
:param bool async_: Perform the request asynchronously
|
|
4585
4585
|
:return: union[list[ProjectListOutput],Page]
|
|
@@ -4590,13 +4590,13 @@ class Flywheel:
|
|
|
4590
4590
|
def get_all_projects_groups(self, **kwargs): # noqa: E501
|
|
4591
4591
|
"""List all groups which have a project in them
|
|
4592
4592
|
|
|
4593
|
+
:param bool exhaustive: returns exhaustive list if correct permissions
|
|
4593
4594
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4594
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
4595
|
-
:param int limit: The maximum number of entries to return
|
|
4596
|
-
:param int skip: The number of entries to skip
|
|
4595
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4596
|
+
:param int limit: The maximum number of entries to return.
|
|
4597
|
+
:param int skip: The number of entries to skip.
|
|
4597
4598
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4598
4599
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4599
|
-
:param bool exhaustive: returns exhaustive list if correct permissions
|
|
4600
4600
|
:param list[str] x_accept_feature:
|
|
4601
4601
|
:param bool async_: Perform the request asynchronously
|
|
4602
4602
|
:return: list[GroupOutput]
|
|
@@ -4630,16 +4630,16 @@ class Flywheel:
|
|
|
4630
4630
|
"""List all acquisitions for the given project.
|
|
4631
4631
|
|
|
4632
4632
|
:param str project_id: (required)
|
|
4633
|
+
:param str collection_id:
|
|
4634
|
+
:param bool exhaustive:
|
|
4635
|
+
:param JoinType join:
|
|
4636
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4633
4637
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4634
4638
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4635
4639
|
:param int limit: The maximum number of entries to return.
|
|
4636
4640
|
:param int skip: The number of entries to skip.
|
|
4637
4641
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4638
4642
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4639
|
-
:param str collection_id:
|
|
4640
|
-
:param bool exhaustive:
|
|
4641
|
-
:param JoinType join:
|
|
4642
|
-
:param bool include_all_info: Include all info in returned objects
|
|
4643
4643
|
:param list[str] x_accept_feature:
|
|
4644
4644
|
:param bool async_: Perform the request asynchronously
|
|
4645
4645
|
:return: union[list[AcquisitionListOutput],Page]
|
|
@@ -4653,16 +4653,16 @@ class Flywheel:
|
|
|
4653
4653
|
Returns analyses that directly belong to this resource.
|
|
4654
4654
|
|
|
4655
4655
|
:param str cid: (required)
|
|
4656
|
+
:param bool inflate_job:
|
|
4657
|
+
:param bool join_avatars:
|
|
4658
|
+
:param JoinType join:
|
|
4659
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4656
4660
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4657
4661
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4658
4662
|
:param int limit: The maximum number of entries to return.
|
|
4659
4663
|
:param int skip: The number of entries to skip.
|
|
4660
4664
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4661
4665
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4662
|
-
:param bool inflate_job:
|
|
4663
|
-
:param bool join_avatars:
|
|
4664
|
-
:param JoinType join:
|
|
4665
|
-
:param bool include_all_info: Include all info in returned objects
|
|
4666
4666
|
:param list[str] x_accept_feature:
|
|
4667
4667
|
:param bool async_: Perform the request asynchronously
|
|
4668
4668
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -4774,14 +4774,14 @@ class Flywheel:
|
|
|
4774
4774
|
List all subjects for the given project.
|
|
4775
4775
|
|
|
4776
4776
|
:param str project_id: (required)
|
|
4777
|
+
:param JoinType join:
|
|
4778
|
+
:param bool include_all_info: Include all info in returned objects
|
|
4777
4779
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
4778
4780
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
4779
4781
|
:param int limit: The maximum number of entries to return.
|
|
4780
4782
|
:param int skip: The number of entries to skip.
|
|
4781
4783
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
4782
4784
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
4783
|
-
:param JoinType join:
|
|
4784
|
-
:param bool include_all_info: Include all info in returned objects
|
|
4785
4785
|
:param list[str] x_accept_feature:
|
|
4786
4786
|
:param bool async_: Perform the request asynchronously
|
|
4787
4787
|
:return: union[Page,list[SubjectOutputForList]]
|
|
@@ -5297,9 +5297,9 @@ class Flywheel:
|
|
|
5297
5297
|
"""Get list of all roles
|
|
5298
5298
|
|
|
5299
5299
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
5300
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
5301
|
-
:param int limit: The maximum number of entries to return
|
|
5302
|
-
:param int skip: The number of entries to skip
|
|
5300
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
5301
|
+
:param int limit: The maximum number of entries to return.
|
|
5302
|
+
:param int skip: The number of entries to skip.
|
|
5303
5303
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
5304
5304
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
5305
5305
|
:param list[str] x_accept_feature:
|
|
@@ -5791,16 +5791,16 @@ class Flywheel:
|
|
|
5791
5791
|
Returns analyses that directly belong to this resource.
|
|
5792
5792
|
|
|
5793
5793
|
:param str cid: (required)
|
|
5794
|
+
:param bool inflate_job:
|
|
5795
|
+
:param bool join_avatars:
|
|
5796
|
+
:param JoinType join:
|
|
5797
|
+
:param bool include_all_info: Include all info in returned objects
|
|
5794
5798
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
5795
5799
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
5796
5800
|
:param int limit: The maximum number of entries to return.
|
|
5797
5801
|
:param int skip: The number of entries to skip.
|
|
5798
5802
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
5799
5803
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
5800
|
-
:param bool inflate_job:
|
|
5801
|
-
:param bool join_avatars:
|
|
5802
|
-
:param JoinType join:
|
|
5803
|
-
:param bool include_all_info: Include all info in returned objects
|
|
5804
5804
|
:param list[str] x_accept_feature:
|
|
5805
5805
|
:param bool async_: Perform the request asynchronously
|
|
5806
5806
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -6115,13 +6115,13 @@ class Flywheel:
|
|
|
6115
6115
|
|
|
6116
6116
|
Return a list of all providers on the site
|
|
6117
6117
|
|
|
6118
|
+
:param ProviderClass _class: Limit the response to the given provider class
|
|
6118
6119
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
6119
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
6120
|
-
:param int limit: The maximum number of entries to return
|
|
6121
|
-
:param int skip: The number of entries to skip
|
|
6120
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
6121
|
+
:param int limit: The maximum number of entries to return.
|
|
6122
|
+
:param int skip: The number of entries to skip.
|
|
6122
6123
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
6123
6124
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
6124
|
-
:param ProviderClass _class: Limit the response to the given provider class
|
|
6125
6125
|
:param bool async_: Perform the request asynchronously
|
|
6126
6126
|
:return: list[EgressProvider]
|
|
6127
6127
|
"""
|
|
@@ -6663,16 +6663,16 @@ class Flywheel:
|
|
|
6663
6663
|
Returns analyses that directly belong to this resource.
|
|
6664
6664
|
|
|
6665
6665
|
:param str cid: (required)
|
|
6666
|
+
:param bool inflate_job:
|
|
6667
|
+
:param bool join_avatars:
|
|
6668
|
+
:param JoinType join:
|
|
6669
|
+
:param bool include_all_info: Include all info in returned objects
|
|
6666
6670
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
6667
6671
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
6668
6672
|
:param int limit: The maximum number of entries to return.
|
|
6669
6673
|
:param int skip: The number of entries to skip.
|
|
6670
6674
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
6671
6675
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
6672
|
-
:param bool inflate_job:
|
|
6673
|
-
:param bool join_avatars:
|
|
6674
|
-
:param JoinType join:
|
|
6675
|
-
:param bool include_all_info: Include all info in returned objects
|
|
6676
6676
|
:param list[str] x_accept_feature:
|
|
6677
6677
|
:param bool async_: Perform the request asynchronously
|
|
6678
6678
|
:return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
@@ -7129,9 +7129,9 @@ class Flywheel:
|
|
|
7129
7129
|
Gets all users with pagination Args:
|
|
7130
7130
|
|
|
7131
7131
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
7132
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
7133
|
-
:param int limit: The maximum number of entries to return
|
|
7134
|
-
:param int skip: The number of entries to skip
|
|
7132
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
7133
|
+
:param int limit: The maximum number of entries to return.
|
|
7134
|
+
:param int skip: The number of entries to skip.
|
|
7135
7135
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
7136
7136
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
7137
7137
|
:param list[str] x_accept_feature:
|
|
@@ -7182,13 +7182,13 @@ class Flywheel:
|
|
|
7182
7182
|
Gets jobs assigned to user with optional gear name regex Args: gear_name (str): name of gear to filter by auth_session (AuthSession): session from incoming request Returns: list: List of jobs linked to the user
|
|
7183
7183
|
|
|
7184
7184
|
:param str gear: Gear name. Get only the jobs which are related to a specific gear.
|
|
7185
|
+
:param bool exhaustive:
|
|
7185
7186
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
7186
7187
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
7187
7188
|
:param int limit: The maximum number of entries to return.
|
|
7188
7189
|
:param int skip: The number of entries to skip.
|
|
7189
7190
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
7190
7191
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
7191
|
-
:param bool exhaustive:
|
|
7192
7192
|
:param list[str] x_accept_feature:
|
|
7193
7193
|
:param bool async_: Perform the request asynchronously
|
|
7194
7194
|
:return: UserJobs
|
|
@@ -7215,14 +7215,14 @@ class Flywheel:
|
|
|
7215
7215
|
Get all acquisitions that belong to the given user.
|
|
7216
7216
|
|
|
7217
7217
|
:param str uid: (required)
|
|
7218
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
7219
|
+
:param bool include_all_info: Include all info in returned objects
|
|
7218
7220
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
7219
7221
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
7220
7222
|
:param int limit: The maximum number of entries to return.
|
|
7221
7223
|
:param int skip: The number of entries to skip.
|
|
7222
7224
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
7223
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
7224
7225
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
7225
|
-
:param bool include_all_info: Include all info in returned objects
|
|
7226
7226
|
:param bool async_: Perform the request asynchronously
|
|
7227
7227
|
:return: list[AcquisitionListOutput]
|
|
7228
7228
|
"""
|
|
@@ -7246,12 +7246,12 @@ class Flywheel:
|
|
|
7246
7246
|
"""Get all collections that belong to the given user.
|
|
7247
7247
|
|
|
7248
7248
|
:param str user_id: (required)
|
|
7249
|
-
:param str filter:
|
|
7250
|
-
:param str sort:
|
|
7251
|
-
:param int limit:
|
|
7252
|
-
:param int skip:
|
|
7253
|
-
:param int page:
|
|
7254
|
-
:param str after_id:
|
|
7249
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
7250
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
7251
|
+
:param int limit: The maximum number of entries to return.
|
|
7252
|
+
:param int skip: The number of entries to skip.
|
|
7253
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
7254
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
7255
7255
|
:param list[str] x_accept_feature:
|
|
7256
7256
|
:param bool async_: Perform the request asynchronously
|
|
7257
7257
|
:return: union[list[CollectionWithStats],list[CollectionOutput],Page]
|
|
@@ -7283,14 +7283,14 @@ class Flywheel:
|
|
|
7283
7283
|
Get all projects that belong to the given user.
|
|
7284
7284
|
|
|
7285
7285
|
:param str uid: (required)
|
|
7286
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
7287
|
+
:param bool include_all_info: Include all info in returned objects
|
|
7286
7288
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
7287
7289
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
7288
7290
|
:param int limit: The maximum number of entries to return.
|
|
7289
7291
|
:param int skip: The number of entries to skip.
|
|
7290
7292
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
7291
7293
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
7292
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
7293
|
-
:param bool include_all_info: Include all info in returned objects
|
|
7294
7294
|
:param bool async_: Perform the request asynchronously
|
|
7295
7295
|
:return: list[ProjectListOutput]
|
|
7296
7296
|
"""
|
|
@@ -7303,14 +7303,14 @@ class Flywheel:
|
|
|
7303
7303
|
Get all sessions that belong to the given user.
|
|
7304
7304
|
|
|
7305
7305
|
:param str uid: (required)
|
|
7306
|
-
:param str filter:
|
|
7307
|
-
:param str sort:
|
|
7308
|
-
:param int limit:
|
|
7309
|
-
:param int skip:
|
|
7310
|
-
:param int page:
|
|
7311
|
-
:param str after_id:
|
|
7312
7306
|
:param bool exhaustive:
|
|
7313
7307
|
:param bool include_all_info: Include all info in returned objects
|
|
7308
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
7309
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
7310
|
+
:param int limit: The maximum number of entries to return.
|
|
7311
|
+
:param int skip: The number of entries to skip.
|
|
7312
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
7313
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
7314
7314
|
:param bool async_: Perform the request asynchronously
|
|
7315
7315
|
:return: list[SessionListOutput]
|
|
7316
7316
|
"""
|
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:
|
|
9
|
+
OpenAPI spec version: sdk-push.7b015124
|
|
10
10
|
|
|
11
11
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
"""
|
|
@@ -25,7 +25,8 @@ class ProjectCopyFilter(object):
|
|
|
25
25
|
'exclude_notes': 'bool',
|
|
26
26
|
'exclude_tags': 'bool',
|
|
27
27
|
'include_rules': 'list[str]',
|
|
28
|
-
'exclude_rules': 'list[str]'
|
|
28
|
+
'exclude_rules': 'list[str]',
|
|
29
|
+
'exclude_empty_containers': 'bool'
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
attribute_map = {
|
|
@@ -33,7 +34,8 @@ class ProjectCopyFilter(object):
|
|
|
33
34
|
'exclude_notes': 'exclude_notes',
|
|
34
35
|
'exclude_tags': 'exclude_tags',
|
|
35
36
|
'include_rules': 'include_rules',
|
|
36
|
-
'exclude_rules': 'exclude_rules'
|
|
37
|
+
'exclude_rules': 'exclude_rules',
|
|
38
|
+
'exclude_empty_containers': 'exclude_empty_containers'
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
rattribute_map = {
|
|
@@ -41,10 +43,11 @@ class ProjectCopyFilter(object):
|
|
|
41
43
|
'exclude_notes': 'exclude_notes',
|
|
42
44
|
'exclude_tags': 'exclude_tags',
|
|
43
45
|
'include_rules': 'include_rules',
|
|
44
|
-
'exclude_rules': 'exclude_rules'
|
|
46
|
+
'exclude_rules': 'exclude_rules',
|
|
47
|
+
'exclude_empty_containers': 'exclude_empty_containers'
|
|
45
48
|
}
|
|
46
49
|
|
|
47
|
-
def __init__(self, exclude_analysis=False, exclude_notes=False, exclude_tags=False, include_rules=None, exclude_rules=None): # noqa: E501
|
|
50
|
+
def __init__(self, exclude_analysis=False, exclude_notes=False, exclude_tags=False, include_rules=None, exclude_rules=None, exclude_empty_containers=True): # noqa: E501
|
|
48
51
|
"""ProjectCopyFilter - a model defined in Swagger"""
|
|
49
52
|
super(ProjectCopyFilter, self).__init__()
|
|
50
53
|
|
|
@@ -53,6 +56,7 @@ class ProjectCopyFilter(object):
|
|
|
53
56
|
self._exclude_tags = None
|
|
54
57
|
self._include_rules = None
|
|
55
58
|
self._exclude_rules = None
|
|
59
|
+
self._exclude_empty_containers = None
|
|
56
60
|
self.discriminator = None
|
|
57
61
|
self.alt_discriminator = None
|
|
58
62
|
|
|
@@ -66,6 +70,8 @@ class ProjectCopyFilter(object):
|
|
|
66
70
|
self.include_rules = include_rules
|
|
67
71
|
if exclude_rules is not None:
|
|
68
72
|
self.exclude_rules = exclude_rules
|
|
73
|
+
if exclude_empty_containers is not None:
|
|
74
|
+
self.exclude_empty_containers = exclude_empty_containers
|
|
69
75
|
|
|
70
76
|
@property
|
|
71
77
|
def exclude_analysis(self):
|
|
@@ -172,6 +178,27 @@ class ProjectCopyFilter(object):
|
|
|
172
178
|
|
|
173
179
|
self._exclude_rules = exclude_rules
|
|
174
180
|
|
|
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
|
+
|
|
175
202
|
|
|
176
203
|
@staticmethod
|
|
177
204
|
def positional_to_model(value):
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
flywheel/__init__.py,sha256=LE9B1Aey0HGrusRPQc8yTl105-kI9h5yEqxUL6CrQzE,44975
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
2
|
+
flywheel/api_client.py,sha256=RnoEoehs-FN_dlhBJzETyQfIteBf5BMw3v1lqD-GIk8,29570
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=tKSjImgktMzR0AUZQ0Ryihn9djFUP2-lbSYCRlJyQT8,8650
|
|
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=O7oC9TlZd2IxpZxk0wktow0dKL2dlJZi-i1Nbbw7TLQ,395085
|
|
9
9
|
flywheel/gear_context.py,sha256=cFJs8cC_on6v184HVUTXSSVS9y5ee73QN0lCkPTQ5jk,13701
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=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=
|
|
15
|
+
flywheel/api/acquisitions_api.py,sha256=Kjc5jdEQlXUyn3aH6-I2bqoDVlxfXANzcoVysVQMZ6Y,213201
|
|
16
16
|
flywheel/api/analyses_api.py,sha256=0MqBGFQukb-Mm542MOS-Fc764XnkeyNsnin9OcXEFcU,117699
|
|
17
17
|
flywheel/api/audit_trail_api.py,sha256=dFinVdTCqO1TsCoRndTT1qqV61J2FWMyYS2FqQwqP54,21492
|
|
18
18
|
flywheel/api/auth_api.py,sha256=w6wscqpCv-Rc9n9Q1KogyeaByM9YhiDNl4upvErV674,3703
|
|
@@ -21,32 +21,32 @@ 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=pufAm_gzR6doPFhrMqLYOl_v3m3yPt3klgpa69IPInc,165385
|
|
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=2Dzb0Xmc_SUbHf2HUFGTnhLen_p-yqhPnkqtsvj4h0M,202808
|
|
25
25
|
flywheel/api/data_view_executions_api.py,sha256=vdQ3vRbebC2InZp0s7WUMGxJjRiq_aaXLrYIHi2lk4s,21544
|
|
26
|
-
flywheel/api/dataexplorer_api.py,sha256=
|
|
27
|
-
flywheel/api/devices_api.py,sha256=
|
|
26
|
+
flywheel/api/dataexplorer_api.py,sha256=Qqu916GYB1oMYLshp6zagQtaszkAFGrbT6RnmNyRhLU,37594
|
|
27
|
+
flywheel/api/devices_api.py,sha256=BXJt_dJdVQ94We1EYdmrCziAb6OerBGg7IkUlJVQDHk,39380
|
|
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=
|
|
31
|
-
flywheel/api/gears_api.py,sha256=
|
|
30
|
+
flywheel/api/files_api.py,sha256=fE8KWWhCsp79I5c8FqVoei6dh5YMnvbtjhZxo8aaK-I,57924
|
|
31
|
+
flywheel/api/gears_api.py,sha256=Pu1bWBrlDgXHDsgsyIOJxPl2_6oxQvtm2JVaVOJ667c,73128
|
|
32
32
|
flywheel/api/groups_api.py,sha256=XplP1S_fo9zVDrLTZpv0dXzzbnMnNumxfJpk-Tfoy9I,113596
|
|
33
|
-
flywheel/api/jobs_api.py,sha256=
|
|
33
|
+
flywheel/api/jobs_api.py,sha256=VMu1r6k1gng9Sg1b0IlDaIfC1A7rvdqn3gHVXXd39-k,73963
|
|
34
34
|
flywheel/api/jupyterlab_servers_api.py,sha256=FiwtzKL6SClFXiBnzbf5dtjHCjonMQ3jB7FHlrFNGQM,9180
|
|
35
|
-
flywheel/api/modalities_api.py,sha256=
|
|
35
|
+
flywheel/api/modalities_api.py,sha256=GyqCWO1_iQ7RUgvKD6KeAOrPx6O7Q3XxxGsqksBBJEM,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=sTEl6wNlMUJokkik_PwYcTQ4Cy4AtjrtzjRRH9312A0,330414
|
|
38
38
|
flywheel/api/reports_api.py,sha256=6WW5CroopwNrw6GBE0_R34stBWbyqUXgRoyiHkAAZE4,36251
|
|
39
39
|
flywheel/api/resolve_api.py,sha256=6yuXytZnhpFBPz0x5TN1B57jtRn9kuSqth6WtXWSYaw,11603
|
|
40
|
-
flywheel/api/roles_api.py,sha256=
|
|
41
|
-
flywheel/api/sessions_api.py,sha256=
|
|
42
|
-
flywheel/api/site_api.py,sha256=
|
|
43
|
-
flywheel/api/subjects_api.py,sha256=
|
|
40
|
+
flywheel/api/roles_api.py,sha256=2FQCdRZgg-bZDVP8Nv4JOb4UYMbGcX0Cstc3x6Cff1Y,20698
|
|
41
|
+
flywheel/api/sessions_api.py,sha256=zABPloe1ISaKyGVC8SqzUyrw-YHm4zaeJ-6j2W08_y0,223474
|
|
42
|
+
flywheel/api/site_api.py,sha256=6skw2iKO5JAO9AVaTJZCuusBaECbuFDMiiPKE8tIHHY,57379
|
|
43
|
+
flywheel/api/subjects_api.py,sha256=oRhSwCZFr8bXeCw3JNkpHVlI_1JrGWIMA09KwNX4Ae8,227081
|
|
44
44
|
flywheel/api/tree_api.py,sha256=NZ_1QbOIhPodTqx82nmgPvLfxCB7NwmTf7oPgzxgEbI,12337
|
|
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=-eAz4T9PEhvG0OEOOos3BXLGxs7C8tcI8IjKXknNGEA,85396
|
|
48
48
|
flywheel/api/views_api.py,sha256=ZbPYA_sOQ9qnOjkOUeioV0v08VPbsuuOnMP3EBySEVY,44375
|
|
49
|
-
flywheel/models/__init__.py,sha256=
|
|
49
|
+
flywheel/models/__init__.py,sha256=Z38LQQcTl_xzNGGGnDB9JgPr_B2LO7EWTWZcYW9YhY8,42862
|
|
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
|
|
@@ -478,7 +478,7 @@ flywheel/models/project_aet_input.py,sha256=W8mzPlcJyc2KKgLCe05TpQdHmpy3mdJG8-eA
|
|
|
478
478
|
flywheel/models/project_catalog_list_output.py,sha256=xeqKCNfqOmT4ms_6DQjqR5Uz6moTSAH_tkZbM6X9am8,542
|
|
479
479
|
flywheel/models/project_contact.py,sha256=WiCoHfnq62ThKUss5hRCGhVGHv7YI_q5Un2OdqZlZIw,5266
|
|
480
480
|
flywheel/models/project_container_output.py,sha256=ucS7vWJhh_ApVHqVZH5KNiVEkRpu2pVFdcMeS6sTTdE,1485
|
|
481
|
-
flywheel/models/project_copy_filter.py,sha256=
|
|
481
|
+
flywheel/models/project_copy_filter.py,sha256=HqXwcoPqf7pH3_HXVtLA3X5xYqZrIvxT2uOvXbJ3OUw,9006
|
|
482
482
|
flywheel/models/project_copy_input.py,sha256=BR1AMjA3M77BNI1eBy2pm7bLOV-wlzFvWpuvnlAUfoU,6030
|
|
483
483
|
flywheel/models/project_copy_output.py,sha256=VBNZPXCni0fMWoSj1s_hBhHkyZkMBXgF3hJnLTcI5jo,5939
|
|
484
484
|
flywheel/models/project_copy_status.py,sha256=I1UPavaYxo3NDsLOn0-Y7ZlZ-N0Ml7II04NJ7WIZtZ4,657
|
|
@@ -706,8 +706,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
706
706
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
707
707
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
708
708
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
709
|
-
flywheel_sdk-19.
|
|
710
|
-
flywheel_sdk-19.
|
|
711
|
-
flywheel_sdk-19.
|
|
712
|
-
flywheel_sdk-19.
|
|
713
|
-
flywheel_sdk-19.
|
|
709
|
+
flywheel_sdk-19.5.0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
710
|
+
flywheel_sdk-19.5.0.dist-info/METADATA,sha256=k_vIo21DhyS35qTFYFrJEj9FDpo_rrnA2ib9gzxDcXM,955
|
|
711
|
+
flywheel_sdk-19.5.0.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
|
|
712
|
+
flywheel_sdk-19.5.0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
713
|
+
flywheel_sdk-19.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|