Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

68e55934397a279d052a694f6dc0297f3cbb9664 #6

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
8 changes: 7 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,10 @@ pytest-3.8:
image: python:3.8-alpine
pytest-3.9:
extends: .pytest
image: python:3.9-alpine
image: python:3.9-alpine
pytest-3.10:
extends: .pytest
image: python:3.10-alpine
pytest-3.11:
extends: .pytest
image: python:3.11-alpine
117 changes: 97 additions & 20 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.github/workflows/python.yml
.gitignore
.gitlab-ci.yml
.openapi-generator-ignore
.travis.yml
README.md
docs/AnalysesApi.md
Expand Down Expand Up @@ -51,15 +52,12 @@ docs/ImageRelationships.md
docs/ImageRequest.md
docs/ImageReturn.md
docs/ImagesApi.md
docs/JsonLd.md
docs/JsonLdContext.md
docs/Metadata.md
docs/NestedPutAttributes.md
docs/NoteCollectionBase.md
docs/NoteCollectionList.md
docs/NoteCollectionRequest.md
docs/NoteCollectionReturn.md
docs/NoteCollectionReturnAllOf.md
docs/PointBase.md
docs/PointCommon.md
docs/PointList.md
Expand All @@ -69,21 +67,18 @@ docs/PointRequest.md
docs/PointReturn.md
docs/PointValue.md
docs/PointsApi.md
docs/ReadableResourceAttributes.md
docs/ResourceAttributes.md
docs/StoreApi.md
docs/StudiesApi.md
docs/StudyBase.md
docs/StudyCommon.md
docs/StudyList.md
docs/StudyRequest.md
docs/StudyRequestAllOf.md
docs/StudyRequestRelationships.md
docs/StudyRequestRelationshipsAnalyses.md
docs/StudyReturn.md
docs/StudyReturnAllOf.md
docs/StudyReturnAllOfStudysetsInner.md
docs/StudyReturnAllOfStudysetsInnerOneOf.md
docs/StudyReturnAllOfStudysets.md
docs/StudyReturnAllOfStudysetsOneOf.md
docs/StudyReturnRelationships.md
docs/StudyReturnRelationshipsAnalyses.md
docs/StudysetBase.md
Expand All @@ -99,9 +94,7 @@ docs/StudysetsIdPut422Response.md
docs/User.md
docs/UserApi.md
docs/UserList.md
docs/UserResourceAttributes.md
docs/UserlessResourceAttributes.md
docs/WriteableResourceAttributes.md
git_push.sh
neurostore_sdk/__init__.py
neurostore_sdk/api/__init__.py
Expand Down Expand Up @@ -163,15 +156,12 @@ neurostore_sdk/models/image_list.py
neurostore_sdk/models/image_relationships.py
neurostore_sdk/models/image_request.py
neurostore_sdk/models/image_return.py
neurostore_sdk/models/json_ld.py
neurostore_sdk/models/json_ld_context.py
neurostore_sdk/models/metadata.py
neurostore_sdk/models/nested_put_attributes.py
neurostore_sdk/models/note_collection_base.py
neurostore_sdk/models/note_collection_list.py
neurostore_sdk/models/note_collection_request.py
neurostore_sdk/models/note_collection_return.py
neurostore_sdk/models/note_collection_return_all_of.py
neurostore_sdk/models/point_base.py
neurostore_sdk/models/point_common.py
neurostore_sdk/models/point_list.py
Expand All @@ -180,19 +170,16 @@ neurostore_sdk/models/point_relationships_values.py
neurostore_sdk/models/point_request.py
neurostore_sdk/models/point_return.py
neurostore_sdk/models/point_value.py
neurostore_sdk/models/readable_resource_attributes.py
neurostore_sdk/models/resource_attributes.py
neurostore_sdk/models/study_base.py
neurostore_sdk/models/study_common.py
neurostore_sdk/models/study_list.py
neurostore_sdk/models/study_request.py
neurostore_sdk/models/study_request_all_of.py
neurostore_sdk/models/study_request_relationships.py
neurostore_sdk/models/study_request_relationships_analyses.py
neurostore_sdk/models/study_return.py
neurostore_sdk/models/study_return_all_of.py
neurostore_sdk/models/study_return_all_of_studysets_inner.py
neurostore_sdk/models/study_return_all_of_studysets_inner_one_of.py
neurostore_sdk/models/study_return_all_of_studysets.py
neurostore_sdk/models/study_return_all_of_studysets_one_of.py
neurostore_sdk/models/study_return_relationships.py
neurostore_sdk/models/study_return_relationships_analyses.py
neurostore_sdk/models/studyset_base.py
Expand All @@ -206,14 +193,104 @@ neurostore_sdk/models/studysets_id_get404_response.py
neurostore_sdk/models/studysets_id_put422_response.py
neurostore_sdk/models/user.py
neurostore_sdk/models/user_list.py
neurostore_sdk/models/user_resource_attributes.py
neurostore_sdk/models/userless_resource_attributes.py
neurostore_sdk/models/writeable_resource_attributes.py
neurostore_sdk/py.typed
neurostore_sdk/rest.py
pyproject.toml
requirements.txt
setup.cfg
setup.py
test-requirements.txt
test/__init__.py
test/test_analyses_api.py
test/test_analysis_base.py
test/test_analysis_common.py
test/test_analysis_list.py
test/test_analysis_request.py
test/test_analysis_request_relationships.py
test/test_analysis_request_relationships_conditions.py
test/test_analysis_request_relationships_images.py
test/test_analysis_request_relationships_points.py
test/test_analysis_return.py
test/test_analysis_return_relationships.py
test/test_analysis_return_relationships_conditions.py
test/test_analysis_return_relationships_images.py
test/test_analysis_return_relationships_points.py
test/test_annotation_base.py
test/test_annotation_common.py
test/test_annotation_export.py
test/test_annotation_list.py
test/test_annotation_request.py
test/test_annotation_request_one_of.py
test/test_annotation_request_relationships.py
test/test_annotation_request_relationships_notes.py
test/test_annotation_return.py
test/test_annotation_return_one_of.py
test/test_annotation_return_one_of1.py
test/test_annotation_return_relationships.py
test/test_annotation_return_relationships_notes.py
test/test_annotations_api.py
test/test_base_studies_post200_response.py
test/test_base_studies_post_request.py
test/test_base_study.py
test/test_base_study_list.py
test/test_base_study_return.py
test/test_base_study_versions.py
test/test_clone.py
test/test_condition_base.py
test/test_condition_list.py
test/test_condition_request.py
test/test_condition_return.py
test/test_conditions_api.py
test/test_entity.py
test/test_image_base.py
test/test_image_common.py
test/test_image_list.py
test/test_image_relationships.py
test/test_image_request.py
test/test_image_return.py
test/test_images_api.py
test/test_json_ld_context.py
test/test_nested_put_attributes.py
test/test_note_collection_base.py
test/test_note_collection_list.py
test/test_note_collection_request.py
test/test_note_collection_return.py
test/test_point_base.py
test/test_point_common.py
test/test_point_list.py
test/test_point_relationships.py
test/test_point_relationships_values.py
test/test_point_request.py
test/test_point_return.py
test/test_point_value.py
test/test_points_api.py
test/test_resource_attributes.py
test/test_store_api.py
test/test_studies_api.py
test/test_study_base.py
test/test_study_common.py
test/test_study_list.py
test/test_study_request.py
test/test_study_request_relationships.py
test/test_study_request_relationships_analyses.py
test/test_study_return.py
test/test_study_return_all_of_studysets.py
test/test_study_return_all_of_studysets_one_of.py
test/test_study_return_relationships.py
test/test_study_return_relationships_analyses.py
test/test_studyset_base.py
test/test_studyset_list.py
test/test_studyset_request.py
test/test_studyset_request_relationships.py
test/test_studyset_return.py
test/test_studyset_return_relationships.py
test/test_studyset_return_relationships_studies.py
test/test_studysets_api.py
test/test_studysets_id_get404_response.py
test/test_studysets_id_put422_response.py
test/test_user.py
test/test_user_api.py
test/test_user_list.py
test/test_userless_resource_attributes.py
tox.ini
2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.6.0
7.4.0
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ This Python package is automatically generated by the [OpenAPI Generator](https:

- API version: 1.0
- Package version: 0.0.1
- Build package: org.openapitools.codegen.languages.PythonNextgenClientCodegen
- Generator version: 7.4.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://github.com/jdkent](https://github.com/jdkent)

## Requirements.
Expand Down Expand Up @@ -51,7 +52,6 @@ Please follow the [installation procedure](#installation--usage) and then run th

```python

import time
import neurostore_sdk
from neurostore_sdk.rest import ApiException
from pprint import pprint
Expand Down Expand Up @@ -234,15 +234,12 @@ Class | Method | HTTP request | Description
- [ImageRelationships](docs/ImageRelationships.md)
- [ImageRequest](docs/ImageRequest.md)
- [ImageReturn](docs/ImageReturn.md)
- [JsonLd](docs/JsonLd.md)
- [JsonLdContext](docs/JsonLdContext.md)
- [Metadata](docs/Metadata.md)
- [NestedPutAttributes](docs/NestedPutAttributes.md)
- [NoteCollectionBase](docs/NoteCollectionBase.md)
- [NoteCollectionList](docs/NoteCollectionList.md)
- [NoteCollectionRequest](docs/NoteCollectionRequest.md)
- [NoteCollectionReturn](docs/NoteCollectionReturn.md)
- [NoteCollectionReturnAllOf](docs/NoteCollectionReturnAllOf.md)
- [PointBase](docs/PointBase.md)
- [PointCommon](docs/PointCommon.md)
- [PointList](docs/PointList.md)
Expand All @@ -251,19 +248,16 @@ Class | Method | HTTP request | Description
- [PointRequest](docs/PointRequest.md)
- [PointReturn](docs/PointReturn.md)
- [PointValue](docs/PointValue.md)
- [ReadableResourceAttributes](docs/ReadableResourceAttributes.md)
- [ResourceAttributes](docs/ResourceAttributes.md)
- [StudyBase](docs/StudyBase.md)
- [StudyCommon](docs/StudyCommon.md)
- [StudyList](docs/StudyList.md)
- [StudyRequest](docs/StudyRequest.md)
- [StudyRequestAllOf](docs/StudyRequestAllOf.md)
- [StudyRequestRelationships](docs/StudyRequestRelationships.md)
- [StudyRequestRelationshipsAnalyses](docs/StudyRequestRelationshipsAnalyses.md)
- [StudyReturn](docs/StudyReturn.md)
- [StudyReturnAllOf](docs/StudyReturnAllOf.md)
- [StudyReturnAllOfStudysetsInner](docs/StudyReturnAllOfStudysetsInner.md)
- [StudyReturnAllOfStudysetsInnerOneOf](docs/StudyReturnAllOfStudysetsInnerOneOf.md)
- [StudyReturnAllOfStudysets](docs/StudyReturnAllOfStudysets.md)
- [StudyReturnAllOfStudysetsOneOf](docs/StudyReturnAllOfStudysetsOneOf.md)
- [StudyReturnRelationships](docs/StudyReturnRelationships.md)
- [StudyReturnRelationshipsAnalyses](docs/StudyReturnRelationshipsAnalyses.md)
- [StudysetBase](docs/StudysetBase.md)
Expand All @@ -277,9 +271,7 @@ Class | Method | HTTP request | Description
- [StudysetsIdPut422Response](docs/StudysetsIdPut422Response.md)
- [User](docs/User.md)
- [UserList](docs/UserList.md)
- [UserResourceAttributes](docs/UserResourceAttributes.md)
- [UserlessResourceAttributes](docs/UserlessResourceAttributes.md)
- [WriteableResourceAttributes](docs/WriteableResourceAttributes.md)


<a id="documentation-for-authorization"></a>
Expand Down
Loading
Loading