request-response.txt 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386
  1. ============================
  2. Request and response objects
  3. ============================
  4. .. module:: django.http
  5. :synopsis: Classes dealing with HTTP requests and responses.
  6. Quick overview
  7. ==============
  8. Django uses request and response objects to pass state through the system.
  9. When a page is requested, Django creates an :class:`HttpRequest` object that
  10. contains metadata about the request. Then Django loads the appropriate view,
  11. passing the :class:`HttpRequest` as the first argument to the view function.
  12. Each view is responsible for returning an :class:`HttpResponse` object.
  13. This document explains the APIs for :class:`HttpRequest` and
  14. :class:`HttpResponse` objects, which are defined in the :mod:`django.http`
  15. module.
  16. ``HttpRequest`` objects
  17. =======================
  18. .. class:: HttpRequest
  19. .. _httprequest-attributes:
  20. Attributes
  21. ----------
  22. All attributes should be considered read-only, unless stated otherwise.
  23. .. attribute:: HttpRequest.scheme
  24. A string representing the scheme of the request (``http`` or ``https``
  25. usually).
  26. .. attribute:: HttpRequest.body
  27. The raw HTTP request body as a bytestring. This is useful for processing
  28. data in different ways than conventional HTML forms: binary images,
  29. XML payload etc. For processing conventional form data, use
  30. :attr:`HttpRequest.POST`.
  31. You can also read from an ``HttpRequest`` using a file-like interface with
  32. :meth:`HttpRequest.read` or :meth:`HttpRequest.readline`. Accessing
  33. the ``body`` attribute *after* reading the request with either of these I/O
  34. stream methods will produce a ``RawPostDataException``.
  35. .. attribute:: HttpRequest.path
  36. A string representing the full path to the requested page, not including
  37. the scheme, domain, or query string.
  38. Example: ``"/music/bands/the_beatles/"``
  39. .. attribute:: HttpRequest.path_info
  40. Under some web server configurations, the portion of the URL after the
  41. host name is split up into a script prefix portion and a path info
  42. portion. The ``path_info`` attribute always contains the path info portion
  43. of the path, no matter what web server is being used. Using this instead
  44. of :attr:`~HttpRequest.path` can make your code easier to move between
  45. test and deployment servers.
  46. For example, if the ``WSGIScriptAlias`` for your application is set to
  47. ``"/minfo"``, then ``path`` might be ``"/minfo/music/bands/the_beatles/"``
  48. and ``path_info`` would be ``"/music/bands/the_beatles/"``.
  49. .. attribute:: HttpRequest.method
  50. A string representing the HTTP method used in the request. This is
  51. guaranteed to be uppercase. For example::
  52. if request.method == "GET":
  53. do_something()
  54. elif request.method == "POST":
  55. do_something_else()
  56. .. attribute:: HttpRequest.encoding
  57. A string representing the current encoding used to decode form submission
  58. data (or ``None``, which means the :setting:`DEFAULT_CHARSET` setting is
  59. used). You can write to this attribute to change the encoding used when
  60. accessing the form data. Any subsequent attribute accesses (such as reading
  61. from :attr:`GET` or :attr:`POST`) will use the new ``encoding`` value.
  62. Useful if you know the form data is not in the :setting:`DEFAULT_CHARSET`
  63. encoding.
  64. .. attribute:: HttpRequest.content_type
  65. A string representing the MIME type of the request, parsed from the
  66. ``CONTENT_TYPE`` header.
  67. .. attribute:: HttpRequest.content_params
  68. A dictionary of key/value parameters included in the ``CONTENT_TYPE``
  69. header.
  70. .. attribute:: HttpRequest.GET
  71. A dictionary-like object containing all given HTTP GET parameters. See the
  72. :class:`QueryDict` documentation below.
  73. .. attribute:: HttpRequest.POST
  74. A dictionary-like object containing all given HTTP POST parameters,
  75. providing that the request contains form data. See the
  76. :class:`QueryDict` documentation below. If you need to access raw or
  77. non-form data posted in the request, access this through the
  78. :attr:`HttpRequest.body` attribute instead.
  79. It's possible that a request can come in via POST with an empty ``POST``
  80. dictionary -- if, say, a form is requested via the POST HTTP method but
  81. does not include form data. Therefore, you shouldn't use ``if request.POST``
  82. to check for use of the POST method; instead, use ``if request.method ==
  83. "POST"`` (see :attr:`HttpRequest.method`).
  84. ``POST`` does *not* include file-upload information. See :attr:`FILES`.
  85. .. attribute:: HttpRequest.COOKIES
  86. A dictionary containing all cookies. Keys and values are strings.
  87. .. attribute:: HttpRequest.FILES
  88. A dictionary-like object containing all uploaded files. Each key in
  89. ``FILES`` is the ``name`` from the ``<input type="file" name="">``. Each
  90. value in ``FILES`` is an :class:`~django.core.files.uploadedfile.UploadedFile`.
  91. See :doc:`/topics/files` for more information.
  92. ``FILES`` will only contain data if the request method was POST and the
  93. ``<form>`` that posted to the request had ``enctype="multipart/form-data"``.
  94. Otherwise, ``FILES`` will be a blank dictionary-like object.
  95. .. attribute:: HttpRequest.META
  96. A dictionary containing all available HTTP headers. Available headers
  97. depend on the client and server, but here are some examples:
  98. * ``CONTENT_LENGTH`` -- The length of the request body (as a string).
  99. * ``CONTENT_TYPE`` -- The MIME type of the request body.
  100. * ``HTTP_ACCEPT`` -- Acceptable content types for the response.
  101. * ``HTTP_ACCEPT_ENCODING`` -- Acceptable encodings for the response.
  102. * ``HTTP_ACCEPT_LANGUAGE`` -- Acceptable languages for the response.
  103. * ``HTTP_HOST`` -- The HTTP Host header sent by the client.
  104. * ``HTTP_REFERER`` -- The referring page, if any.
  105. * ``HTTP_USER_AGENT`` -- The client's user-agent string.
  106. * ``QUERY_STRING`` -- The query string, as a single (unparsed) string.
  107. * ``REMOTE_ADDR`` -- The IP address of the client.
  108. * ``REMOTE_HOST`` -- The hostname of the client.
  109. * ``REMOTE_USER`` -- The user authenticated by the web server, if any.
  110. * ``REQUEST_METHOD`` -- A string such as ``"GET"`` or ``"POST"``.
  111. * ``SERVER_NAME`` -- The hostname of the server.
  112. * ``SERVER_PORT`` -- The port of the server (as a string).
  113. With the exception of ``CONTENT_LENGTH`` and ``CONTENT_TYPE``, as given
  114. above, any HTTP headers in the request are converted to ``META`` keys by
  115. converting all characters to uppercase, replacing any hyphens with
  116. underscores and adding an ``HTTP_`` prefix to the name. So, for example, a
  117. header called ``X-Bender`` would be mapped to the ``META`` key
  118. ``HTTP_X_BENDER``.
  119. Note that :djadmin:`runserver` strips all headers with underscores in the
  120. name, so you won't see them in ``META``. This prevents header-spoofing
  121. based on ambiguity between underscores and dashes both being normalizing to
  122. underscores in WSGI environment variables. It matches the behavior of
  123. web servers like Nginx and Apache 2.4+.
  124. :attr:`HttpRequest.headers` is a simpler way to access all HTTP-prefixed
  125. headers, plus ``CONTENT_LENGTH`` and ``CONTENT_TYPE``.
  126. .. attribute:: HttpRequest.headers
  127. A case insensitive, dict-like object that provides access to all
  128. HTTP-prefixed headers (plus ``Content-Length`` and ``Content-Type``) from
  129. the request.
  130. The name of each header is stylized with title-casing (e.g. ``User-Agent``)
  131. when it's displayed. You can access headers case-insensitively:
  132. .. code-block:: pycon
  133. >>> request.headers
  134. {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6', ...}
  135. >>> "User-Agent" in request.headers
  136. True
  137. >>> "user-agent" in request.headers
  138. True
  139. >>> request.headers["User-Agent"]
  140. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
  141. >>> request.headers["user-agent"]
  142. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
  143. >>> request.headers.get("User-Agent")
  144. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
  145. >>> request.headers.get("user-agent")
  146. Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
  147. For use in, for example, Django templates, headers can also be looked up
  148. using underscores in place of hyphens:
  149. .. code-block:: html+django
  150. {{ request.headers.user_agent }}
  151. .. attribute:: HttpRequest.resolver_match
  152. An instance of :class:`~django.urls.ResolverMatch` representing the
  153. resolved URL. This attribute is only set after URL resolving took place,
  154. which means it's available in all views but not in middleware which are
  155. executed before URL resolving takes place (you can use it in
  156. :meth:`process_view` though).
  157. Attributes set by application code
  158. ----------------------------------
  159. Django doesn't set these attributes itself but makes use of them if set by your
  160. application.
  161. .. attribute:: HttpRequest.current_app
  162. The :ttag:`url` template tag will use its value as the ``current_app``
  163. argument to :func:`~django.urls.reverse()`.
  164. .. attribute:: HttpRequest.urlconf
  165. This will be used as the root URLconf for the current request, overriding
  166. the :setting:`ROOT_URLCONF` setting. See
  167. :ref:`how-django-processes-a-request` for details.
  168. ``urlconf`` can be set to ``None`` to revert any changes made by previous
  169. middleware and return to using the :setting:`ROOT_URLCONF`.
  170. .. attribute:: HttpRequest.exception_reporter_filter
  171. This will be used instead of :setting:`DEFAULT_EXCEPTION_REPORTER_FILTER`
  172. for the current request. See :ref:`custom-error-reports` for details.
  173. .. attribute:: HttpRequest.exception_reporter_class
  174. This will be used instead of :setting:`DEFAULT_EXCEPTION_REPORTER` for the
  175. current request. See :ref:`custom-error-reports` for details.
  176. Attributes set by middleware
  177. ----------------------------
  178. Some of the middleware included in Django's contrib apps set attributes on the
  179. request. If you don't see the attribute on a request, be sure the appropriate
  180. middleware class is listed in :setting:`MIDDLEWARE`.
  181. .. attribute:: HttpRequest.session
  182. From the :class:`~django.contrib.sessions.middleware.SessionMiddleware`: A
  183. readable and writable, dictionary-like object that represents the current
  184. session.
  185. .. attribute:: HttpRequest.site
  186. From the :class:`~django.contrib.sites.middleware.CurrentSiteMiddleware`:
  187. An instance of :class:`~django.contrib.sites.models.Site` or
  188. :class:`~django.contrib.sites.requests.RequestSite` as returned by
  189. :func:`~django.contrib.sites.shortcuts.get_current_site()`
  190. representing the current site.
  191. .. attribute:: HttpRequest.user
  192. From the :class:`~django.contrib.auth.middleware.AuthenticationMiddleware`:
  193. An instance of :setting:`AUTH_USER_MODEL` representing the currently
  194. logged-in user. If the user isn't currently logged in, ``user`` will be set
  195. to an instance of :class:`~django.contrib.auth.models.AnonymousUser`. You
  196. can tell them apart with
  197. :attr:`~django.contrib.auth.models.User.is_authenticated`, like so::
  198. if request.user.is_authenticated:
  199. ... # Do something for logged-in users.
  200. else:
  201. ... # Do something for anonymous users.
  202. The :meth:`auser` method does the same thing but can be used from async
  203. contexts.
  204. Methods
  205. -------
  206. .. method:: HttpRequest.auser()
  207. .. versionadded:: 5.0
  208. From the :class:`~django.contrib.auth.middleware.AuthenticationMiddleware`:
  209. Coroutine. Returns an instance of :setting:`AUTH_USER_MODEL` representing
  210. the currently logged-in user. If the user isn't currently logged in,
  211. ``auser`` will return an instance of
  212. :class:`~django.contrib.auth.models.AnonymousUser`. This is similar to the
  213. :attr:`user` attribute but it works in async contexts.
  214. .. method:: HttpRequest.get_host()
  215. Returns the originating host of the request using information from the
  216. ``HTTP_X_FORWARDED_HOST`` (if :setting:`USE_X_FORWARDED_HOST` is enabled)
  217. and ``HTTP_HOST`` headers, in that order. If they don't provide a value,
  218. the method uses a combination of ``SERVER_NAME`` and ``SERVER_PORT`` as
  219. detailed in :pep:`3333`.
  220. Example: ``"127.0.0.1:8000"``
  221. Raises ``django.core.exceptions.DisallowedHost`` if the host is not in
  222. :setting:`ALLOWED_HOSTS` or the domain name is invalid according to
  223. :rfc:`1034`/:rfc:`1035 <1035>`.
  224. .. note:: The :meth:`~HttpRequest.get_host()` method fails when the host is
  225. behind multiple proxies. One solution is to use middleware to rewrite
  226. the proxy headers, as in the following example::
  227. class MultipleProxyMiddleware:
  228. FORWARDED_FOR_FIELDS = [
  229. "HTTP_X_FORWARDED_FOR",
  230. "HTTP_X_FORWARDED_HOST",
  231. "HTTP_X_FORWARDED_SERVER",
  232. ]
  233. def __init__(self, get_response):
  234. self.get_response = get_response
  235. def __call__(self, request):
  236. """
  237. Rewrites the proxy headers so that only the most
  238. recent proxy is used.
  239. """
  240. for field in self.FORWARDED_FOR_FIELDS:
  241. if field in request.META:
  242. if "," in request.META[field]:
  243. parts = request.META[field].split(",")
  244. request.META[field] = parts[-1].strip()
  245. return self.get_response(request)
  246. This middleware should be positioned before any other middleware that
  247. relies on the value of :meth:`~HttpRequest.get_host()` -- for instance,
  248. :class:`~django.middleware.common.CommonMiddleware` or
  249. :class:`~django.middleware.csrf.CsrfViewMiddleware`.
  250. .. method:: HttpRequest.get_port()
  251. Returns the originating port of the request using information from the
  252. ``HTTP_X_FORWARDED_PORT`` (if :setting:`USE_X_FORWARDED_PORT` is enabled)
  253. and ``SERVER_PORT`` ``META`` variables, in that order.
  254. .. method:: HttpRequest.get_full_path()
  255. Returns the ``path``, plus an appended query string, if applicable.
  256. Example: ``"/music/bands/the_beatles/?print=true"``
  257. .. method:: HttpRequest.get_full_path_info()
  258. Like :meth:`get_full_path`, but uses :attr:`path_info` instead of
  259. :attr:`path`.
  260. Example: ``"/minfo/music/bands/the_beatles/?print=true"``
  261. .. method:: HttpRequest.build_absolute_uri(location=None)
  262. Returns the absolute URI form of ``location``. If no location is provided,
  263. the location will be set to ``request.get_full_path()``.
  264. If the location is already an absolute URI, it will not be altered.
  265. Otherwise the absolute URI is built using the server variables available in
  266. this request. For example:
  267. .. code-block:: pycon
  268. >>> request.build_absolute_uri()
  269. 'https://example.com/music/bands/the_beatles/?print=true'
  270. >>> request.build_absolute_uri("/bands/")
  271. 'https://example.com/bands/'
  272. >>> request.build_absolute_uri("https://example2.com/bands/")
  273. 'https://example2.com/bands/'
  274. .. note::
  275. Mixing HTTP and HTTPS on the same site is discouraged, therefore
  276. :meth:`~HttpRequest.build_absolute_uri()` will always generate an
  277. absolute URI with the same scheme the current request has. If you need
  278. to redirect users to HTTPS, it's best to let your web server redirect
  279. all HTTP traffic to HTTPS.
  280. .. method:: HttpRequest.get_signed_cookie(key, default=RAISE_ERROR, salt='', max_age=None)
  281. Returns a cookie value for a signed cookie, or raises a
  282. ``django.core.signing.BadSignature`` exception if the signature is
  283. no longer valid. If you provide the ``default`` argument the exception
  284. will be suppressed and that default value will be returned instead.
  285. The optional ``salt`` argument can be used to provide extra protection
  286. against brute force attacks on your secret key. If supplied, the
  287. ``max_age`` argument will be checked against the signed timestamp
  288. attached to the cookie value to ensure the cookie is not older than
  289. ``max_age`` seconds.
  290. For example:
  291. .. code-block:: pycon
  292. >>> request.get_signed_cookie("name")
  293. 'Tony'
  294. >>> request.get_signed_cookie("name", salt="name-salt")
  295. 'Tony' # assuming cookie was set using the same salt
  296. >>> request.get_signed_cookie("nonexistent-cookie")
  297. KeyError: 'nonexistent-cookie'
  298. >>> request.get_signed_cookie("nonexistent-cookie", False)
  299. False
  300. >>> request.get_signed_cookie("cookie-that-was-tampered-with")
  301. BadSignature: ...
  302. >>> request.get_signed_cookie("name", max_age=60)
  303. SignatureExpired: Signature age 1677.3839159 > 60 seconds
  304. >>> request.get_signed_cookie("name", False, max_age=60)
  305. False
  306. See :doc:`cryptographic signing </topics/signing>` for more information.
  307. .. method:: HttpRequest.is_secure()
  308. Returns ``True`` if the request is secure; that is, if it was made with
  309. HTTPS.
  310. .. method:: HttpRequest.accepts(mime_type)
  311. Returns ``True`` if the request ``Accept`` header matches the ``mime_type``
  312. argument:
  313. .. code-block:: pycon
  314. >>> request.accepts("text/html")
  315. True
  316. Most browsers send ``Accept: */*`` by default, so this would return
  317. ``True`` for all content types. Setting an explicit ``Accept`` header in
  318. API requests can be useful for returning a different content type for those
  319. consumers only. See :ref:`content-negotiation-example` of using
  320. ``accepts()`` to return different content to API consumers.
  321. If a response varies depending on the content of the ``Accept`` header and
  322. you are using some form of caching like Django's :mod:`cache middleware
  323. <django.middleware.cache>`, you should decorate the view with
  324. :func:`vary_on_headers('Accept')
  325. <django.views.decorators.vary.vary_on_headers>` so that the responses are
  326. properly cached.
  327. .. method:: HttpRequest.read(size=None)
  328. .. method:: HttpRequest.readline()
  329. .. method:: HttpRequest.readlines()
  330. .. method:: HttpRequest.__iter__()
  331. Methods implementing a file-like interface for reading from an
  332. ``HttpRequest`` instance. This makes it possible to consume an incoming
  333. request in a streaming fashion. A common use-case would be to process a
  334. big XML payload with an iterative parser without constructing a whole
  335. XML tree in memory.
  336. Given this standard interface, an ``HttpRequest`` instance can be
  337. passed directly to an XML parser such as
  338. :class:`~xml.etree.ElementTree.ElementTree`::
  339. import xml.etree.ElementTree as ET
  340. for element in ET.iterparse(request):
  341. process(element)
  342. ``QueryDict`` objects
  343. =====================
  344. .. class:: QueryDict
  345. In an :class:`HttpRequest` object, the :attr:`~HttpRequest.GET` and
  346. :attr:`~HttpRequest.POST` attributes are instances of ``django.http.QueryDict``,
  347. a dictionary-like class customized to deal with multiple values for the same
  348. key. This is necessary because some HTML form elements, notably
  349. ``<select multiple>``, pass multiple values for the same key.
  350. The ``QueryDict``\ s at ``request.POST`` and ``request.GET`` will be immutable
  351. when accessed in a normal request/response cycle. To get a mutable version you
  352. need to use :meth:`QueryDict.copy`.
  353. Methods
  354. -------
  355. :class:`QueryDict` implements all the standard dictionary methods because it's
  356. a subclass of dictionary. Exceptions are outlined here:
  357. .. method:: QueryDict.__init__(query_string=None, mutable=False, encoding=None)
  358. Instantiates a ``QueryDict`` object based on ``query_string``.
  359. .. code-block:: pycon
  360. >>> QueryDict("a=1&a=2&c=3")
  361. <QueryDict: {'a': ['1', '2'], 'c': ['3']}>
  362. If ``query_string`` is not passed in, the resulting ``QueryDict`` will be
  363. empty (it will have no keys or values).
  364. Most ``QueryDict``\ s you encounter, and in particular those at
  365. ``request.POST`` and ``request.GET``, will be immutable. If you are
  366. instantiating one yourself, you can make it mutable by passing
  367. ``mutable=True`` to its ``__init__()``.
  368. Strings for setting both keys and values will be converted from ``encoding``
  369. to ``str``. If ``encoding`` is not set, it defaults to
  370. :setting:`DEFAULT_CHARSET`.
  371. .. classmethod:: QueryDict.fromkeys(iterable, value='', mutable=False, encoding=None)
  372. Creates a new ``QueryDict`` with keys from ``iterable`` and each value
  373. equal to ``value``. For example:
  374. .. code-block:: pycon
  375. >>> QueryDict.fromkeys(["a", "a", "b"], value="val")
  376. <QueryDict: {'a': ['val', 'val'], 'b': ['val']}>
  377. .. method:: QueryDict.__getitem__(key)
  378. Returns the value for the given key. If the key has more than one value,
  379. it returns the last value. Raises
  380. ``django.utils.datastructures.MultiValueDictKeyError`` if the key does not
  381. exist. (This is a subclass of Python's standard :exc:`KeyError`, so you can
  382. stick to catching ``KeyError``.)
  383. .. method:: QueryDict.__setitem__(key, value)
  384. Sets the given key to ``[value]`` (a list whose single element is
  385. ``value``). Note that this, as other dictionary functions that have side
  386. effects, can only be called on a mutable ``QueryDict`` (such as one that
  387. was created via :meth:`QueryDict.copy`).
  388. .. method:: QueryDict.__contains__(key)
  389. Returns ``True`` if the given key is set. This lets you do, e.g., ``if "foo"
  390. in request.GET``.
  391. .. method:: QueryDict.get(key, default=None)
  392. Uses the same logic as :meth:`__getitem__`, with a hook for returning a
  393. default value if the key doesn't exist.
  394. .. method:: QueryDict.setdefault(key, default=None)
  395. Like :meth:`dict.setdefault`, except it uses :meth:`__setitem__` internally.
  396. .. method:: QueryDict.update(other_dict)
  397. Takes either a ``QueryDict`` or a dictionary. Like :meth:`dict.update`,
  398. except it *appends* to the current dictionary items rather than replacing
  399. them. For example:
  400. .. code-block:: pycon
  401. >>> q = QueryDict("a=1", mutable=True)
  402. >>> q.update({"a": "2"})
  403. >>> q.getlist("a")
  404. ['1', '2']
  405. >>> q["a"] # returns the last
  406. '2'
  407. .. method:: QueryDict.items()
  408. Like :meth:`dict.items`, except this uses the same last-value logic as
  409. :meth:`__getitem__` and returns an iterator object instead of a view object.
  410. For example:
  411. .. code-block:: pycon
  412. >>> q = QueryDict("a=1&a=2&a=3")
  413. >>> list(q.items())
  414. [('a', '3')]
  415. .. method:: QueryDict.values()
  416. Like :meth:`dict.values`, except this uses the same last-value logic as
  417. :meth:`__getitem__` and returns an iterator instead of a view object. For
  418. example:
  419. .. code-block:: pycon
  420. >>> q = QueryDict("a=1&a=2&a=3")
  421. >>> list(q.values())
  422. ['3']
  423. In addition, ``QueryDict`` has the following methods:
  424. .. method:: QueryDict.copy()
  425. Returns a copy of the object using :func:`copy.deepcopy`. This copy will
  426. be mutable even if the original was not.
  427. .. method:: QueryDict.getlist(key, default=None)
  428. Returns a list of the data with the requested key. Returns an empty list if
  429. the key doesn't exist and ``default`` is ``None``. It's guaranteed to
  430. return a list unless the default value provided isn't a list.
  431. .. method:: QueryDict.setlist(key, list_)
  432. Sets the given key to ``list_`` (unlike :meth:`__setitem__`).
  433. .. method:: QueryDict.appendlist(key, item)
  434. Appends an item to the internal list associated with key.
  435. .. method:: QueryDict.setlistdefault(key, default_list=None)
  436. Like :meth:`setdefault`, except it takes a list of values instead of a
  437. single value.
  438. .. method:: QueryDict.lists()
  439. Like :meth:`items()`, except it includes all values, as a list, for each
  440. member of the dictionary. For example:
  441. .. code-block:: pycon
  442. >>> q = QueryDict("a=1&a=2&a=3")
  443. >>> q.lists()
  444. [('a', ['1', '2', '3'])]
  445. .. method:: QueryDict.pop(key)
  446. Returns a list of values for the given key and removes them from the
  447. dictionary. Raises ``KeyError`` if the key does not exist. For example:
  448. .. code-block:: pycon
  449. >>> q = QueryDict("a=1&a=2&a=3", mutable=True)
  450. >>> q.pop("a")
  451. ['1', '2', '3']
  452. .. method:: QueryDict.popitem()
  453. Removes an arbitrary member of the dictionary (since there's no concept
  454. of ordering), and returns a two value tuple containing the key and a list
  455. of all values for the key. Raises ``KeyError`` when called on an empty
  456. dictionary. For example:
  457. .. code-block:: pycon
  458. >>> q = QueryDict("a=1&a=2&a=3", mutable=True)
  459. >>> q.popitem()
  460. ('a', ['1', '2', '3'])
  461. .. method:: QueryDict.dict()
  462. Returns a ``dict`` representation of ``QueryDict``. For every (key, list)
  463. pair in ``QueryDict``, ``dict`` will have (key, item), where item is one
  464. element of the list, using the same logic as :meth:`QueryDict.__getitem__`:
  465. .. code-block:: pycon
  466. >>> q = QueryDict("a=1&a=3&a=5")
  467. >>> q.dict()
  468. {'a': '5'}
  469. .. method:: QueryDict.urlencode(safe=None)
  470. Returns a string of the data in query string format. For example:
  471. .. code-block:: pycon
  472. >>> q = QueryDict("a=2&b=3&b=5")
  473. >>> q.urlencode()
  474. 'a=2&b=3&b=5'
  475. Use the ``safe`` parameter to pass characters which don't require encoding.
  476. For example:
  477. .. code-block:: pycon
  478. >>> q = QueryDict(mutable=True)
  479. >>> q["next"] = "/a&b/"
  480. >>> q.urlencode(safe="/")
  481. 'next=/a%26b/'
  482. ``HttpResponse`` objects
  483. ========================
  484. .. class:: HttpResponse
  485. In contrast to :class:`HttpRequest` objects, which are created automatically by
  486. Django, :class:`HttpResponse` objects are your responsibility. Each view you
  487. write is responsible for instantiating, populating, and returning an
  488. :class:`HttpResponse`.
  489. The :class:`HttpResponse` class lives in the :mod:`django.http` module.
  490. Usage
  491. -----
  492. Passing strings
  493. ~~~~~~~~~~~~~~~
  494. Typical usage is to pass the contents of the page, as a string, bytestring,
  495. or :class:`memoryview`, to the :class:`HttpResponse` constructor:
  496. .. code-block:: pycon
  497. >>> from django.http import HttpResponse
  498. >>> response = HttpResponse("Here's the text of the web page.")
  499. >>> response = HttpResponse("Text only, please.", content_type="text/plain")
  500. >>> response = HttpResponse(b"Bytestrings are also accepted.")
  501. >>> response = HttpResponse(memoryview(b"Memoryview as well."))
  502. But if you want to add content incrementally, you can use ``response`` as a
  503. file-like object:
  504. .. code-block:: pycon
  505. >>> response = HttpResponse()
  506. >>> response.write("<p>Here's the text of the web page.</p>")
  507. >>> response.write("<p>Here's another paragraph.</p>")
  508. Passing iterators
  509. ~~~~~~~~~~~~~~~~~
  510. Finally, you can pass ``HttpResponse`` an iterator rather than strings.
  511. ``HttpResponse`` will consume the iterator immediately, store its content as a
  512. string, and discard it. Objects with a ``close()`` method such as files and
  513. generators are immediately closed.
  514. If you need the response to be streamed from the iterator to the client, you
  515. must use the :class:`StreamingHttpResponse` class instead.
  516. .. _setting-header-fields:
  517. Setting header fields
  518. ~~~~~~~~~~~~~~~~~~~~~
  519. To set or remove a header field in your response, use
  520. :attr:`HttpResponse.headers`:
  521. .. code-block:: pycon
  522. >>> response = HttpResponse()
  523. >>> response.headers["Age"] = 120
  524. >>> del response.headers["Age"]
  525. You can also manipulate headers by treating your response like a dictionary:
  526. .. code-block:: pycon
  527. >>> response = HttpResponse()
  528. >>> response["Age"] = 120
  529. >>> del response["Age"]
  530. This proxies to ``HttpResponse.headers``, and is the original interface offered
  531. by ``HttpResponse``.
  532. When using this interface, unlike a dictionary, ``del`` doesn't raise
  533. ``KeyError`` if the header field doesn't exist.
  534. You can also set headers on instantiation:
  535. .. code-block:: pycon
  536. >>> response = HttpResponse(headers={"Age": 120})
  537. For setting the ``Cache-Control`` and ``Vary`` header fields, it is recommended
  538. to use the :func:`~django.utils.cache.patch_cache_control` and
  539. :func:`~django.utils.cache.patch_vary_headers` methods from
  540. :mod:`django.utils.cache`, since these fields can have multiple, comma-separated
  541. values. The "patch" methods ensure that other values, e.g. added by a
  542. middleware, are not removed.
  543. HTTP header fields cannot contain newlines. An attempt to set a header field
  544. containing a newline character (CR or LF) will raise ``BadHeaderError``
  545. Telling the browser to treat the response as a file attachment
  546. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  547. To tell the browser to treat the response as a file attachment, set the
  548. ``Content-Type`` and ``Content-Disposition`` headers. For example, this is how
  549. you might return a Microsoft Excel spreadsheet:
  550. .. code-block:: pycon
  551. >>> response = HttpResponse(
  552. ... my_data,
  553. ... headers={
  554. ... "Content-Type": "application/vnd.ms-excel",
  555. ... "Content-Disposition": 'attachment; filename="foo.xls"',
  556. ... },
  557. ... )
  558. There's nothing Django-specific about the ``Content-Disposition`` header, but
  559. it's easy to forget the syntax, so we've included it here.
  560. Attributes
  561. ----------
  562. .. attribute:: HttpResponse.content
  563. A bytestring representing the content, encoded from a string if necessary.
  564. .. attribute:: HttpResponse.cookies
  565. A :py:obj:`http.cookies.SimpleCookie` object holding the cookies included
  566. in the response.
  567. .. attribute:: HttpResponse.headers
  568. A case insensitive, dict-like object that provides an interface to all
  569. HTTP headers on the response, except a ``Set-Cookie`` header. See
  570. :ref:`setting-header-fields` and :attr:`HttpResponse.cookies`.
  571. .. attribute:: HttpResponse.charset
  572. A string denoting the charset in which the response will be encoded. If not
  573. given at ``HttpResponse`` instantiation time, it will be extracted from
  574. ``content_type`` and if that is unsuccessful, the
  575. :setting:`DEFAULT_CHARSET` setting will be used.
  576. .. attribute:: HttpResponse.status_code
  577. The :rfc:`HTTP status code <9110#section-15>` for the response.
  578. Unless :attr:`reason_phrase` is explicitly set, modifying the value of
  579. ``status_code`` outside the constructor will also modify the value of
  580. ``reason_phrase``.
  581. .. attribute:: HttpResponse.reason_phrase
  582. The HTTP reason phrase for the response. It uses the :rfc:`HTTP standard's
  583. <9110#section-15.1>` default reason phrases.
  584. Unless explicitly set, ``reason_phrase`` is determined by the value of
  585. :attr:`status_code`.
  586. .. attribute:: HttpResponse.streaming
  587. This is always ``False``.
  588. This attribute exists so middleware can treat streaming responses
  589. differently from regular responses.
  590. .. attribute:: HttpResponse.closed
  591. ``True`` if the response has been closed.
  592. Methods
  593. -------
  594. .. method:: HttpResponse.__init__(content=b'', content_type=None, status=200, reason=None, charset=None, headers=None)
  595. Instantiates an ``HttpResponse`` object with the given page content,
  596. content type, and headers.
  597. ``content`` is most commonly an iterator, bytestring, :class:`memoryview`,
  598. or string. Other types will be converted to a bytestring by encoding their
  599. string representation. Iterators should return strings or bytestrings and
  600. those will be joined together to form the content of the response.
  601. ``content_type`` is the MIME type optionally completed by a character set
  602. encoding and is used to fill the HTTP ``Content-Type`` header. If not
  603. specified, it is formed by ``'text/html'`` and the
  604. :setting:`DEFAULT_CHARSET` settings, by default:
  605. ``"text/html; charset=utf-8"``.
  606. ``status`` is the :rfc:`HTTP status code <9110#section-15>` for the
  607. response. You can use Python's :py:class:`http.HTTPStatus` for meaningful
  608. aliases, such as ``HTTPStatus.NO_CONTENT``.
  609. ``reason`` is the HTTP response phrase. If not provided, a default phrase
  610. will be used.
  611. ``charset`` is the charset in which the response will be encoded. If not
  612. given it will be extracted from ``content_type``, and if that
  613. is unsuccessful, the :setting:`DEFAULT_CHARSET` setting will be used.
  614. ``headers`` is a :class:`dict` of HTTP headers for the response.
  615. .. method:: HttpResponse.__setitem__(header, value)
  616. Sets the given header name to the given value. Both ``header`` and
  617. ``value`` should be strings.
  618. .. method:: HttpResponse.__delitem__(header)
  619. Deletes the header with the given name. Fails silently if the header
  620. doesn't exist. Case-insensitive.
  621. .. method:: HttpResponse.__getitem__(header)
  622. Returns the value for the given header name. Case-insensitive.
  623. .. method:: HttpResponse.get(header, alternate=None)
  624. Returns the value for the given header, or an ``alternate`` if the header
  625. doesn't exist.
  626. .. method:: HttpResponse.has_header(header)
  627. Returns ``True`` or ``False`` based on a case-insensitive check for a
  628. header with the given name.
  629. .. method:: HttpResponse.items()
  630. Acts like :meth:`dict.items` for HTTP headers on the response.
  631. .. method:: HttpResponse.setdefault(header, value)
  632. Sets a header unless it has already been set.
  633. .. method:: HttpResponse.set_cookie(key, value='', max_age=None, expires=None, path='/', domain=None, secure=False, httponly=False, samesite=None)
  634. Sets a cookie. The parameters are the same as in the
  635. :class:`~http.cookies.Morsel` cookie object in the Python standard library.
  636. * ``max_age`` should be a :class:`~datetime.timedelta` object, an integer
  637. number of seconds, or ``None`` (default) if the cookie should last only
  638. as long as the client's browser session. If ``expires`` is not specified,
  639. it will be calculated.
  640. * ``expires`` should either be a string in the format
  641. ``"Wdy, DD-Mon-YY HH:MM:SS GMT"`` or a ``datetime.datetime`` object
  642. in UTC. If ``expires`` is a ``datetime`` object, the ``max_age``
  643. will be calculated.
  644. * Use ``domain`` if you want to set a cross-domain cookie. For example,
  645. ``domain="example.com"`` will set a cookie that is readable by the
  646. domains www.example.com, blog.example.com, etc. Otherwise, a cookie will
  647. only be readable by the domain that set it.
  648. * Use ``secure=True`` if you want the cookie to be only sent to the server
  649. when a request is made with the ``https`` scheme.
  650. * Use ``httponly=True`` if you want to prevent client-side
  651. JavaScript from having access to the cookie.
  652. HttpOnly_ is a flag included in a Set-Cookie HTTP response header. It's
  653. part of the :rfc:`RFC 6265 <6265#section-4.1.2.6>` standard for cookies
  654. and can be a useful way to mitigate the risk of a client-side script
  655. accessing the protected cookie data.
  656. * Use ``samesite='Strict'`` or ``samesite='Lax'`` to tell the browser not
  657. to send this cookie when performing a cross-origin request. `SameSite`_
  658. isn't supported by all browsers, so it's not a replacement for Django's
  659. CSRF protection, but rather a defense in depth measure.
  660. Use ``samesite='None'`` (string) to explicitly state that this cookie is
  661. sent with all same-site and cross-site requests.
  662. .. _HttpOnly: https://owasp.org/www-community/HttpOnly
  663. .. _SameSite: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
  664. .. warning::
  665. :rfc:`RFC 6265 <6265#section-6.1>` states that user agents should
  666. support cookies of at least 4096 bytes. For many browsers this is also
  667. the maximum size. Django will not raise an exception if there's an
  668. attempt to store a cookie of more than 4096 bytes, but many browsers
  669. will not set the cookie correctly.
  670. .. method:: HttpResponse.set_signed_cookie(key, value, salt='', max_age=None, expires=None, path='/', domain=None, secure=False, httponly=False, samesite=None)
  671. Like :meth:`~HttpResponse.set_cookie()`, but
  672. :doc:`cryptographic signing </topics/signing>` the cookie before setting
  673. it. Use in conjunction with :meth:`HttpRequest.get_signed_cookie`.
  674. You can use the optional ``salt`` argument for added key strength, but
  675. you will need to remember to pass it to the corresponding
  676. :meth:`HttpRequest.get_signed_cookie` call.
  677. .. method:: HttpResponse.delete_cookie(key, path='/', domain=None, samesite=None)
  678. Deletes the cookie with the given key. Fails silently if the key doesn't
  679. exist.
  680. Due to the way cookies work, ``path`` and ``domain`` should be the same
  681. values you used in ``set_cookie()`` -- otherwise the cookie may not be
  682. deleted.
  683. .. method:: HttpResponse.close()
  684. This method is called at the end of the request directly by the WSGI
  685. server.
  686. .. method:: HttpResponse.write(content)
  687. This method makes an :class:`HttpResponse` instance a file-like object.
  688. .. method:: HttpResponse.flush()
  689. This method makes an :class:`HttpResponse` instance a file-like object.
  690. .. method:: HttpResponse.tell()
  691. This method makes an :class:`HttpResponse` instance a file-like object.
  692. .. method:: HttpResponse.getvalue()
  693. Returns the value of :attr:`HttpResponse.content`. This method makes
  694. an :class:`HttpResponse` instance a stream-like object.
  695. .. method:: HttpResponse.readable()
  696. Always ``False``. This method makes an :class:`HttpResponse` instance a
  697. stream-like object.
  698. .. method:: HttpResponse.seekable()
  699. Always ``False``. This method makes an :class:`HttpResponse` instance a
  700. stream-like object.
  701. .. method:: HttpResponse.writable()
  702. Always ``True``. This method makes an :class:`HttpResponse` instance a
  703. stream-like object.
  704. .. method:: HttpResponse.writelines(lines)
  705. Writes a list of lines to the response. Line separators are not added. This
  706. method makes an :class:`HttpResponse` instance a stream-like object.
  707. .. _ref-httpresponse-subclasses:
  708. ``HttpResponse`` subclasses
  709. ---------------------------
  710. Django includes a number of ``HttpResponse`` subclasses that handle different
  711. types of HTTP responses. Like ``HttpResponse``, these subclasses live in
  712. :mod:`django.http`.
  713. .. class:: HttpResponseRedirect
  714. The first argument to the constructor is required -- the path to redirect
  715. to. This can be a fully qualified URL
  716. (e.g. ``'https://www.yahoo.com/search/'``), an absolute path with no domain
  717. (e.g. ``'/search/'``), or even a relative path (e.g. ``'search/'``). In that
  718. last case, the client browser will reconstruct the full URL itself
  719. according to the current path. See :class:`HttpResponse` for other optional
  720. constructor arguments. Note that this returns an HTTP status code 302.
  721. .. attribute:: HttpResponseRedirect.url
  722. This read-only attribute represents the URL the response will redirect
  723. to (equivalent to the ``Location`` response header).
  724. .. class:: HttpResponsePermanentRedirect
  725. Like :class:`HttpResponseRedirect`, but it returns a permanent redirect
  726. (HTTP status code 301) instead of a "found" redirect (status code 302).
  727. .. class:: HttpResponseNotModified
  728. The constructor doesn't take any arguments and no content should be added
  729. to this response. Use this to designate that a page hasn't been modified
  730. since the user's last request (status code 304).
  731. .. class:: HttpResponseBadRequest
  732. Acts just like :class:`HttpResponse` but uses a 400 status code.
  733. .. class:: HttpResponseNotFound
  734. Acts just like :class:`HttpResponse` but uses a 404 status code.
  735. .. class:: HttpResponseForbidden
  736. Acts just like :class:`HttpResponse` but uses a 403 status code.
  737. .. class:: HttpResponseNotAllowed
  738. Like :class:`HttpResponse`, but uses a 405 status code. The first argument
  739. to the constructor is required: a list of permitted methods (e.g.
  740. ``['GET', 'POST']``).
  741. .. class:: HttpResponseGone
  742. Acts just like :class:`HttpResponse` but uses a 410 status code.
  743. .. class:: HttpResponseServerError
  744. Acts just like :class:`HttpResponse` but uses a 500 status code.
  745. .. note::
  746. If a custom subclass of :class:`HttpResponse` implements a ``render``
  747. method, Django will treat it as emulating a
  748. :class:`~django.template.response.SimpleTemplateResponse`, and the
  749. ``render`` method must itself return a valid response object.
  750. Custom response classes
  751. ~~~~~~~~~~~~~~~~~~~~~~~
  752. If you find yourself needing a response class that Django doesn't provide, you
  753. can create it with the help of :py:class:`http.HTTPStatus`. For example::
  754. from http import HTTPStatus
  755. from django.http import HttpResponse
  756. class HttpResponseNoContent(HttpResponse):
  757. status_code = HTTPStatus.NO_CONTENT
  758. ``JsonResponse`` objects
  759. ========================
  760. .. class:: JsonResponse(data, encoder=DjangoJSONEncoder, safe=True, json_dumps_params=None, **kwargs)
  761. An :class:`HttpResponse` subclass that helps to create a JSON-encoded
  762. response. It inherits most behavior from its superclass with a couple
  763. differences:
  764. Its default ``Content-Type`` header is set to :mimetype:`application/json`.
  765. The first parameter, ``data``, should be a ``dict`` instance. If the
  766. ``safe`` parameter is set to ``False`` (see below) it can be any
  767. JSON-serializable object.
  768. The ``encoder``, which defaults to
  769. :class:`django.core.serializers.json.DjangoJSONEncoder`, will be used to
  770. serialize the data. See :ref:`JSON serialization
  771. <serialization-formats-json>` for more details about this serializer.
  772. The ``safe`` boolean parameter defaults to ``True``. If it's set to
  773. ``False``, any object can be passed for serialization (otherwise only
  774. ``dict`` instances are allowed). If ``safe`` is ``True`` and a non-``dict``
  775. object is passed as the first argument, a :exc:`TypeError` will be raised.
  776. The ``json_dumps_params`` parameter is a dictionary of keyword arguments
  777. to pass to the ``json.dumps()`` call used to generate the response.
  778. Usage
  779. -----
  780. Typical usage could look like:
  781. .. code-block:: pycon
  782. >>> from django.http import JsonResponse
  783. >>> response = JsonResponse({"foo": "bar"})
  784. >>> response.content
  785. b'{"foo": "bar"}'
  786. Serializing non-dictionary objects
  787. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  788. In order to serialize objects other than ``dict`` you must set the ``safe``
  789. parameter to ``False``:
  790. .. code-block:: pycon
  791. >>> response = JsonResponse([1, 2, 3], safe=False)
  792. Without passing ``safe=False``, a :exc:`TypeError` will be raised.
  793. Note that an API based on ``dict`` objects is more extensible, flexible, and
  794. makes it easier to maintain forwards compatibility. Therefore, you should avoid
  795. using non-dict objects in JSON-encoded response.
  796. .. warning::
  797. Before the `5th edition of ECMAScript
  798. <https://262.ecma-international.org/5.1/#sec-11.1.4>`_ it was possible to
  799. poison the JavaScript ``Array`` constructor. For this reason, Django does
  800. not allow passing non-dict objects to the
  801. :class:`~django.http.JsonResponse` constructor by default. However, most
  802. modern browsers implement ECMAScript 5 which removes this attack vector.
  803. Therefore it is possible to disable this security precaution.
  804. Changing the default JSON encoder
  805. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  806. If you need to use a different JSON encoder class you can pass the ``encoder``
  807. parameter to the constructor method:
  808. .. code-block:: pycon
  809. >>> response = JsonResponse(data, encoder=MyJSONEncoder)
  810. .. _httpresponse-streaming:
  811. ``StreamingHttpResponse`` objects
  812. =================================
  813. .. class:: StreamingHttpResponse
  814. The :class:`StreamingHttpResponse` class is used to stream a response from
  815. Django to the browser.
  816. .. admonition:: Advanced usage
  817. :class:`StreamingHttpResponse` is somewhat advanced, in that it is
  818. important to know whether you'll be serving your application synchronously
  819. under WSGI or asynchronously under ASGI, and adjust your usage
  820. appropriately.
  821. Please read these notes with care.
  822. An example usage of :class:`StreamingHttpResponse` under WSGI is streaming
  823. content when generating the response would take too long or uses too much
  824. memory. For instance, it's useful for :ref:`generating large CSV files
  825. <streaming-csv-files>`.
  826. There are performance considerations when doing this, though. Django, under
  827. WSGI, is designed for short-lived requests. Streaming responses will tie a
  828. worker process for the entire duration of the response. This may result in poor
  829. performance.
  830. Generally speaking, you would perform expensive tasks outside of the
  831. request-response cycle, rather than resorting to a streamed response.
  832. When serving under ASGI, however, a :class:`StreamingHttpResponse` need not
  833. stop other requests from being served whilst waiting for I/O. This opens up
  834. the possibility of long-lived requests for streaming content and implementing
  835. patterns such as long-polling, and server-sent events.
  836. Even under ASGI note, :class:`StreamingHttpResponse` should only be used in
  837. situations where it is absolutely required that the whole content isn't
  838. iterated before transferring the data to the client. Because the content can't
  839. be accessed, many middleware can't function normally. For example the ``ETag``
  840. and ``Content-Length`` headers can't be generated for streaming responses.
  841. The :class:`StreamingHttpResponse` is not a subclass of :class:`HttpResponse`,
  842. because it features a slightly different API. However, it is almost identical,
  843. with the following notable differences:
  844. * It should be given an iterator that yields bytestrings, :class:`memoryview`,
  845. or strings as content. When serving under WSGI, this should be a sync
  846. iterator. When serving under ASGI, then it should be an async iterator.
  847. * You cannot access its content, except by iterating the response object
  848. itself. This should only occur when the response is returned to the client:
  849. you should not iterate the response yourself.
  850. Under WSGI the response will be iterated synchronously. Under ASGI the
  851. response will be iterated asynchronously. (This is why the iterator type must
  852. match the protocol you're using.)
  853. To avoid a crash, an incorrect iterator type will be mapped to the correct
  854. type during iteration, and a warning will be raised, but in order to do this
  855. the iterator must be fully-consumed, which defeats the purpose of using a
  856. :class:`StreamingHttpResponse` at all.
  857. * It has no ``content`` attribute. Instead, it has a
  858. :attr:`~StreamingHttpResponse.streaming_content` attribute. This can be used
  859. in middleware to wrap the response iterable, but should not be consumed.
  860. * You cannot use the file-like object ``tell()`` or ``write()`` methods.
  861. Doing so will raise an exception.
  862. The :class:`HttpResponseBase` base class is common between
  863. :class:`HttpResponse` and :class:`StreamingHttpResponse`.
  864. .. versionchanged:: 4.2
  865. Support for asynchronous iteration was added.
  866. Attributes
  867. ----------
  868. .. attribute:: StreamingHttpResponse.streaming_content
  869. An iterator of the response content, bytestring encoded according to
  870. :attr:`HttpResponse.charset`.
  871. .. attribute:: StreamingHttpResponse.status_code
  872. The :rfc:`HTTP status code <9110#section-15>` for the response.
  873. Unless :attr:`reason_phrase` is explicitly set, modifying the value of
  874. ``status_code`` outside the constructor will also modify the value of
  875. ``reason_phrase``.
  876. .. attribute:: StreamingHttpResponse.reason_phrase
  877. The HTTP reason phrase for the response. It uses the :rfc:`HTTP standard's
  878. <9110#section-15.1>` default reason phrases.
  879. Unless explicitly set, ``reason_phrase`` is determined by the value of
  880. :attr:`status_code`.
  881. .. attribute:: StreamingHttpResponse.streaming
  882. This is always ``True``.
  883. .. attribute:: StreamingHttpResponse.is_async
  884. .. versionadded:: 4.2
  885. Boolean indicating whether :attr:`StreamingHttpResponse.streaming_content`
  886. is an asynchronous iterator or not.
  887. This is useful for middleware needing to wrap
  888. :attr:`StreamingHttpResponse.streaming_content`.
  889. .. _request-response-streaming-disconnect:
  890. Handling disconnects
  891. --------------------
  892. .. versionadded:: 5.0
  893. If the client disconnects during a streaming response, Django will cancel the
  894. coroutine that is handling the response. If you want to clean up resources
  895. manually, you can do so by catching the ``asyncio.CancelledError``::
  896. async def streaming_response():
  897. try:
  898. # Do some work here
  899. async for chunk in my_streaming_iterator():
  900. yield chunk
  901. except asyncio.CancelledError:
  902. # Handle disconnect
  903. ...
  904. raise
  905. async def my_streaming_view(request):
  906. return StreamingHttpResponse(streaming_response())
  907. This example only shows how to handle client disconnection while the response
  908. is streaming. If you perform long-running operations in your view before
  909. returning the ``StreamingHttpResponse`` object, then you may also want to
  910. :ref:`handle disconnections in the view <async-handling-disconnect>` itself.
  911. ``FileResponse`` objects
  912. ========================
  913. .. class:: FileResponse(open_file, as_attachment=False, filename='', **kwargs)
  914. :class:`FileResponse` is a subclass of :class:`StreamingHttpResponse`
  915. optimized for binary files. It uses :pep:`wsgi.file_wrapper
  916. <3333#optional-platform-specific-file-handling>` if provided by the wsgi
  917. server, otherwise it streams the file out in small chunks.
  918. If ``as_attachment=True``, the ``Content-Disposition`` header is set to
  919. ``attachment``, which asks the browser to offer the file to the user as a
  920. download. Otherwise, a ``Content-Disposition`` header with a value of
  921. ``inline`` (the browser default) will be set only if a filename is
  922. available.
  923. If ``open_file`` doesn't have a name or if the name of ``open_file`` isn't
  924. appropriate, provide a custom file name using the ``filename`` parameter.
  925. Note that if you pass a file-like object like ``io.BytesIO``, it's your
  926. task to ``seek()`` it before passing it to ``FileResponse``.
  927. The ``Content-Length`` header is automatically set when it can be guessed
  928. from the content of ``open_file``.
  929. The ``Content-Type`` header is automatically set when it can be guessed
  930. from the ``filename``, or the name of ``open_file``.
  931. ``FileResponse`` accepts any file-like object with binary content, for example
  932. a file open in binary mode like so:
  933. .. code-block:: pycon
  934. >>> from django.http import FileResponse
  935. >>> response = FileResponse(open("myfile.png", "rb"))
  936. The file will be closed automatically, so don't open it with a context manager.
  937. .. admonition:: Use under ASGI
  938. Python's file API is synchronous. This means that the file must be fully
  939. consumed in order to be served under ASGI.
  940. In order to stream a file asynchronously you need to use a third-party
  941. package that provides an asynchronous file API, such as `aiofiles
  942. <https://github.com/Tinche/aiofiles>`_.
  943. Methods
  944. -------
  945. .. method:: FileResponse.set_headers(open_file)
  946. This method is automatically called during the response initialization and
  947. set various headers (``Content-Length``, ``Content-Type``, and
  948. ``Content-Disposition``) depending on ``open_file``.
  949. ``HttpResponseBase`` class
  950. ==========================
  951. .. class:: HttpResponseBase
  952. The :class:`HttpResponseBase` class is common to all Django responses.
  953. It should not be used to create responses directly, but it can be
  954. useful for type-checking.