flywheel-sdk 19.4.0rc1__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.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/METADATA +6 -6
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/RECORD +24 -24
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.4.0rc1.dist-info → flywheel_sdk-19.5.0.dist-info}/top_level.txt +0 -0
flywheel/api/users_api.py
CHANGED
|
@@ -441,9 +441,9 @@ class UsersApi(object):
|
|
|
441
441
|
This method makes a synchronous HTTP request by default.
|
|
442
442
|
|
|
443
443
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
444
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
445
|
-
:param int limit: The maximum number of entries to return
|
|
446
|
-
:param int skip: The number of entries to skip
|
|
444
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
445
|
+
:param int limit: The maximum number of entries to return.
|
|
446
|
+
:param int skip: The number of entries to skip.
|
|
447
447
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
448
448
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
449
449
|
:param list[str] x_accept_feature:
|
|
@@ -473,9 +473,9 @@ class UsersApi(object):
|
|
|
473
473
|
This method makes a synchronous HTTP request by default.
|
|
474
474
|
|
|
475
475
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
476
|
-
:param str sort: The sort fields and order.(e.g. label:asc,created:desc)
|
|
477
|
-
:param int limit: The maximum number of entries to return
|
|
478
|
-
:param int skip: The number of entries to skip
|
|
476
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
477
|
+
:param int limit: The maximum number of entries to return.
|
|
478
|
+
:param int skip: The number of entries to skip.
|
|
479
479
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
480
480
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
481
481
|
:param list[str] x_accept_feature:
|
|
@@ -830,13 +830,13 @@ class UsersApi(object):
|
|
|
830
830
|
This method makes a synchronous HTTP request by default.
|
|
831
831
|
|
|
832
832
|
:param str gear: Gear name. Get only the jobs which are related to a specific gear.
|
|
833
|
+
:param bool exhaustive:
|
|
833
834
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
834
835
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
835
836
|
:param int limit: The maximum number of entries to return.
|
|
836
837
|
:param int skip: The number of entries to skip.
|
|
837
838
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
838
839
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
839
|
-
:param bool exhaustive:
|
|
840
840
|
:param list[str] x_accept_feature:
|
|
841
841
|
:param bool async_: Perform the request asynchronously
|
|
842
842
|
:return: UserJobs
|
|
@@ -864,19 +864,19 @@ class UsersApi(object):
|
|
|
864
864
|
This method makes a synchronous HTTP request by default.
|
|
865
865
|
|
|
866
866
|
:param str gear: Gear name. Get only the jobs which are related to a specific gear.
|
|
867
|
+
:param bool exhaustive:
|
|
867
868
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
868
869
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
869
870
|
:param int limit: The maximum number of entries to return.
|
|
870
871
|
:param int skip: The number of entries to skip.
|
|
871
872
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
872
873
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
873
|
-
:param bool exhaustive:
|
|
874
874
|
:param list[str] x_accept_feature:
|
|
875
875
|
:param bool async_: Perform the request asynchronously
|
|
876
876
|
:return: UserJobs
|
|
877
877
|
"""
|
|
878
878
|
|
|
879
|
-
all_params = ['gear','filter','sort','limit','skip','page','after_id','
|
|
879
|
+
all_params = ['gear','exhaustive','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
880
880
|
all_params.append('async_')
|
|
881
881
|
all_params.append('_return_http_data_only')
|
|
882
882
|
all_params.append('_preload_content')
|
|
@@ -900,6 +900,8 @@ class UsersApi(object):
|
|
|
900
900
|
query_params = []
|
|
901
901
|
if 'gear' in params:
|
|
902
902
|
query_params.append(('gear', params['gear'])) # noqa: E501
|
|
903
|
+
if 'exhaustive' in params:
|
|
904
|
+
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
903
905
|
if 'filter' in params:
|
|
904
906
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
905
907
|
if 'sort' in params:
|
|
@@ -912,8 +914,6 @@ class UsersApi(object):
|
|
|
912
914
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
913
915
|
if 'after_id' in params:
|
|
914
916
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
915
|
-
if 'exhaustive' in params:
|
|
916
|
-
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
917
917
|
|
|
918
918
|
header_params = {}
|
|
919
919
|
if 'x_accept_feature' in params:
|
|
@@ -1055,14 +1055,14 @@ class UsersApi(object):
|
|
|
1055
1055
|
This method makes a synchronous HTTP request by default.
|
|
1056
1056
|
|
|
1057
1057
|
:param str uid: (required)
|
|
1058
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1059
|
+
:param bool include_all_info: Include all info in returned objects
|
|
1058
1060
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1059
1061
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1060
1062
|
:param int limit: The maximum number of entries to return.
|
|
1061
1063
|
:param int skip: The number of entries to skip.
|
|
1062
1064
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
1063
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1064
1065
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1065
|
-
:param bool include_all_info: Include all info in returned objects
|
|
1066
1066
|
:param bool async_: Perform the request asynchronously
|
|
1067
1067
|
:return: list[AcquisitionListOutput]
|
|
1068
1068
|
"""
|
|
@@ -1089,19 +1089,19 @@ class UsersApi(object):
|
|
|
1089
1089
|
This method makes a synchronous HTTP request by default.
|
|
1090
1090
|
|
|
1091
1091
|
:param str uid: (required)
|
|
1092
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1093
|
+
:param bool include_all_info: Include all info in returned objects
|
|
1092
1094
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1093
1095
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1094
1096
|
:param int limit: The maximum number of entries to return.
|
|
1095
1097
|
:param int skip: The number of entries to skip.
|
|
1096
1098
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
1097
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1098
1099
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1099
|
-
:param bool include_all_info: Include all info in returned objects
|
|
1100
1100
|
:param bool async_: Perform the request asynchronously
|
|
1101
1101
|
:return: list[AcquisitionListOutput]
|
|
1102
1102
|
"""
|
|
1103
1103
|
|
|
1104
|
-
all_params = ['uid','filter','sort','limit','skip','page','
|
|
1104
|
+
all_params = ['uid','exhaustive','include_all_info','filter','sort','limit','skip','page','after_id',] # noqa: E501
|
|
1105
1105
|
all_params.append('async_')
|
|
1106
1106
|
all_params.append('_return_http_data_only')
|
|
1107
1107
|
all_params.append('_preload_content')
|
|
@@ -1129,6 +1129,10 @@ class UsersApi(object):
|
|
|
1129
1129
|
path_params['uid'] = params['uid'] # noqa: E501
|
|
1130
1130
|
|
|
1131
1131
|
query_params = []
|
|
1132
|
+
if 'exhaustive' in params:
|
|
1133
|
+
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
1134
|
+
if 'include_all_info' in params:
|
|
1135
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
1132
1136
|
if 'filter' in params:
|
|
1133
1137
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
1134
1138
|
if 'sort' in params:
|
|
@@ -1139,12 +1143,8 @@ class UsersApi(object):
|
|
|
1139
1143
|
query_params.append(('skip', params['skip'])) # noqa: E501
|
|
1140
1144
|
if 'page' in params:
|
|
1141
1145
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
1142
|
-
if 'exhaustive' in params:
|
|
1143
|
-
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
1144
1146
|
if 'after_id' in params:
|
|
1145
1147
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
1146
|
-
if 'include_all_info' in params:
|
|
1147
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
1148
1148
|
|
|
1149
1149
|
header_params = {}
|
|
1150
1150
|
|
|
@@ -1282,12 +1282,12 @@ class UsersApi(object):
|
|
|
1282
1282
|
This method makes a synchronous HTTP request by default.
|
|
1283
1283
|
|
|
1284
1284
|
:param str user_id: (required)
|
|
1285
|
-
:param str filter:
|
|
1286
|
-
:param str sort:
|
|
1287
|
-
:param int limit:
|
|
1288
|
-
:param int skip:
|
|
1289
|
-
:param int page:
|
|
1290
|
-
:param str after_id:
|
|
1285
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1286
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1287
|
+
:param int limit: The maximum number of entries to return.
|
|
1288
|
+
:param int skip: The number of entries to skip.
|
|
1289
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
1290
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1291
1291
|
:param list[str] x_accept_feature:
|
|
1292
1292
|
:param bool async_: Perform the request asynchronously
|
|
1293
1293
|
:return: union[list[CollectionWithStats],list[CollectionOutput],Page]
|
|
@@ -1314,12 +1314,12 @@ class UsersApi(object):
|
|
|
1314
1314
|
This method makes a synchronous HTTP request by default.
|
|
1315
1315
|
|
|
1316
1316
|
:param str user_id: (required)
|
|
1317
|
-
:param str filter:
|
|
1318
|
-
:param str sort:
|
|
1319
|
-
:param int limit:
|
|
1320
|
-
:param int skip:
|
|
1321
|
-
:param int page:
|
|
1322
|
-
:param str after_id:
|
|
1317
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1318
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1319
|
+
:param int limit: The maximum number of entries to return.
|
|
1320
|
+
:param int skip: The number of entries to skip.
|
|
1321
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
1322
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1323
1323
|
:param list[str] x_accept_feature:
|
|
1324
1324
|
:param bool async_: Perform the request asynchronously
|
|
1325
1325
|
:return: union[list[CollectionWithStats],list[CollectionOutput],Page]
|
|
@@ -1533,14 +1533,14 @@ class UsersApi(object):
|
|
|
1533
1533
|
This method makes a synchronous HTTP request by default.
|
|
1534
1534
|
|
|
1535
1535
|
:param str uid: (required)
|
|
1536
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1537
|
+
:param bool include_all_info: Include all info in returned objects
|
|
1536
1538
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1537
1539
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1538
1540
|
:param int limit: The maximum number of entries to return.
|
|
1539
1541
|
:param int skip: The number of entries to skip.
|
|
1540
1542
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
1541
1543
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1542
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1543
|
-
:param bool include_all_info: Include all info in returned objects
|
|
1544
1544
|
:param bool async_: Perform the request asynchronously
|
|
1545
1545
|
:return: list[ProjectListOutput]
|
|
1546
1546
|
"""
|
|
@@ -1567,19 +1567,19 @@ class UsersApi(object):
|
|
|
1567
1567
|
This method makes a synchronous HTTP request by default.
|
|
1568
1568
|
|
|
1569
1569
|
:param str uid: (required)
|
|
1570
|
+
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1571
|
+
:param bool include_all_info: Include all info in returned objects
|
|
1570
1572
|
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1571
1573
|
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1572
1574
|
:param int limit: The maximum number of entries to return.
|
|
1573
1575
|
:param int skip: The number of entries to skip.
|
|
1574
1576
|
:param int page: The page number (i.e. skip limit*page entries)
|
|
1575
1577
|
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1576
|
-
:param bool exhaustive: Set to return a complete list regardless of permissions
|
|
1577
|
-
:param bool include_all_info: Include all info in returned objects
|
|
1578
1578
|
:param bool async_: Perform the request asynchronously
|
|
1579
1579
|
:return: list[ProjectListOutput]
|
|
1580
1580
|
"""
|
|
1581
1581
|
|
|
1582
|
-
all_params = ['uid','filter','sort','limit','skip','page','after_id',
|
|
1582
|
+
all_params = ['uid','exhaustive','include_all_info','filter','sort','limit','skip','page','after_id',] # noqa: E501
|
|
1583
1583
|
all_params.append('async_')
|
|
1584
1584
|
all_params.append('_return_http_data_only')
|
|
1585
1585
|
all_params.append('_preload_content')
|
|
@@ -1607,6 +1607,10 @@ class UsersApi(object):
|
|
|
1607
1607
|
path_params['uid'] = params['uid'] # noqa: E501
|
|
1608
1608
|
|
|
1609
1609
|
query_params = []
|
|
1610
|
+
if 'exhaustive' in params:
|
|
1611
|
+
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
1612
|
+
if 'include_all_info' in params:
|
|
1613
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
1610
1614
|
if 'filter' in params:
|
|
1611
1615
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
1612
1616
|
if 'sort' in params:
|
|
@@ -1619,10 +1623,6 @@ class UsersApi(object):
|
|
|
1619
1623
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
1620
1624
|
if 'after_id' in params:
|
|
1621
1625
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
1622
|
-
if 'exhaustive' in params:
|
|
1623
|
-
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
1624
|
-
if 'include_all_info' in params:
|
|
1625
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
1626
1626
|
|
|
1627
1627
|
header_params = {}
|
|
1628
1628
|
|
|
@@ -1661,14 +1661,14 @@ class UsersApi(object):
|
|
|
1661
1661
|
This method makes a synchronous HTTP request by default.
|
|
1662
1662
|
|
|
1663
1663
|
:param str uid: (required)
|
|
1664
|
-
:param str filter:
|
|
1665
|
-
:param str sort:
|
|
1666
|
-
:param int limit:
|
|
1667
|
-
:param int skip:
|
|
1668
|
-
:param int page:
|
|
1669
|
-
:param str after_id:
|
|
1670
1664
|
:param bool exhaustive:
|
|
1671
1665
|
:param bool include_all_info: Include all info in returned objects
|
|
1666
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1667
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1668
|
+
:param int limit: The maximum number of entries to return.
|
|
1669
|
+
:param int skip: The number of entries to skip.
|
|
1670
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
1671
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1672
1672
|
:param bool async_: Perform the request asynchronously
|
|
1673
1673
|
:return: list[SessionListOutput]
|
|
1674
1674
|
"""
|
|
@@ -1695,19 +1695,19 @@ class UsersApi(object):
|
|
|
1695
1695
|
This method makes a synchronous HTTP request by default.
|
|
1696
1696
|
|
|
1697
1697
|
:param str uid: (required)
|
|
1698
|
-
:param str filter:
|
|
1699
|
-
:param str sort:
|
|
1700
|
-
:param int limit:
|
|
1701
|
-
:param int skip:
|
|
1702
|
-
:param int page:
|
|
1703
|
-
:param str after_id:
|
|
1704
1698
|
:param bool exhaustive:
|
|
1705
1699
|
:param bool include_all_info: Include all info in returned objects
|
|
1700
|
+
:param str filter: The filter to apply. (e.g. label=my-label,created>2018-09-22)
|
|
1701
|
+
:param str sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
1702
|
+
:param int limit: The maximum number of entries to return.
|
|
1703
|
+
:param int skip: The number of entries to skip.
|
|
1704
|
+
:param int page: The page number (i.e. skip limit*page entries)
|
|
1705
|
+
:param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
1706
1706
|
:param bool async_: Perform the request asynchronously
|
|
1707
1707
|
:return: list[SessionListOutput]
|
|
1708
1708
|
"""
|
|
1709
1709
|
|
|
1710
|
-
all_params = ['uid','filter','sort','limit','skip','page','after_id',
|
|
1710
|
+
all_params = ['uid','exhaustive','include_all_info','filter','sort','limit','skip','page','after_id',] # noqa: E501
|
|
1711
1711
|
all_params.append('async_')
|
|
1712
1712
|
all_params.append('_return_http_data_only')
|
|
1713
1713
|
all_params.append('_preload_content')
|
|
@@ -1735,6 +1735,10 @@ class UsersApi(object):
|
|
|
1735
1735
|
path_params['uid'] = params['uid'] # noqa: E501
|
|
1736
1736
|
|
|
1737
1737
|
query_params = []
|
|
1738
|
+
if 'exhaustive' in params:
|
|
1739
|
+
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
1740
|
+
if 'include_all_info' in params:
|
|
1741
|
+
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
1738
1742
|
if 'filter' in params:
|
|
1739
1743
|
query_params.append(('filter', params['filter'])) # noqa: E501
|
|
1740
1744
|
if 'sort' in params:
|
|
@@ -1747,10 +1751,6 @@ class UsersApi(object):
|
|
|
1747
1751
|
query_params.append(('page', params['page'])) # noqa: E501
|
|
1748
1752
|
if 'after_id' in params:
|
|
1749
1753
|
query_params.append(('after_id', params['after_id'])) # noqa: E501
|
|
1750
|
-
if 'exhaustive' in params:
|
|
1751
|
-
query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
|
|
1752
|
-
if 'include_all_info' in params:
|
|
1753
|
-
query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
|
|
1754
1754
|
|
|
1755
1755
|
header_params = {}
|
|
1756
1756
|
|
flywheel/api_client.py
CHANGED
|
@@ -84,7 +84,7 @@ class ApiClient(object):
|
|
|
84
84
|
self.default_query_params = []
|
|
85
85
|
self.cookie = cookie
|
|
86
86
|
# Set default User-Agent.
|
|
87
|
-
self.user_agent = 'Swagger-Codegen/19.
|
|
87
|
+
self.user_agent = 'Swagger-Codegen/19.5.0/python'
|
|
88
88
|
self.last_response = None
|
|
89
89
|
self._version_check_fn = None
|
|
90
90
|
self._context = context
|
flywheel/configuration.py
CHANGED
|
@@ -252,6 +252,6 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
|
|
|
252
252
|
return "Python SDK Debug Report:\n"\
|
|
253
253
|
"OS: {env}\n"\
|
|
254
254
|
"Python Version: {pyversion}\n"\
|
|
255
|
-
"Version of the API:
|
|
256
|
-
"SDK Package Version: 19.
|
|
255
|
+
"Version of the API: sdk-push.7b015124\n"\
|
|
256
|
+
"SDK Package Version: 19.5.0".\
|
|
257
257
|
format(env=sys.platform, pyversion=sys.version)
|