Camel case JSON support for Django REST framework
Project description
Django REST Framework JSON CamelCase
Camel case JSON support for Django REST framework.
Compatible with:
- Python: 2.7, Python 3.5+
- Django: 1.11, 2.2, 3.0
- Django REST framework: 3.8?, 3.9, 3.10
Note: This is a replacement for djangorestframework-camel-case which seems currently unmaintained.
Installation
At the command line::
$ pip install djangorestframework-camel-case2
Add the render and parser to your django settings file.
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': (
'djangorestframework_camel_case2.render.CamelCaseJSONRenderer',
# Any other renders
),
'DEFAULT_PARSER_CLASSES': (
'djangorestframework_camel_case2.parser.CamelCaseJSONParser',
# Any other parsers
),
}
Swapping Renderer
By default the package uses rest_framework.renderers.JSONRenderer
. If you want
to use another renderer (the only possible alternative is
rest_framework.renderers.UnicodeJSONRenderer
, only available in DRF < 3.0), you must specify it in your django
settings file.
# ...
JSON_CAMEL_CASE = {
'RENDERER_CLASS': 'rest_framework.renderers.UnicodeJSONRenderer'
}
# ...
Underscoreize Options
As raised in https://github.com/krasa/StringManipulation/issues/8#issuecomment-121203018 there are two conventions of snake case.
# Case 1 (Package default)
v2Counter -> v_2_counter
fooBar2 -> foo_bar_2
# Case 2
v2Counter -> v2_counter
fooBar2 -> foo_bar2
By default, the package uses the first case. To use the second case, specify it in your django settings file.
REST_FRAMEWORK = {
# ...
'JSON_UNDERSCOREIZE': {
'no_underscore_before_number': True,
},
# ...
}
Alternatively, you can change this behavior on a class level by setting json_underscoreize
:
from djangorestframework_camel_case2.parser import CamelCaseJSONParser
from rest_framework.generics import CreateAPIView
class NoUnderscoreBeforeNumberCamelCaseJSONParser(CamelCaseJSONParser):
json_underscoreize = {'no_underscore_before_number': True}
class MyView(CreateAPIView):
queryset = MyModel.objects.all()
serializer_class = MySerializer
parser_classes = (NoUnderscoreBeforeNumberCamelCaseJSONParser,)
Running Tests
To run the current test suite, execute the following from the root of the project
poetry run pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for djangorestframework-camel-case2-0.2.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24a2e21864c140938363d432796e0b87704fd8e22117a11522b76dd8c4beab73 |
|
MD5 | d0359d0b8cf104ecf89cb68952d3a849 |
|
BLAKE2b-256 | 10bc940e6e335834fe8e07f9f12418f3215ca0774d20f6faa55dd30f022ce485 |
Hashes for djangorestframework_camel_case2-0.2.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 430e36301f10ea311122890a1e68fb1cc309f1fca5442e5534ea245f6b004d91 |
|
MD5 | e33979bff54f1f0689eb90619653eced |
|
BLAKE2b-256 | 095a0bc97ffa802f500a55230e1923e1656db8f91724018f9905dba5b9308944 |