request-response.txt 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220
  1. ============================
  2. Request and response objects
  3. ============================
  4. .. module:: django.http
  5. :synopsis: Classes dealing with HTTP requests and responses.
  6. Quick overview
  7. ==============
  8. Django uses request and response objects to pass state through the system.
  9. When a page is requested, Django creates an :class:`HttpRequest` object that
  10. contains metadata about the request. Then Django loads the appropriate view,
  11. passing the :class:`HttpRequest` as the first argument to the view function.
  12. Each view is responsible for returning an :class:`HttpResponse` object.
  13. This document explains the APIs for :class:`HttpRequest` and
  14. :class:`HttpResponse` objects, which are defined in the :mod:`django.http`
  15. module.
  16. ``HttpRequest`` objects
  17. =======================
  18. .. class:: HttpRequest
  19. .. _httprequest-attributes:
  20. Attributes
  21. ----------
  22. All attributes should be considered read-only, unless stated otherwise.
  23. .. attribute:: HttpRequest.scheme
  24. A string representing the scheme of the request (``http`` or ``https``
  25. usually).
  26. .. attribute:: HttpRequest.body
  27. The raw HTTP request body as a bytestring. This is useful for processing
  28. data in different ways than conventional HTML forms: binary images,
  29. XML payload etc. For processing conventional form data, use
  30. :attr:`HttpRequest.POST`.
  31. You can also read from an ``HttpRequest`` using a file-like interface with
  32. :meth:`HttpRequest.read` or :meth:`HttpRequest.readline`. Accessing
  33. the ``body`` attribute *after* reading the request with either of these I/O
  34. stream methods will produce a ``RawPostDataException``.
  35. .. attribute:: HttpRequest.path
  36. A string representing the full path to the requested page, not including
  37. the scheme, domain, or query string.
  38. Example: ``"/music/bands/the_beatles/"``
  39. .. attribute:: HttpRequest.path_info
  40. Under some web server configurations, the portion of the URL after the
  41. host name is split up into a script prefix portion and a path info
  42. portion. The ``path_info`` attribute always contains the path info portion
  43. of the path, no matter what web server is being used. Using this instead
  44. of :attr:`~HttpRequest.path` can make your code easier to move between
  45. test and deployment servers.
  46. For example, if the ``WSGIScriptAlias`` for your application is set to
  47. ``"/minfo"``, then ``path`` might be ``"/minfo/music/bands/the_beatles/"``
  48. and ``path_info`` would be ``"/music/bands/the_beatles/"``.
  49. .. attribute:: HttpRequest.method
  50. A string representing the HTTP method used in the request. This is
  51. guaranteed to be uppercase. For example::
  52. if request.method == 'GET':
  53. do_something()
  54. elif request.method == 'POST':
  55. do_something_else()
  56. .. attribute:: HttpRequest.encoding
  57. A string representing the current encoding used to decode form submission
  58. data (or ``None``, which means the :setting:`DEFAULT_CHARSET` setting is
  59. used). You can write to this attribute to change the encoding used when
  60. accessing the form data. Any subsequent attribute accesses (such as reading
  61. from :attr:`GET` or :attr:`POST`) will use the new ``encoding`` value.
  62. Useful if you know the form data is not in the :setting:`DEFAULT_CHARSET`
  63. encoding.
  64. .. attribute:: HttpRequest.content_type
  65. A string representing the MIME type of the request, parsed from the
  66. ``CONTENT_TYPE`` header.
  67. .. attribute:: HttpRequest.content_params
  68. A dictionary of key/value parameters included in the ``CONTENT_TYPE``
  69. header.
  70. .. attribute:: HttpRequest.GET
  71. A dictionary-like object containing all given HTTP GET parameters. See the
  72. :class:`QueryDict` documentation below.
  73. .. attribute:: HttpRequest.POST
  74. A dictionary-like object containing all given HTTP POST parameters,
  75. providing that the request contains form data. See the
  76. :class:`QueryDict` documentation below. If you need to access raw or
  77. non-form data posted in the request, access this through the
  78. :attr:`HttpRequest.body` attribute instead.
  79. It's possible that a request can come in via POST with an empty ``POST``
  80. dictionary -- if, say, a form is requested via the POST HTTP method but
  81. does not include form data. Therefore, you shouldn't use ``if request.POST``
  82. to check for use of the POST method; instead, use ``if request.method ==
  83. "POST"`` (see :attr:`HttpRequest.method`).
  84. ``POST`` does *not* include file-upload information. See :attr:`FILES`.
  85. .. attribute:: HttpRequest.COOKIES
  86. A dictionary containing all cookies. Keys and values are strings.
  87. .. attribute:: HttpRequest.FILES
  88. A dictionary-like object containing all uploaded files. Each key in
  89. ``FILES`` is the ``name`` from the ``<input type="file" name="">``. Each
  90. value in ``FILES`` is an :class:`~django.core.files.uploadedfile.UploadedFile`.
  91. See :doc:`/topics/files` for more information.
  92. ``FILES`` will only contain data if the request method was POST and the
  93. ``<form>`` that posted to the request had ``enctype="multipart/form-data"``.
  94. Otherwise, ``FILES`` will be a blank dictionary-like object.
  95. .. attribute:: HttpRequest.META
  96. A dictionary containing all available HTTP headers. Available headers
  97. depend on the client and server, but here are some examples:
  98. * ``CONTENT_LENGTH`` -- The length of the request body (as a string).
  99. * ``CONTENT_TYPE`` -- The MIME type of the request body.
  100. * ``HTTP_ACCEPT`` -- Acceptable content types for the response.
  101. * ``HTTP_ACCEPT_ENCODING`` -- Acceptable encodings for the response.
  102. * ``HTTP_ACCEPT_LANGUAGE`` -- Acceptable languages for the response.
  103. * ``HTTP_HOST`` -- The HTTP Host header sent by the client.
  104. * ``HTTP_REFERER`` -- The referring page, if any.
  105. * ``HTTP_USER_AGENT`` -- The client's user-agent string.
  106. * ``QUERY_STRING`` -- The query string, as a single (unparsed) string.
  107. * ``REMOTE_ADDR`` -- The IP address of the client.
  108. * ``REMOTE_HOST`` -- The hostname of the client.
  109. * ``REMOTE_USER`` -- The user authenticated by the web server, if any.
  110. * ``REQUEST_METHOD`` -- A string such as ``"GET"`` or ``"POST"``.
  111. * ``SERVER_NAME`` -- The hostname of the server.
  112. * ``SERVER_PORT`` -- The port of the server (as a string).
  113. With the exception of ``CONTENT_LENGTH`` and ``CONTENT_TYPE``, as given
  114. above, any HTTP headers in the request are converted to ``META`` keys by
  115. converting all characters to uppercase, replacing any hyphens with
  116. underscores and adding an ``HTTP_`` prefix to the name. So, for example, a
  117. header called ``X-Bender`` would be mapped to the ``META`` key
  118. ``HTTP_X_BENDER``.
  119. Note that :djadmin:`runserver` strips all headers with underscores in the
  120. name, so you won't see them in ``META``. This prevents header-spoofing
  121. based on ambiguity between underscores and dashes both being normalizing to
  122. underscores in WSGI environment variables. It matches the behavior of
  123. web servers like Nginx and Apache 2.4+.
  124. :attr:`HttpRequest.headers` is a simpler way to access all HTTP-prefixed
  125. headers, plus ``CONTENT_LENGTH`` and ``CONTENT_TYPE``.
  126. .. attribute:: HttpRequest.headers
  127. A case insensitive, dict-like object that provides access to all
  128. HTTP-prefixed headers (plus ``Content-Length`` and ``Content-Type``) from
  129. the request.
  130. The name of each header is stylized with title-casing (e.g. ``User-Agent``)
  131. when it's displayed. You can access headers case-insensitively::
  132. >>> 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. Raises ``django.core.exceptions.DisallowedHost`` if the host is not in
  210. :setting:`ALLOWED_HOSTS` or the domain name is invalid according to
  211. :rfc:`1034`/:rfc:`1035 <1035>`.
  212. .. note:: The :meth:`~HttpRequest.get_host()` method fails when the host is
  213. behind multiple proxies. One solution is to use middleware to rewrite
  214. the proxy headers, as in the following example::
  215. class MultipleProxyMiddleware:
  216. FORWARDED_FOR_FIELDS = [
  217. 'HTTP_X_FORWARDED_FOR',
  218. 'HTTP_X_FORWARDED_HOST',
  219. 'HTTP_X_FORWARDED_SERVER',
  220. ]
  221. def __init__(self, get_response):
  222. self.get_response = get_response
  223. def __call__(self, request):
  224. """
  225. Rewrites the proxy headers so that only the most
  226. recent proxy is used.
  227. """
  228. for field in self.FORWARDED_FOR_FIELDS:
  229. if field in request.META:
  230. if ',' in request.META[field]:
  231. parts = request.META[field].split(',')
  232. request.META[field] = parts[-1].strip()
  233. return self.get_response(request)
  234. This middleware should be positioned before any other middleware that
  235. relies on the value of :meth:`~HttpRequest.get_host()` -- for instance,
  236. :class:`~django.middleware.common.CommonMiddleware` or
  237. :class:`~django.middleware.csrf.CsrfViewMiddleware`.
  238. .. method:: HttpRequest.get_port()
  239. Returns the originating port of the request using information from the
  240. ``HTTP_X_FORWARDED_PORT`` (if :setting:`USE_X_FORWARDED_PORT` is enabled)
  241. and ``SERVER_PORT`` ``META`` variables, in that order.
  242. .. method:: HttpRequest.get_full_path()
  243. Returns the ``path``, plus an appended query string, if applicable.
  244. Example: ``"/music/bands/the_beatles/?print=true"``
  245. .. method:: HttpRequest.get_full_path_info()
  246. Like :meth:`get_full_path`, but uses :attr:`path_info` instead of
  247. :attr:`path`.
  248. Example: ``"/minfo/music/bands/the_beatles/?print=true"``
  249. .. method:: HttpRequest.build_absolute_uri(location=None)
  250. Returns the absolute URI form of ``location``. If no location is provided,
  251. the location will be set to ``request.get_full_path()``.
  252. If the location is already an absolute URI, it will not be altered.
  253. Otherwise the absolute URI is built using the server variables available in
  254. this request. For example:
  255. >>> request.build_absolute_uri()
  256. 'https://example.com/music/bands/the_beatles/?print=true'
  257. >>> request.build_absolute_uri('/bands/')
  258. 'https://example.com/bands/'
  259. >>> request.build_absolute_uri('https://example2.com/bands/')
  260. 'https://example2.com/bands/'
  261. .. note::
  262. Mixing HTTP and HTTPS on the same site is discouraged, therefore
  263. :meth:`~HttpRequest.build_absolute_uri()` will always generate an
  264. absolute URI with the same scheme the current request has. If you need
  265. to redirect users to HTTPS, it's best to let your web server redirect
  266. all HTTP traffic to HTTPS.
  267. .. method:: HttpRequest.get_signed_cookie(key, default=RAISE_ERROR, salt='', max_age=None)
  268. Returns a cookie value for a signed cookie, or raises a
  269. ``django.core.signing.BadSignature`` exception if the signature is
  270. no longer valid. If you provide the ``default`` argument the exception
  271. will be suppressed and that default value will be returned instead.
  272. The optional ``salt`` argument can be used to provide extra protection
  273. against brute force attacks on your secret key. If supplied, the
  274. ``max_age`` argument will be checked against the signed timestamp
  275. attached to the cookie value to ensure the cookie is not older than
  276. ``max_age`` seconds.
  277. For example::
  278. >>> request.get_signed_cookie('name')
  279. 'Tony'
  280. >>> request.get_signed_cookie('name', salt='name-salt')
  281. 'Tony' # assuming cookie was set using the same salt
  282. >>> request.get_signed_cookie('nonexistent-cookie')
  283. ...
  284. KeyError: 'nonexistent-cookie'
  285. >>> request.get_signed_cookie('nonexistent-cookie', False)
  286. False
  287. >>> request.get_signed_cookie('cookie-that-was-tampered-with')
  288. ...
  289. BadSignature: ...
  290. >>> request.get_signed_cookie('name', max_age=60)
  291. ...
  292. SignatureExpired: Signature age 1677.3839159 > 60 seconds
  293. >>> request.get_signed_cookie('name', False, max_age=60)
  294. False
  295. See :doc:`cryptographic signing </topics/signing>` for more information.
  296. .. method:: HttpRequest.is_secure()
  297. Returns ``True`` if the request is secure; that is, if it was made with
  298. HTTPS.
  299. .. method:: HttpRequest.accepts(mime_type)
  300. Returns ``True`` if the request ``Accept`` header matches the ``mime_type``
  301. argument::
  302. >>> request.accepts('text/html')
  303. True
  304. Most browsers send ``Accept: */*`` by default, so this would return
  305. ``True`` for all content types. Setting an explicit ``Accept`` header in
  306. API requests can be useful for returning a different content type for those
  307. consumers only. See :ref:`content-negotiation-example` of using
  308. ``accepts()`` to return different content to API consumers.
  309. If a response varies depending on the content of the ``Accept`` header and
  310. you are using some form of caching like Django's :mod:`cache middleware
  311. <django.middleware.cache>`, you should decorate the view with
  312. :func:`vary_on_headers('Accept')
  313. <django.views.decorators.vary.vary_on_headers>` so that the responses are
  314. properly cached.
  315. .. method:: HttpRequest.read(size=None)
  316. .. method:: HttpRequest.readline()
  317. .. method:: HttpRequest.readlines()
  318. .. method:: HttpRequest.__iter__()
  319. Methods implementing a file-like interface for reading from an
  320. ``HttpRequest`` instance. This makes it possible to consume an incoming
  321. request in a streaming fashion. A common use-case would be to process a
  322. big XML payload with an iterative parser without constructing a whole
  323. XML tree in memory.
  324. Given this standard interface, an ``HttpRequest`` instance can be
  325. passed directly to an XML parser such as
  326. :class:`~xml.etree.ElementTree.ElementTree`::
  327. import xml.etree.ElementTree as ET
  328. for element in ET.iterparse(request):
  329. process(element)
  330. ``QueryDict`` objects
  331. =====================
  332. .. class:: QueryDict
  333. In an :class:`HttpRequest` object, the :attr:`~HttpRequest.GET` and
  334. :attr:`~HttpRequest.POST` attributes are instances of ``django.http.QueryDict``,
  335. a dictionary-like class customized to deal with multiple values for the same
  336. key. This is necessary because some HTML form elements, notably
  337. ``<select multiple>``, pass multiple values for the same key.
  338. The ``QueryDict``\ s at ``request.POST`` and ``request.GET`` will be immutable
  339. when accessed in a normal request/response cycle. To get a mutable version you
  340. need to use :meth:`QueryDict.copy`.
  341. Methods
  342. -------
  343. :class:`QueryDict` implements all the standard dictionary methods because it's
  344. a subclass of dictionary. Exceptions are outlined here:
  345. .. method:: QueryDict.__init__(query_string=None, mutable=False, encoding=None)
  346. Instantiates a ``QueryDict`` object based on ``query_string``.
  347. >>> QueryDict('a=1&a=2&c=3')
  348. <QueryDict: {'a': ['1', '2'], 'c': ['3']}>
  349. If ``query_string`` is not passed in, the resulting ``QueryDict`` will be
  350. empty (it will have no keys or values).
  351. Most ``QueryDict``\ s you encounter, and in particular those at
  352. ``request.POST`` and ``request.GET``, will be immutable. If you are
  353. instantiating one yourself, you can make it mutable by passing
  354. ``mutable=True`` to its ``__init__()``.
  355. Strings for setting both keys and values will be converted from ``encoding``
  356. to ``str``. If ``encoding`` is not set, it defaults to
  357. :setting:`DEFAULT_CHARSET`.
  358. .. classmethod:: QueryDict.fromkeys(iterable, value='', mutable=False, encoding=None)
  359. Creates a new ``QueryDict`` with keys from ``iterable`` and each value
  360. equal to ``value``. For example::
  361. >>> QueryDict.fromkeys(['a', 'a', 'b'], value='val')
  362. <QueryDict: {'a': ['val', 'val'], 'b': ['val']}>
  363. .. method:: QueryDict.__getitem__(key)
  364. Returns the value for the given key. If the key has more than one value,
  365. it returns the last value. Raises
  366. ``django.utils.datastructures.MultiValueDictKeyError`` if the key does not
  367. exist. (This is a subclass of Python's standard :exc:`KeyError`, so you can
  368. stick to catching ``KeyError``.)
  369. .. method:: QueryDict.__setitem__(key, value)
  370. Sets the given key to ``[value]`` (a list whose single element is
  371. ``value``). Note that this, as other dictionary functions that have side
  372. effects, can only be called on a mutable ``QueryDict`` (such as one that
  373. was created via :meth:`QueryDict.copy`).
  374. .. method:: QueryDict.__contains__(key)
  375. Returns ``True`` if the given key is set. This lets you do, e.g., ``if "foo"
  376. in request.GET``.
  377. .. method:: QueryDict.get(key, default=None)
  378. Uses the same logic as :meth:`__getitem__`, with a hook for returning a
  379. default value if the key doesn't exist.
  380. .. method:: QueryDict.setdefault(key, default=None)
  381. Like :meth:`dict.setdefault`, except it uses :meth:`__setitem__` internally.
  382. .. method:: QueryDict.update(other_dict)
  383. Takes either a ``QueryDict`` or a dictionary. Like :meth:`dict.update`,
  384. except it *appends* to the current dictionary items rather than replacing
  385. them. For example::
  386. >>> q = QueryDict('a=1', mutable=True)
  387. >>> q.update({'a': '2'})
  388. >>> q.getlist('a')
  389. ['1', '2']
  390. >>> q['a'] # returns the last
  391. '2'
  392. .. method:: QueryDict.items()
  393. Like :meth:`dict.items`, except this uses the same last-value logic as
  394. :meth:`__getitem__` and returns an iterator object instead of a view object.
  395. For example::
  396. >>> q = QueryDict('a=1&a=2&a=3')
  397. >>> list(q.items())
  398. [('a', '3')]
  399. .. method:: QueryDict.values()
  400. Like :meth:`dict.values`, except this uses the same last-value logic as
  401. :meth:`__getitem__` and returns an iterator instead of a view object. For
  402. example::
  403. >>> q = QueryDict('a=1&a=2&a=3')
  404. >>> list(q.values())
  405. ['3']
  406. In addition, ``QueryDict`` has the following methods:
  407. .. method:: QueryDict.copy()
  408. Returns a copy of the object using :func:`copy.deepcopy`. This copy will
  409. be mutable even if the original was not.
  410. .. method:: QueryDict.getlist(key, default=None)
  411. Returns a list of the data with the requested key. Returns an empty list if
  412. the key doesn't exist and ``default`` is ``None``. It's guaranteed to
  413. return a list unless the default value provided isn't a list.
  414. .. method:: QueryDict.setlist(key, list_)
  415. Sets the given key to ``list_`` (unlike :meth:`__setitem__`).
  416. .. method:: QueryDict.appendlist(key, item)
  417. Appends an item to the internal list associated with key.
  418. .. method:: QueryDict.setlistdefault(key, default_list=None)
  419. Like :meth:`setdefault`, except it takes a list of values instead of a
  420. single value.
  421. .. method:: QueryDict.lists()
  422. Like :meth:`items()`, except it includes all values, as a list, for each
  423. member of the dictionary. For example::
  424. >>> q = QueryDict('a=1&a=2&a=3')
  425. >>> q.lists()
  426. [('a', ['1', '2', '3'])]
  427. .. method:: QueryDict.pop(key)
  428. Returns a list of values for the given key and removes them from the
  429. dictionary. Raises ``KeyError`` if the key does not exist. For example::
  430. >>> q = QueryDict('a=1&a=2&a=3', mutable=True)
  431. >>> q.pop('a')
  432. ['1', '2', '3']
  433. .. method:: QueryDict.popitem()
  434. Removes an arbitrary member of the dictionary (since there's no concept
  435. of ordering), and returns a two value tuple containing the key and a list
  436. of all values for the key. Raises ``KeyError`` when called on an empty
  437. dictionary. For example::
  438. >>> q = QueryDict('a=1&a=2&a=3', mutable=True)
  439. >>> q.popitem()
  440. ('a', ['1', '2', '3'])
  441. .. method:: QueryDict.dict()
  442. Returns a ``dict`` representation of ``QueryDict``. For every (key, list)
  443. pair in ``QueryDict``, ``dict`` will have (key, item), where item is one
  444. element of the list, using the same logic as :meth:`QueryDict.__getitem__`::
  445. >>> q = QueryDict('a=1&a=3&a=5')
  446. >>> q.dict()
  447. {'a': '5'}
  448. .. method:: QueryDict.urlencode(safe=None)
  449. Returns a string of the data in query string format. For example::
  450. >>> q = QueryDict('a=2&b=3&b=5')
  451. >>> q.urlencode()
  452. 'a=2&b=3&b=5'
  453. Use the ``safe`` parameter to pass characters which don't require encoding.
  454. For example::
  455. >>> q = QueryDict(mutable=True)
  456. >>> q['next'] = '/a&b/'
  457. >>> q.urlencode(safe='/')
  458. 'next=/a%26b/'
  459. ``HttpResponse`` objects
  460. ========================
  461. .. class:: HttpResponse
  462. In contrast to :class:`HttpRequest` objects, which are created automatically by
  463. Django, :class:`HttpResponse` objects are your responsibility. Each view you
  464. write is responsible for instantiating, populating, and returning an
  465. :class:`HttpResponse`.
  466. The :class:`HttpResponse` class lives in the :mod:`django.http` module.
  467. Usage
  468. -----
  469. Passing strings
  470. ~~~~~~~~~~~~~~~
  471. Typical usage is to pass the contents of the page, as a string, bytestring,
  472. or :class:`memoryview`, to the :class:`HttpResponse` constructor::
  473. >>> from django.http import HttpResponse
  474. >>> response = HttpResponse("Here's the text of the web page.")
  475. >>> response = HttpResponse("Text only, please.", content_type="text/plain")
  476. >>> response = HttpResponse(b'Bytestrings are also accepted.')
  477. >>> response = HttpResponse(memoryview(b'Memoryview as well.'))
  478. But if you want to add content incrementally, you can use ``response`` as a
  479. file-like object::
  480. >>> response = HttpResponse()
  481. >>> response.write("<p>Here's the text of the web page.</p>")
  482. >>> response.write("<p>Here's another paragraph.</p>")
  483. Passing iterators
  484. ~~~~~~~~~~~~~~~~~
  485. Finally, you can pass ``HttpResponse`` an iterator rather than strings.
  486. ``HttpResponse`` will consume the iterator immediately, store its content as a
  487. string, and discard it. Objects with a ``close()`` method such as files and
  488. generators are immediately closed.
  489. If you need the response to be streamed from the iterator to the client, you
  490. must use the :class:`StreamingHttpResponse` class instead.
  491. .. _setting-header-fields:
  492. Setting header fields
  493. ~~~~~~~~~~~~~~~~~~~~~
  494. To set or remove a header field in your response, use
  495. :attr:`HttpResponse.headers`::
  496. >>> response = HttpResponse()
  497. >>> response.headers['Age'] = 120
  498. >>> del response.headers['Age']
  499. You can also manipulate headers by treating your response like a dictionary::
  500. >>> response = HttpResponse()
  501. >>> response['Age'] = 120
  502. >>> del response['Age']
  503. This proxies to ``HttpResponse.headers``, and is the original interface offered
  504. by ``HttpResponse``.
  505. When using this interface, unlike a dictionary, ``del`` doesn't raise
  506. ``KeyError`` if the header field doesn't exist.
  507. You can also set headers on instantiation::
  508. >>> response = HttpResponse(headers={'Age': 120})
  509. For setting the ``Cache-Control`` and ``Vary`` header fields, it is recommended
  510. to use the :func:`~django.utils.cache.patch_cache_control` and
  511. :func:`~django.utils.cache.patch_vary_headers` methods from
  512. :mod:`django.utils.cache`, since these fields can have multiple, comma-separated
  513. values. The "patch" methods ensure that other values, e.g. added by a
  514. middleware, are not removed.
  515. HTTP header fields cannot contain newlines. An attempt to set a header field
  516. containing a newline character (CR or LF) will raise ``BadHeaderError``
  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. A case insensitive, dict-like object that provides an interface to all
  534. HTTP headers on the response. See :ref:`setting-header-fields`.
  535. .. attribute:: HttpResponse.charset
  536. A string denoting the charset in which the response will be encoded. If not
  537. given at ``HttpResponse`` instantiation time, it will be extracted from
  538. ``content_type`` and if that is unsuccessful, the
  539. :setting:`DEFAULT_CHARSET` setting will be used.
  540. .. attribute:: HttpResponse.status_code
  541. The :rfc:`HTTP status code <7231#section-6>` for the response.
  542. Unless :attr:`reason_phrase` is explicitly set, modifying the value of
  543. ``status_code`` outside the constructor will also modify the value of
  544. ``reason_phrase``.
  545. .. attribute:: HttpResponse.reason_phrase
  546. The HTTP reason phrase for the response. It uses the :rfc:`HTTP standard's
  547. <7231#section-6.1>` default reason phrases.
  548. Unless explicitly set, ``reason_phrase`` is determined by the value of
  549. :attr:`status_code`.
  550. .. attribute:: HttpResponse.streaming
  551. This is always ``False``.
  552. This attribute exists so middleware can treat streaming responses
  553. differently from regular responses.
  554. .. attribute:: HttpResponse.closed
  555. ``True`` if the response has been closed.
  556. Methods
  557. -------
  558. .. method:: HttpResponse.__init__(content=b'', content_type=None, status=200, reason=None, charset=None, headers=None)
  559. Instantiates an ``HttpResponse`` object with the given page content,
  560. content type, and headers.
  561. ``content`` is most commonly an iterator, bytestring, :class:`memoryview`,
  562. or string. Other types will be converted to a bytestring by encoding their
  563. string representation. Iterators should return strings or bytestrings and
  564. those will be joined together to form the content of the response.
  565. ``content_type`` is the MIME type optionally completed by a character set
  566. encoding and is used to fill the HTTP ``Content-Type`` header. If not
  567. specified, it is formed by ``'text/html'`` and the
  568. :setting:`DEFAULT_CHARSET` settings, by default:
  569. ``"text/html; charset=utf-8"``.
  570. ``status`` is the :rfc:`HTTP status code <7231#section-6>` for the response.
  571. You can use Python's :py:class:`http.HTTPStatus` for meaningful aliases,
  572. such as ``HTTPStatus.NO_CONTENT``.
  573. ``reason`` is the HTTP response phrase. If not provided, a default phrase
  574. will be used.
  575. ``charset`` is the charset in which the response will be encoded. If not
  576. given it will be extracted from ``content_type``, and if that
  577. is unsuccessful, the :setting:`DEFAULT_CHARSET` setting will be used.
  578. ``headers`` is a :class:`dict` of HTTP headers for the response.
  579. .. method:: HttpResponse.__setitem__(header, value)
  580. Sets the given header name to the given value. Both ``header`` and
  581. ``value`` should be strings.
  582. .. method:: HttpResponse.__delitem__(header)
  583. Deletes the header with the given name. Fails silently if the header
  584. doesn't exist. Case-insensitive.
  585. .. method:: HttpResponse.__getitem__(header)
  586. Returns the value for the given header name. Case-insensitive.
  587. .. method:: HttpResponse.get(header, alternate=None)
  588. Returns the value for the given header, or an ``alternate`` if the header
  589. doesn't exist.
  590. .. method:: HttpResponse.has_header(header)
  591. Returns ``True`` or ``False`` based on a case-insensitive check for a
  592. header with the given name.
  593. .. method:: HttpResponse.items()
  594. Acts like :meth:`dict.items` for HTTP headers on the response.
  595. .. method:: HttpResponse.setdefault(header, value)
  596. Sets a header unless it has already been set.
  597. .. method:: HttpResponse.set_cookie(key, value='', max_age=None, expires=None, path='/', domain=None, secure=False, httponly=False, samesite=None)
  598. Sets a cookie. The parameters are the same as in the
  599. :class:`~http.cookies.Morsel` cookie object in the Python standard library.
  600. * ``max_age`` should be a :class:`~datetime.timedelta` object, an integer
  601. number of seconds, or ``None`` (default) if the cookie should last only
  602. as long as the client's browser session. If ``expires`` is not specified,
  603. it will be calculated.
  604. .. versionchanged:: 4.1
  605. Support for ``timedelta`` objects was added.
  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. Note that an API based on ``dict`` objects is more extensible, flexible, and
  758. makes it easier to maintain forwards compatibility. Therefore, you should avoid
  759. using non-dict objects in JSON-encoded response.
  760. .. warning::
  761. Before the `5th edition of ECMAScript
  762. <https://262.ecma-international.org/5.1/#sec-11.1.4>`_ it was possible to
  763. poison the JavaScript ``Array`` constructor. For this reason, Django does
  764. not allow passing non-dict objects to the
  765. :class:`~django.http.JsonResponse` constructor by default. However, most
  766. modern browsers implement ECMAScript 5 which removes this attack vector.
  767. Therefore it is possible to disable this security precaution.
  768. Changing the default JSON encoder
  769. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  770. If you need to use a different JSON encoder class you can pass the ``encoder``
  771. parameter to the constructor method::
  772. >>> response = JsonResponse(data, encoder=MyJSONEncoder)
  773. .. _httpresponse-streaming:
  774. ``StreamingHttpResponse`` objects
  775. =================================
  776. .. class:: StreamingHttpResponse
  777. The :class:`StreamingHttpResponse` class is used to stream a response from
  778. Django to the browser. You might want to do this if generating the response
  779. takes too long or uses too much memory. For instance, it's useful for
  780. :ref:`generating large CSV files <streaming-csv-files>`.
  781. .. admonition:: Performance considerations
  782. Django is designed for short-lived requests. Streaming responses will tie
  783. a worker process for the entire duration of the response. This may result
  784. in poor performance.
  785. Generally speaking, you should perform expensive tasks outside of the
  786. request-response cycle, rather than resorting to a streamed response.
  787. The :class:`StreamingHttpResponse` is not a subclass of :class:`HttpResponse`,
  788. because it features a slightly different API. However, it is almost identical,
  789. with the following notable differences:
  790. * It should be given an iterator that yields bytestrings as content.
  791. * You cannot access its content, except by iterating the response object
  792. itself. This should only occur when the response is returned to the client.
  793. * It has no ``content`` attribute. Instead, it has a
  794. :attr:`~StreamingHttpResponse.streaming_content` attribute.
  795. * You cannot use the file-like object ``tell()`` or ``write()`` methods.
  796. Doing so will raise an exception.
  797. :class:`StreamingHttpResponse` should only be used in situations where it is
  798. absolutely required that the whole content isn't iterated before transferring
  799. the data to the client. Because the content can't be accessed, many
  800. middleware can't function normally. For example the ``ETag`` and
  801. ``Content-Length`` headers can't be generated for streaming responses.
  802. Attributes
  803. ----------
  804. .. attribute:: StreamingHttpResponse.streaming_content
  805. An iterator of the response content, bytestring encoded according to
  806. :attr:`HttpResponse.charset`.
  807. .. attribute:: StreamingHttpResponse.status_code
  808. The :rfc:`HTTP status code <7231#section-6>` for the response.
  809. Unless :attr:`reason_phrase` is explicitly set, modifying the value of
  810. ``status_code`` outside the constructor will also modify the value of
  811. ``reason_phrase``.
  812. .. attribute:: StreamingHttpResponse.reason_phrase
  813. The HTTP reason phrase for the response. It uses the :rfc:`HTTP standard's
  814. <7231#section-6.1>` default reason phrases.
  815. Unless explicitly set, ``reason_phrase`` is determined by the value of
  816. :attr:`status_code`.
  817. .. attribute:: StreamingHttpResponse.streaming
  818. This is always ``True``.
  819. ``FileResponse`` objects
  820. ========================
  821. .. class:: FileResponse(open_file, as_attachment=False, filename='', **kwargs)
  822. :class:`FileResponse` is a subclass of :class:`StreamingHttpResponse`
  823. optimized for binary files. It uses :pep:`wsgi.file_wrapper
  824. <3333#optional-platform-specific-file-handling>` if provided by the wsgi
  825. server, otherwise it streams the file out in small chunks.
  826. If ``as_attachment=True``, the ``Content-Disposition`` header is set to
  827. ``attachment``, which asks the browser to offer the file to the user as a
  828. download. Otherwise, a ``Content-Disposition`` header with a value of
  829. ``inline`` (the browser default) will be set only if a filename is
  830. available.
  831. If ``open_file`` doesn't have a name or if the name of ``open_file`` isn't
  832. appropriate, provide a custom file name using the ``filename`` parameter.
  833. Note that if you pass a file-like object like ``io.BytesIO``, it's your
  834. task to ``seek()`` it before passing it to ``FileResponse``.
  835. The ``Content-Length`` and ``Content-Type`` headers are automatically set
  836. when they can be guessed from contents of ``open_file``.
  837. ``FileResponse`` accepts any file-like object with binary content, for example
  838. a file open in binary mode like so::
  839. >>> from django.http import FileResponse
  840. >>> response = FileResponse(open('myfile.png', 'rb'))
  841. The file will be closed automatically, so don't open it with a context manager.
  842. Methods
  843. -------
  844. .. method:: FileResponse.set_headers(open_file)
  845. This method is automatically called during the response initialization and
  846. set various headers (``Content-Length``, ``Content-Type``, and
  847. ``Content-Disposition``) depending on ``open_file``.