QueryDict.__contains__(key) Returns True if the given key is set. This lets you do, e.g., if "foo" in request
QueryDict.lists() Like items(), except it includes all values, as a list, for each member of the dictionary. For
HttpResponse.set_cookie(key, value='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=False) Sets
HttpRequest.get_full_path() [source] Returns the path, plus an appended query
QueryDict.iteritems() Just like the standard dictionary iteritems() method. Like QueryDict.items()
class JsonResponse(data, encoder=DjangoJSONEncoder, safe=True, json_dumps_params=None, **kwargs) [source]
QueryDict.setdefault(key, default=None) [source] Just like the standard dictionary
HttpResponse.has_header(header) Returns True or False based on a case-insensitive check for a header
HttpRequest.encoding A string representing the current encoding used to decode form submission data (or None, which
HttpResponse.streaming This is always False. This attribute exists so middleware
Page 6 of 10