├── .coveragerc ├── .gitignore ├── .gitmodules ├── .hound.yml ├── .travis.yml ├── CHANGES ├── LICENSE.AGPL ├── LICENSE.BSD ├── MANIFEST.in ├── README ├── README.md ├── artwork ├── flask-restless-small.svg └── flask-restless.svg ├── docs ├── Makefile ├── _static │ ├── flask-restless-small.png │ └── flask-restless.png ├── _templates │ ├── sidebarintro.html │ └── sidebarlogo.html ├── api.rst ├── basicusage.rst ├── changelog.rst ├── conf.py ├── creating.rst ├── customizing.rst ├── databasesetup.rst ├── deleting.rst ├── fetching.rst ├── filtering.rst ├── flaskstyle.sty ├── functionevaluation.rst ├── includes.rst ├── index.rst ├── installation.rst ├── license.rst ├── logo.png ├── make.bat ├── pagination.rst ├── processors.rst ├── quickstart.rst ├── requestformat.rst ├── serialization.rst ├── similarprojects.rst ├── sorting.rst ├── sparse.rst ├── updating.rst └── updatingrelationships.rst ├── examples ├── README ├── clients │ ├── curl.sh │ ├── jquery │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── templates │ │ │ └── index.html │ └── requests_client.py ├── quickstart.py └── server_configurations │ ├── authentication │ ├── __init__.py │ ├── __main__.py │ └── templates │ │ ├── index.html │ │ └── login.html │ ├── custom_serialization.py │ └── separate_endpoints.py ├── flask_restless ├── __init__.py ├── helpers.py ├── manager.py ├── search │ ├── __init__.py │ ├── drivers.py │ ├── filters.py │ └── operators.py ├── serialization │ ├── __init__.py │ ├── deserializers.py │ ├── exceptions.py │ └── serializers.py └── views │ ├── __init__.py │ ├── base.py │ ├── function.py │ ├── helpers.py │ ├── relationships.py │ └── resources.py ├── requirements ├── doc.txt ├── install.txt ├── packaging.txt ├── test-cpython.txt ├── test-pypy.txt └── test.txt ├── scripts ├── LICENSE ├── make-release.py └── set-version.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── helpers.py ├── test_associationproxy.py ├── test_creating.py ├── test_deleting.py ├── test_fetching.py ├── test_filtering.py ├── test_filtering_postgresql.py ├── test_functions.py ├── test_jsonapi ├── __init__.py ├── test_creating_resources.py ├── test_deleting_resources.py ├── test_document_structure.py ├── test_fetching_data.py ├── test_server_responsibilities.py ├── test_updating_relationships.py └── test_updating_resources.py ├── test_manager.py ├── test_metadata.py ├── test_polymorphism.py ├── test_serialization.py ├── test_server_responsibilities.py ├── test_updating.py ├── test_updatingrelationship.py └── test_validation.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | exclude_lines = 3 | raise NotImplementedError 4 | def __repr__ 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/.hound.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE.AGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/LICENSE.AGPL -------------------------------------------------------------------------------- /LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/LICENSE.BSD -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /artwork/flask-restless-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/artwork/flask-restless-small.svg -------------------------------------------------------------------------------- /artwork/flask-restless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/artwork/flask-restless.svg -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/flask-restless-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/_static/flask-restless-small.png -------------------------------------------------------------------------------- /docs/_static/flask-restless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/_static/flask-restless.png -------------------------------------------------------------------------------- /docs/_templates/sidebarintro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/_templates/sidebarintro.html -------------------------------------------------------------------------------- /docs/_templates/sidebarlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/_templates/sidebarlogo.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/basicusage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/basicusage.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/creating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/creating.rst -------------------------------------------------------------------------------- /docs/customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/customizing.rst -------------------------------------------------------------------------------- /docs/databasesetup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/databasesetup.rst -------------------------------------------------------------------------------- /docs/deleting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/deleting.rst -------------------------------------------------------------------------------- /docs/fetching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/fetching.rst -------------------------------------------------------------------------------- /docs/filtering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/filtering.rst -------------------------------------------------------------------------------- /docs/flaskstyle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/flaskstyle.sty -------------------------------------------------------------------------------- /docs/functionevaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/functionevaluation.rst -------------------------------------------------------------------------------- /docs/includes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/includes.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- 1 | _static/flask-restless.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pagination.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/pagination.rst -------------------------------------------------------------------------------- /docs/processors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/processors.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/requestformat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/requestformat.rst -------------------------------------------------------------------------------- /docs/serialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/serialization.rst -------------------------------------------------------------------------------- /docs/similarprojects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/similarprojects.rst -------------------------------------------------------------------------------- /docs/sorting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/sorting.rst -------------------------------------------------------------------------------- /docs/sparse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/sparse.rst -------------------------------------------------------------------------------- /docs/updating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/updating.rst -------------------------------------------------------------------------------- /docs/updatingrelationships.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/docs/updatingrelationships.rst -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/README -------------------------------------------------------------------------------- /examples/clients/curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/clients/curl.sh -------------------------------------------------------------------------------- /examples/clients/jquery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/clients/jquery/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/clients/jquery/__main__.py -------------------------------------------------------------------------------- /examples/clients/jquery/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/clients/jquery/templates/index.html -------------------------------------------------------------------------------- /examples/clients/requests_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/clients/requests_client.py -------------------------------------------------------------------------------- /examples/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/quickstart.py -------------------------------------------------------------------------------- /examples/server_configurations/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/server_configurations/authentication/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/server_configurations/authentication/__main__.py -------------------------------------------------------------------------------- /examples/server_configurations/authentication/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/server_configurations/authentication/templates/index.html -------------------------------------------------------------------------------- /examples/server_configurations/authentication/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/server_configurations/authentication/templates/login.html -------------------------------------------------------------------------------- /examples/server_configurations/custom_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/server_configurations/custom_serialization.py -------------------------------------------------------------------------------- /examples/server_configurations/separate_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/examples/server_configurations/separate_endpoints.py -------------------------------------------------------------------------------- /flask_restless/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/__init__.py -------------------------------------------------------------------------------- /flask_restless/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/helpers.py -------------------------------------------------------------------------------- /flask_restless/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/manager.py -------------------------------------------------------------------------------- /flask_restless/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/search/__init__.py -------------------------------------------------------------------------------- /flask_restless/search/drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/search/drivers.py -------------------------------------------------------------------------------- /flask_restless/search/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/search/filters.py -------------------------------------------------------------------------------- /flask_restless/search/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/search/operators.py -------------------------------------------------------------------------------- /flask_restless/serialization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/serialization/__init__.py -------------------------------------------------------------------------------- /flask_restless/serialization/deserializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/serialization/deserializers.py -------------------------------------------------------------------------------- /flask_restless/serialization/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/serialization/exceptions.py -------------------------------------------------------------------------------- /flask_restless/serialization/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/serialization/serializers.py -------------------------------------------------------------------------------- /flask_restless/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/views/__init__.py -------------------------------------------------------------------------------- /flask_restless/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/views/base.py -------------------------------------------------------------------------------- /flask_restless/views/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/views/function.py -------------------------------------------------------------------------------- /flask_restless/views/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/views/helpers.py -------------------------------------------------------------------------------- /flask_restless/views/relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/views/relationships.py -------------------------------------------------------------------------------- /flask_restless/views/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/flask_restless/views/resources.py -------------------------------------------------------------------------------- /requirements/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/requirements/doc.txt -------------------------------------------------------------------------------- /requirements/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/requirements/install.txt -------------------------------------------------------------------------------- /requirements/packaging.txt: -------------------------------------------------------------------------------- 1 | -r install.txt 2 | wheel 3 | twine 4 | -------------------------------------------------------------------------------- /requirements/test-cpython.txt: -------------------------------------------------------------------------------- 1 | -r test.txt 2 | psycopg2 3 | -------------------------------------------------------------------------------- /requirements/test-pypy.txt: -------------------------------------------------------------------------------- 1 | -r test.txt 2 | psycopg2cffi 3 | -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- 1 | -r install.txt 2 | unittest2 3 | -------------------------------------------------------------------------------- /scripts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/scripts/LICENSE -------------------------------------------------------------------------------- /scripts/make-release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/scripts/make-release.py -------------------------------------------------------------------------------- /scripts/set-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/scripts/set-version.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_associationproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_associationproxy.py -------------------------------------------------------------------------------- /tests/test_creating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_creating.py -------------------------------------------------------------------------------- /tests/test_deleting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_deleting.py -------------------------------------------------------------------------------- /tests/test_fetching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_fetching.py -------------------------------------------------------------------------------- /tests/test_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_filtering.py -------------------------------------------------------------------------------- /tests/test_filtering_postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_filtering_postgresql.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_functions.py -------------------------------------------------------------------------------- /tests/test_jsonapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_jsonapi/__init__.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_creating_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_jsonapi/test_creating_resources.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_deleting_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_jsonapi/test_deleting_resources.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_document_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_jsonapi/test_document_structure.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_fetching_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_jsonapi/test_fetching_data.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_server_responsibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_jsonapi/test_server_responsibilities.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_updating_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_jsonapi/test_updating_relationships.py -------------------------------------------------------------------------------- /tests/test_jsonapi/test_updating_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_jsonapi/test_updating_resources.py -------------------------------------------------------------------------------- /tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_manager.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_polymorphism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_polymorphism.py -------------------------------------------------------------------------------- /tests/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_serialization.py -------------------------------------------------------------------------------- /tests/test_server_responsibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_server_responsibilities.py -------------------------------------------------------------------------------- /tests/test_updating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_updating.py -------------------------------------------------------------------------------- /tests/test_updatingrelationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_updatingrelationship.py -------------------------------------------------------------------------------- /tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfinkels/flask-restless/HEAD/tests/test_validation.py --------------------------------------------------------------------------------