├── .coveragerc ├── .eggs └── README.txt ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── AUTHORS.md ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── examples ├── todo.py ├── todo_simple.py └── xml_representation.py ├── makefile ├── sanic_restful ├── __init__.py ├── __version__.py ├── api.py ├── datastructures.py ├── exceptions.py ├── fields.py ├── marshal.py ├── output.py ├── reqparse.py ├── resource.py └── util.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── test_api.py ├── test_blueprint.py ├── test_decorator.py ├── test_marshal.py └── test_reqparse.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/.coveragerc -------------------------------------------------------------------------------- /.eggs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/.eggs/README.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/README.md -------------------------------------------------------------------------------- /examples/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/examples/todo.py -------------------------------------------------------------------------------- /examples/todo_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/examples/todo_simple.py -------------------------------------------------------------------------------- /examples/xml_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/examples/xml_representation.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- 1 | release: 2 | python setup.py sdist upload -------------------------------------------------------------------------------- /sanic_restful/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/__init__.py -------------------------------------------------------------------------------- /sanic_restful/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.1' 2 | -------------------------------------------------------------------------------- /sanic_restful/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/api.py -------------------------------------------------------------------------------- /sanic_restful/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/datastructures.py -------------------------------------------------------------------------------- /sanic_restful/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/exceptions.py -------------------------------------------------------------------------------- /sanic_restful/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/fields.py -------------------------------------------------------------------------------- /sanic_restful/marshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/marshal.py -------------------------------------------------------------------------------- /sanic_restful/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/output.py -------------------------------------------------------------------------------- /sanic_restful/reqparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/reqparse.py -------------------------------------------------------------------------------- /sanic_restful/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/resource.py -------------------------------------------------------------------------------- /sanic_restful/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/sanic_restful/util.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/tests/test_blueprint.py -------------------------------------------------------------------------------- /tests/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/tests/test_decorator.py -------------------------------------------------------------------------------- /tests/test_marshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/tests/test_marshal.py -------------------------------------------------------------------------------- /tests/test_reqparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/tests/test_reqparse.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCongV/sanic-restful/HEAD/tox.ini --------------------------------------------------------------------------------