Camel case support for Django REST framework - right now only JSON is supported.
This project is a "resurrection fork" of djangorestframework-camel-case_ by Vitaly Babiy
At the command line:
$ pip install django-rest-camel
Add the render and parser to your django settings file.
# ...
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': (
'rest_camel.render.CamelCaseJSONRenderer',
# Any other renders
),
'DEFAULT_PARSER_CLASSES': (
'rest_camel.parser.CamelCaseJSONParser',
# Any other parsers
),
}
# ...
To run the current test suite, execute the following from the root of he project:
$ tox
- Free software: BSD license