djangorestframework-rapidjson

Provides rapidjson support with parser and renderer


Keywords
djangorestframework, rest, json
License
MIT
Install
pip install djangorestframework-rapidjson==0.2.0

Documentation

djangorestframework-rapidjson

Provides rapidjson support with parser and renderer.

Latest Version Supported Python versions

How to install

pip install djangorestframework-rapidjson

How to use

Update django rest framework config

REST_FRAMEWORK = {
    'DEFAULT_RENDERER_CLASSES': (
        'rest_framework_rapidjson.renderers.RapidJSONRenderer',
    ),
    'DEFAULT_PARSER_CLASSES': (
        'rest_framework_rapidjson.parsers.RapidJSONParser',
    )
}