Angular Schema Form add-on for Django Rest Framework.
Setup:
$ virtualenv-3.5 . $ source bin/activate $ pip install -r requirements/dev.txt
Run Tests:
$ tox
Install:
$ pip install --pre djangorestframework-schemaform
Install app in Django and add content negotiation class to settings.py:
INSTALLED_APPS = ( ... 'rest_framework', 'rest_framework_schemaform', ) REST_FRAMEWORK = { ... 'DEFAULT_CONTENT_NEGOTIATION_CLASS': 'rest_framework_schemaform.negotiation.JSONSchemaContentNegotiation', 'DEFAULT_RENDERER_CLASSES': ( ... 'rest_framework_jsonschema.renderers.JSONSchemaRenderer', ), }