Answers for "site:django-rest-framework.org 'import status'"

0

import status in django rest framework

from rest_framework import status
from rest_framework.response import Response

def empty_view(self):
    content = {'please move along': 'nothing to see here'}
    return Response(content, status=status.HTTP_404_NOT_FOUND)
Posted by: Guest on May-13-2021

Code answers related to "site:django-rest-framework.org 'import status'"

Python Answers by Framework

Browse Popular Code Answers by Language