request-response.txt 45 KB

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