├── .gitignore ├── LICENSE.txt ├── README.md ├── logging.conf ├── requirements.txt ├── rest_api_demo ├── __init__.py ├── api │ ├── __init__.py │ ├── blog │ │ ├── __init__.py │ │ ├── business.py │ │ ├── endpoints │ │ │ ├── __init__.py │ │ │ ├── categories.py │ │ │ └── posts.py │ │ ├── parsers.py │ │ └── serializers.py │ └── restplus.py ├── app.py ├── database │ ├── __init__.py │ └── models.py ├── db.sqlite └── settings.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/README.md -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/logging.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /rest_api_demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_api_demo/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_api_demo/api/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_api_demo/api/blog/business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/api/blog/business.py -------------------------------------------------------------------------------- /rest_api_demo/api/blog/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_api_demo/api/blog/endpoints/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/api/blog/endpoints/categories.py -------------------------------------------------------------------------------- /rest_api_demo/api/blog/endpoints/posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/api/blog/endpoints/posts.py -------------------------------------------------------------------------------- /rest_api_demo/api/blog/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/api/blog/parsers.py -------------------------------------------------------------------------------- /rest_api_demo/api/blog/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/api/blog/serializers.py -------------------------------------------------------------------------------- /rest_api_demo/api/restplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/api/restplus.py -------------------------------------------------------------------------------- /rest_api_demo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/app.py -------------------------------------------------------------------------------- /rest_api_demo/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/database/__init__.py -------------------------------------------------------------------------------- /rest_api_demo/database/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/database/models.py -------------------------------------------------------------------------------- /rest_api_demo/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/db.sqlite -------------------------------------------------------------------------------- /rest_api_demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/rest_api_demo/settings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/rest_api_demo/HEAD/setup.py --------------------------------------------------------------------------------