HttpRequest.GET A dictionary-like object containing all given HTTP GET parameters. See the QueryDict documentation
HttpRequest.body The raw HTTP request body as a byte string. This is useful for processing data in different ways than conventional
HttpRequest.content_type New in Django 1.10. A
QueryDict.items() Just like the standard dictionary items() method, except this uses the same last-value logic
HttpResponse.write(content) [source] This method makes an HttpResponse instance
HttpRequest.content_params New in Django 1.10. A
HttpResponse.__delitem__(header) Deletes the header with the given name. Fails silently if the header doesn’t exist. Case-insensitive
HttpResponse.delete_cookie(key, path='/', domain=None) Deletes the cookie with the given key. Fails silently if the key doesn’t
StreamingHttpResponse.status_code The
HttpResponse.status_code The
Page 3 of 10