GithubHelp home page GithubHelp logo

plessbd / djangorestframework-camel-case Goto Github PK

View Code? Open in Web Editor NEW

This project forked from vbabiy/djangorestframework-camel-case

0.0 0.0 0.0 106 KB

Camel case JSON support for Django REST framework.

License: Other

Python 95.14% Makefile 4.86%

djangorestframework-camel-case's Introduction

Django REST Framework JSON CamelCase

image

image

Camel case JSON support for Django REST framework.

Installation:w

At the command line:

$ pip install djangorestframework-camel-case

Add the render and parser to your django settings file.

# ...

REST_FRAMEWORK = {

'DEFAULT_RENDERER_CLASSES': (

'djangorestframework_camel_case.render.CamelCaseJSONRenderer',

'djangorestframework_camel_case.render.CamelCaseBrowsableAPIRenderer',

# Any other renders

),

'DEFAULT_PARSER_CLASSES': (

# If you use MultiPartFormParser or FormParser, we also have a camel case version

'djangorestframework_camel_case.parser.CamelCaseFormParser',

'djangorestframework_camel_case.parser.CamelCaseMultiPartParser',

'djangorestframework_camel_case.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

No Underscore Before Number

As raised in this comment 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_case.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,)

Ignore Fields

You can also specify fields which should not have their data changed. The specified field(s) would still have their name change, but there would be no recursion. For example:

data = {"my_key": {"do_not_change": 1}}

Would become:

{"myKey": {"doNotChange": 1}}

However, if you set in your settings:

REST_FRAMEWORK = {
    # ...
    "JSON_UNDERSCOREIZE": {
        # ...
        "ignore_fields": ("my_key",),
        # ...
    },
    # ...
}

The my_key field would not have its data changed:

{"myKey": {"do_not_change": 1}}

Ignore Keys

You can also specify keys which should not be renamed. The specified field(s) would still change (even recursively). For example:

data = {"unchanging_key": {"change_me": 1}}

Would become:

{"unchangingKey": {"changeMe": 1}}

However, if you set in your settings:

REST_FRAMEWORK = {
    # ...
    "JSON_UNDERSCOREIZE": {
        # ...
        "ignore_keys": ("unchanging_key",),
        # ...
    },
    # ...
}

The unchanging_key field would not be renamed:

{"unchanging_key": {"changeMe": 1}}

ignore_keys and ignore_fields can be applied to the same key if required.

Running Tests

To run the current test suite, execute the following from the root of he project:

$ python -m unittest discover

License

  • Free software: BSD license

djangorestframework-camel-case's People

Contributors

adam-rescale avatar akiyoko avatar alaminopu avatar blenq21 avatar dbrgn avatar dependabot[bot] avatar dgilge avatar dickenwong avatar gradam avatar insung151 avatar jacobg avatar jairhenrique avatar jakob-o avatar jerr0328 avatar jhominal avatar li-junyu avatar lk-geimfari avatar magul avatar ondrowan avatar romanosipenko avatar timeu avatar vbabiy avatar yatoff avatar ypcrumble avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.