I'm using Django with rest_framework and in my views I'm using the rest_framework.viewsets, I stopped rest_framework to show it's fancy interface using:
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': ('rest_framework.renderers.JSONRenderer'),
}
But now Django is rendering the JSON response
I want it always to return Raw Data
How can I do that?