|
| 1 | +# neurostore_sdk.NeurostoreStudysetReleasesApi |
| 2 | + |
| 3 | +All URIs are relative to *https://neurostore.org/api* |
| 4 | + |
| 5 | +Method | HTTP request | Description |
| 6 | +------------- | ------------- | ------------- |
| 7 | +[**neurostore_resources_neurostore_studyset_releases_download**](NeurostoreStudysetReleasesApi.md#neurostore_resources_neurostore_studyset_releases_download) | **GET** /neurostore-studyset-releases/{version}/download | Download NeuroStore studyset release tarball |
| 8 | +[**neurostore_resources_neurostore_studyset_releases_get**](NeurostoreStudysetReleasesApi.md#neurostore_resources_neurostore_studyset_releases_get) | **GET** /neurostore-studyset-releases/{version} | GET NeuroStore studyset release manifest |
| 9 | +[**neurostore_resources_neurostore_studyset_releases_search**](NeurostoreStudysetReleasesApi.md#neurostore_resources_neurostore_studyset_releases_search) | **GET** /neurostore-studyset-releases/ | GET NeuroStore studyset release list |
| 10 | + |
| 11 | + |
| 12 | +# **neurostore_resources_neurostore_studyset_releases_download** |
| 13 | +> bytearray neurostore_resources_neurostore_studyset_releases_download(version) |
| 14 | +
|
| 15 | +Download NeuroStore studyset release tarball |
| 16 | + |
| 17 | +### Example |
| 18 | + |
| 19 | + |
| 20 | +```python |
| 21 | +import neurostore_sdk |
| 22 | +from neurostore_sdk.rest import ApiException |
| 23 | +from pprint import pprint |
| 24 | + |
| 25 | +# Defining the host is optional and defaults to https://neurostore.org/api |
| 26 | +# See configuration.py for a list of all supported configuration parameters. |
| 27 | +configuration = neurostore_sdk.Configuration( |
| 28 | + host = "https://neurostore.org/api" |
| 29 | +) |
| 30 | + |
| 31 | + |
| 32 | +# Enter a context with an instance of the API client |
| 33 | +with neurostore_sdk.ApiClient(configuration) as api_client: |
| 34 | + # Create an instance of the API class |
| 35 | + api_instance = neurostore_sdk.NeurostoreStudysetReleasesApi(api_client) |
| 36 | + version = 'version_example' # str | nightly, latest, or a monthly release in YYYY-MM format. |
| 37 | + |
| 38 | + try: |
| 39 | + # Download NeuroStore studyset release tarball |
| 40 | + api_response = api_instance.neurostore_resources_neurostore_studyset_releases_download(version) |
| 41 | + print("The response of NeurostoreStudysetReleasesApi->neurostore_resources_neurostore_studyset_releases_download:\n") |
| 42 | + pprint(api_response) |
| 43 | + except Exception as e: |
| 44 | + print("Exception when calling NeurostoreStudysetReleasesApi->neurostore_resources_neurostore_studyset_releases_download: %s\n" % e) |
| 45 | +``` |
| 46 | + |
| 47 | + |
| 48 | + |
| 49 | +### Parameters |
| 50 | + |
| 51 | + |
| 52 | +Name | Type | Description | Notes |
| 53 | +------------- | ------------- | ------------- | ------------- |
| 54 | + **version** | **str**| nightly, latest, or a monthly release in YYYY-MM format. | |
| 55 | + |
| 56 | +### Return type |
| 57 | + |
| 58 | +**bytearray** |
| 59 | + |
| 60 | +### Authorization |
| 61 | + |
| 62 | +No authorization required |
| 63 | + |
| 64 | +### HTTP request headers |
| 65 | + |
| 66 | + - **Content-Type**: Not defined |
| 67 | + - **Accept**: application/gzip, application/json |
| 68 | + |
| 69 | +### HTTP response details |
| 70 | + |
| 71 | +| Status code | Description | Response headers | |
| 72 | +|-------------|-------------|------------------| |
| 73 | +**200** | OK | - | |
| 74 | +**404** | Not Found | - | |
| 75 | + |
| 76 | +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) |
| 77 | + |
| 78 | +# **neurostore_resources_neurostore_studyset_releases_get** |
| 79 | +> object neurostore_resources_neurostore_studyset_releases_get(version) |
| 80 | +
|
| 81 | +GET NeuroStore studyset release manifest |
| 82 | + |
| 83 | +### Example |
| 84 | + |
| 85 | + |
| 86 | +```python |
| 87 | +import neurostore_sdk |
| 88 | +from neurostore_sdk.rest import ApiException |
| 89 | +from pprint import pprint |
| 90 | + |
| 91 | +# Defining the host is optional and defaults to https://neurostore.org/api |
| 92 | +# See configuration.py for a list of all supported configuration parameters. |
| 93 | +configuration = neurostore_sdk.Configuration( |
| 94 | + host = "https://neurostore.org/api" |
| 95 | +) |
| 96 | + |
| 97 | + |
| 98 | +# Enter a context with an instance of the API client |
| 99 | +with neurostore_sdk.ApiClient(configuration) as api_client: |
| 100 | + # Create an instance of the API class |
| 101 | + api_instance = neurostore_sdk.NeurostoreStudysetReleasesApi(api_client) |
| 102 | + version = 'version_example' # str | nightly, latest, or a monthly release in YYYY-MM format. |
| 103 | + |
| 104 | + try: |
| 105 | + # GET NeuroStore studyset release manifest |
| 106 | + api_response = api_instance.neurostore_resources_neurostore_studyset_releases_get(version) |
| 107 | + print("The response of NeurostoreStudysetReleasesApi->neurostore_resources_neurostore_studyset_releases_get:\n") |
| 108 | + pprint(api_response) |
| 109 | + except Exception as e: |
| 110 | + print("Exception when calling NeurostoreStudysetReleasesApi->neurostore_resources_neurostore_studyset_releases_get: %s\n" % e) |
| 111 | +``` |
| 112 | + |
| 113 | + |
| 114 | + |
| 115 | +### Parameters |
| 116 | + |
| 117 | + |
| 118 | +Name | Type | Description | Notes |
| 119 | +------------- | ------------- | ------------- | ------------- |
| 120 | + **version** | **str**| nightly, latest, or a monthly release in YYYY-MM format. | |
| 121 | + |
| 122 | +### Return type |
| 123 | + |
| 124 | +**object** |
| 125 | + |
| 126 | +### Authorization |
| 127 | + |
| 128 | +No authorization required |
| 129 | + |
| 130 | +### HTTP request headers |
| 131 | + |
| 132 | + - **Content-Type**: Not defined |
| 133 | + - **Accept**: application/json |
| 134 | + |
| 135 | +### HTTP response details |
| 136 | + |
| 137 | +| Status code | Description | Response headers | |
| 138 | +|-------------|-------------|------------------| |
| 139 | +**200** | OK | - | |
| 140 | +**404** | Not Found | - | |
| 141 | + |
| 142 | +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) |
| 143 | + |
| 144 | +# **neurostore_resources_neurostore_studyset_releases_search** |
| 145 | +> NeurostoreResourcesNeurostoreStudysetReleasesSearch200Response neurostore_resources_neurostore_studyset_releases_search() |
| 146 | +
|
| 147 | +GET NeuroStore studyset release list |
| 148 | + |
| 149 | +### Example |
| 150 | + |
| 151 | + |
| 152 | +```python |
| 153 | +import neurostore_sdk |
| 154 | +from neurostore_sdk.models.neurostore_resources_neurostore_studyset_releases_search200_response import NeurostoreResourcesNeurostoreStudysetReleasesSearch200Response |
| 155 | +from neurostore_sdk.rest import ApiException |
| 156 | +from pprint import pprint |
| 157 | + |
| 158 | +# Defining the host is optional and defaults to https://neurostore.org/api |
| 159 | +# See configuration.py for a list of all supported configuration parameters. |
| 160 | +configuration = neurostore_sdk.Configuration( |
| 161 | + host = "https://neurostore.org/api" |
| 162 | +) |
| 163 | + |
| 164 | + |
| 165 | +# Enter a context with an instance of the API client |
| 166 | +with neurostore_sdk.ApiClient(configuration) as api_client: |
| 167 | + # Create an instance of the API class |
| 168 | + api_instance = neurostore_sdk.NeurostoreStudysetReleasesApi(api_client) |
| 169 | + |
| 170 | + try: |
| 171 | + # GET NeuroStore studyset release list |
| 172 | + api_response = api_instance.neurostore_resources_neurostore_studyset_releases_search() |
| 173 | + print("The response of NeurostoreStudysetReleasesApi->neurostore_resources_neurostore_studyset_releases_search:\n") |
| 174 | + pprint(api_response) |
| 175 | + except Exception as e: |
| 176 | + print("Exception when calling NeurostoreStudysetReleasesApi->neurostore_resources_neurostore_studyset_releases_search: %s\n" % e) |
| 177 | +``` |
| 178 | + |
| 179 | + |
| 180 | + |
| 181 | +### Parameters |
| 182 | + |
| 183 | +This endpoint does not need any parameter. |
| 184 | + |
| 185 | +### Return type |
| 186 | + |
| 187 | +[**NeurostoreResourcesNeurostoreStudysetReleasesSearch200Response**](NeurostoreResourcesNeurostoreStudysetReleasesSearch200Response.md) |
| 188 | + |
| 189 | +### Authorization |
| 190 | + |
| 191 | +No authorization required |
| 192 | + |
| 193 | +### HTTP request headers |
| 194 | + |
| 195 | + - **Content-Type**: Not defined |
| 196 | + - **Accept**: application/json |
| 197 | + |
| 198 | +### HTTP response details |
| 199 | + |
| 200 | +| Status code | Description | Response headers | |
| 201 | +|-------------|-------------|------------------| |
| 202 | +**200** | OK | - | |
| 203 | + |
| 204 | +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) |
| 205 | + |
0 commit comments