djangoautoapi

Automatic REST API Creation


License
BSD-3-Clause
Install
pip install djangoautoapi==0.0.1

Documentation

AUTO Api

Automatic API REST creation

Installation

Install using pip...

pip install djangoautoapi

Please, note that you also need to have djangorestframework on your project.

Add 'autoapi' to your INSTALLED_APPS setting.

INSTALLED_APPS = (
    ...
    'autoapi',
)

Add a route to your auto-generated API.

urlpatterns = [
    ...
    path('api/', include('autoapi.urls')),
]