request-response.txt 45 KB

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