Search
 
SCRIPT & CODE EXAMPLE
 

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)
Comment

Status Codes python django rest framework

HTTP_200_OK
HTTP_201_CREATED
HTTP_202_ACCEPTED
HTTP_203_NON_AUTHORITATIVE_INFORMATION
HTTP_204_NO_CONTENT
HTTP_205_RESET_CONTENT
HTTP_206_PARTIAL_CONTENT
HTTP_207_MULTI_STATUS
HTTP_208_ALREADY_REPORTED
HTTP_226_IM_USED
HTTP_300_MULTIPLE_CHOICES
HTTP_301_MOVED_PERMANENTLY
HTTP_302_FOUND
HTTP_303_SEE_OTHER
HTTP_304_NOT_MODIFIED
HTTP_305_USE_PROXY
HTTP_306_RESERVED
HTTP_307_TEMPORARY_REDIRECT
HTTP_308_PERMANENT_REDIRECT
HTTP_400_BAD_REQUEST
HTTP_401_UNAUTHORIZED
HTTP_402_PAYMENT_REQUIRED
HTTP_403_FORBIDDEN
HTTP_404_NOT_FOUND
HTTP_405_METHOD_NOT_ALLOWED
HTTP_406_NOT_ACCEPTABLE
HTTP_407_PROXY_AUTHENTICATION_REQUIRED
HTTP_408_REQUEST_TIMEOUT
HTTP_409_CONFLICT
HTTP_410_GONE
HTTP_411_LENGTH_REQUIRED
HTTP_412_PRECONDITION_FAILED
HTTP_413_REQUEST_ENTITY_TOO_LARGE
HTTP_414_REQUEST_URI_TOO_LONG
HTTP_415_UNSUPPORTED_MEDIA_TYPE
HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE
HTTP_417_EXPECTATION_FAILED
HTTP_422_UNPROCESSABLE_ENTITY
HTTP_423_LOCKED
HTTP_424_FAILED_DEPENDENCY
HTTP_426_UPGRADE_REQUIRED
HTTP_428_PRECONDITION_REQUIRED
HTTP_429_TOO_MANY_REQUESTS
HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE
HTTP_451_UNAVAILABLE_FOR_LEGAL_REASONS
HTTP_500_INTERNAL_SERVER_ERROR
HTTP_501_NOT_IMPLEMENTED
HTTP_502_BAD_GATEWAY
HTTP_503_SERVICE_UNAVAILABLE
HTTP_504_GATEWAY_TIMEOUT
HTTP_505_HTTP_VERSION_NOT_SUPPORTED
HTTP_506_VARIANT_ALSO_NEGOTIATES
HTTP_507_INSUFFICIENT_STORAGE
HTTP_508_LOOP_DETECTED
HTTP_509_BANDWIDTH_LIMIT_EXCEEDED
HTTP_510_NOT_EXTENDED
HTTP_511_NETWORK_AUTHENTICATION_REQUIRED
Comment

PREVIOUS NEXT
Code Example
Python :: Convert a Video in python to individual Frames 
Python :: sklearn plot confusion matrix 
Python :: discord.py intents 
Python :: setwd python 
Python :: How to get random int between two numbers python 
Python :: wait until clickable selenium python 
Python :: pysimplegui double Slider 
Python :: python half of string 
Python :: django makemigrations comand 
Python :: cv2.imshow 
Python :: fill missing values with 0 pandas 
Python :: python barcode generator 
Python :: remove help command discord py 
Python :: how to get the current position of mouse on screen using python 
Python :: datetime not defined python 
Python :: Convert the sklearn.dataset cancer to a DataFrame. 
Python :: ignore warning sklearn 
Python :: python pandas drop column by index 
Python :: python get stock data 
Python :: python sendmessage whatsapp 
Python :: pandas left join 
Python :: seaborn pairplot label rotation 
Python :: pandas dataframe from dict 
Python :: between date pandas 
Python :: intersection of two lists python 
Python :: python get ros package path 
Python :: pandas standard deviation on column 
Python :: random forest python 
Python :: pandas has no attribute scatter_matrix 
Python :: python add titles to subplots 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =