Answers for "django rest framework configuration"

0

django rest framework configuration

REST_FRAMEWORK = {
    'DEFAULT_RENDERER_CLASSES': [
        'rest_framework.renderers.JSONRenderer',
    ],
    'DEFAULT_PARSER_CLASSES': [
        'rest_framework.parsers.JSONParser',
    ]
}
Posted by: Guest on April-19-2022

Code answers related to "django rest framework configuration"

Python Answers by Framework

Browse Popular Code Answers by Language