Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by www.django-rest-framework.org #
 
PREVIOUS NEXT
Tagged: #import #status #django #rest #framework
ADD COMMENT
Topic
Name
9+5 =