2
0

utils.txt 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138
  1. ============
  2. Django Utils
  3. ============
  4. .. module:: django.utils
  5. :synopsis: Django's built-in utilities.
  6. This document covers all stable modules in ``django.utils``. Most of the
  7. modules in ``django.utils`` are designed for internal use and only the
  8. following parts can be considered stable and thus backwards compatible as per
  9. the :ref:`internal release deprecation policy <internal-release-deprecation-policy>`.
  10. ``django.utils.cache``
  11. ======================
  12. .. module:: django.utils.cache
  13. :synopsis: Helper functions for controlling caching.
  14. This module contains helper functions for controlling caching. It does so by
  15. managing the ``Vary`` header of responses. It includes functions to patch the
  16. header of response objects directly and decorators that change functions to do
  17. that header-patching themselves.
  18. For information on the ``Vary`` header, see :rfc:`7231#section-7.1.4`.
  19. Essentially, the ``Vary`` HTTP header defines which headers a cache should take
  20. into account when building its cache key. Requests with the same path but
  21. different header content for headers named in ``Vary`` need to get different
  22. cache keys to prevent delivery of wrong content.
  23. For example, :doc:`internationalization </topics/i18n/index>` middleware would
  24. need to distinguish caches by the ``Accept-language`` header.
  25. .. function:: patch_cache_control(response, **kwargs)
  26. This function patches the ``Cache-Control`` header by adding all keyword
  27. arguments to it. The transformation is as follows:
  28. * All keyword parameter names are turned to lowercase, and underscores
  29. are converted to hyphens.
  30. * If the value of a parameter is ``True`` (exactly ``True``, not just a
  31. true value), only the parameter name is added to the header.
  32. * All other parameters are added with their value, after applying
  33. ``str()`` to it.
  34. .. function:: get_max_age(response)
  35. Returns the max-age from the response Cache-Control header as an integer
  36. (or ``None`` if it wasn't found or wasn't an integer).
  37. .. function:: patch_response_headers(response, cache_timeout=None)
  38. Adds some useful headers to the given ``HttpResponse`` object:
  39. * ``Expires``
  40. * ``Cache-Control``
  41. Each header is only added if it isn't already set.
  42. ``cache_timeout`` is in seconds. The :setting:`CACHE_MIDDLEWARE_SECONDS`
  43. setting is used by default.
  44. .. function:: add_never_cache_headers(response)
  45. Adds a ``Cache-Control: max-age=0, no-cache, no-store, must-revalidate``
  46. header to a response to indicate that a page should never be cached.
  47. .. function:: patch_vary_headers(response, newheaders)
  48. Adds (or updates) the ``Vary`` header in the given ``HttpResponse`` object.
  49. ``newheaders`` is a list of header names that should be in ``Vary``.
  50. Existing headers in ``Vary`` aren't removed.
  51. .. function:: get_cache_key(request, key_prefix=None)
  52. Returns a cache key based on the request path. It can be used in the
  53. request phase because it pulls the list of headers to take into account
  54. from the global path registry and uses those to build a cache key to
  55. check against.
  56. If there is no headerlist stored, the page needs to be rebuilt, so this
  57. function returns ``None``.
  58. .. function:: learn_cache_key(request, response, cache_timeout=None, key_prefix=None)
  59. Learns what headers to take into account for some request path from the
  60. response object. It stores those headers in a global path registry so that
  61. later access to that path will know what headers to take into account
  62. without building the response object itself. The headers are named in
  63. the ``Vary`` header of the response, but we want to prevent response
  64. generation.
  65. The list of headers to use for cache key generation is stored in the same
  66. cache as the pages themselves. If the cache ages some data out of the
  67. cache, this just means that we have to build the response once to get at
  68. the Vary header and so at the list of headers to use for the cache key.
  69. ``django.utils.dateparse``
  70. ==========================
  71. .. module:: django.utils.dateparse
  72. :synopsis: Functions to parse datetime objects.
  73. The functions defined in this module share the following properties:
  74. - They raise :exc:`ValueError` if their input is well formatted but isn't a
  75. valid date or time.
  76. - They return ``None`` if it isn't well formatted at all.
  77. - They accept up to picosecond resolution in input, but they truncate it to
  78. microseconds, since that's what Python supports.
  79. .. function:: parse_date(value)
  80. Parses a string and returns a :class:`datetime.date`.
  81. .. function:: parse_time(value)
  82. Parses a string and returns a :class:`datetime.time`.
  83. UTC offsets aren't supported; if ``value`` describes one, the result is
  84. ``None``.
  85. .. function:: parse_datetime(value)
  86. Parses a string and returns a :class:`datetime.datetime`.
  87. UTC offsets are supported; if ``value`` describes one, the result's
  88. ``tzinfo`` attribute is a :class:`datetime.timezone` instance.
  89. .. versionchanged:: 2.2
  90. In older versions, the ``tzinfo`` attribute is a
  91. :class:`~django.utils.timezone.FixedOffset` instance.
  92. .. function:: parse_duration(value)
  93. Parses a string and returns a :class:`datetime.timedelta`.
  94. Expects data in the format ``"DD HH:MM:SS.uuuuuu"`` or as specified by ISO
  95. 8601 (e.g. ``P4DT1H15M20S`` which is equivalent to ``4 1:15:20``) or
  96. PostgreSQL's day-time interval format (e.g. ``3 days 04:05:06``).
  97. ``django.utils.decorators``
  98. ===========================
  99. .. module:: django.utils.decorators
  100. :synopsis: Functions that help with creating decorators for views.
  101. .. function:: method_decorator(decorator, name='')
  102. Converts a function decorator into a method decorator. It can be used to
  103. decorate methods or classes; in the latter case, ``name`` is the name
  104. of the method to be decorated and is required.
  105. ``decorator`` may also be a list or tuple of functions. They are wrapped
  106. in reverse order so that the call order is the order in which the functions
  107. appear in the list/tuple.
  108. See :ref:`decorating class based views <decorating-class-based-views>` for
  109. example usage.
  110. .. function:: decorator_from_middleware(middleware_class)
  111. Given a middleware class, returns a view decorator. This lets you use
  112. middleware functionality on a per-view basis. The middleware is created
  113. with no params passed.
  114. It assumes middleware that's compatible with the old style of Django 1.9
  115. and earlier (having methods like ``process_request()``,
  116. ``process_exception()``, and ``process_response()``).
  117. .. function:: decorator_from_middleware_with_args(middleware_class)
  118. Like ``decorator_from_middleware``, but returns a function
  119. that accepts the arguments to be passed to the middleware_class.
  120. For example, the :func:`~django.views.decorators.cache.cache_page`
  121. decorator is created from the ``CacheMiddleware`` like this::
  122. cache_page = decorator_from_middleware_with_args(CacheMiddleware)
  123. @cache_page(3600)
  124. def my_view(request):
  125. pass
  126. ``django.utils.encoding``
  127. =========================
  128. .. module:: django.utils.encoding
  129. :synopsis: A series of helper functions to manage character encoding.
  130. .. function:: python_2_unicode_compatible
  131. A decorator that defines ``__unicode__`` and ``__str__`` methods under
  132. Python 2. Under Python 3 it does nothing.
  133. To support Python 2 and 3 with a single code base, define a ``__str__``
  134. method returning text (use ``six.text_type()`` if you're doing some
  135. casting) and apply this decorator to the class.
  136. .. function:: smart_text(s, encoding='utf-8', strings_only=False, errors='strict')
  137. Returns a ``str`` object representing ``s``. Treats bytestrings using the
  138. ``encoding`` codec.
  139. If ``strings_only`` is ``True``, don't convert (some) non-string-like
  140. objects.
  141. .. function:: is_protected_type(obj)
  142. Determine if the object instance is of a protected type.
  143. Objects of protected types are preserved as-is when passed to
  144. ``force_text(strings_only=True)``.
  145. .. function:: force_text(s, encoding='utf-8', strings_only=False, errors='strict')
  146. Similar to ``smart_text``, except that lazy instances are resolved to
  147. strings, rather than kept as lazy objects.
  148. If ``strings_only`` is ``True``, don't convert (some) non-string-like
  149. objects.
  150. .. function:: smart_bytes(s, encoding='utf-8', strings_only=False, errors='strict')
  151. Returns a bytestring version of ``s``, encoded as specified in
  152. ``encoding``.
  153. If ``strings_only`` is ``True``, don't convert (some) non-string-like
  154. objects.
  155. .. function:: force_bytes(s, encoding='utf-8', strings_only=False, errors='strict')
  156. Similar to ``smart_bytes``, except that lazy instances are resolved to
  157. bytestrings, rather than kept as lazy objects.
  158. If ``strings_only`` is ``True``, don't convert (some) non-string-like
  159. objects.
  160. .. function:: smart_str(s, encoding='utf-8', strings_only=False, errors='strict')
  161. Alias of :func:`smart_text`. This function returns a ``str`` or a lazy
  162. string.
  163. For instance, this is suitable for writing to :data:`sys.stdout`.
  164. Alias of :func:`smart_bytes` on Python 2 (in older versions of Django that
  165. support it).
  166. .. function:: force_str(s, encoding='utf-8', strings_only=False, errors='strict')
  167. Alias of :func:`force_text`. This function always returns a ``str``.
  168. Alias of :func:`force_bytes` on Python 2 (in older versions of Django that
  169. support it).
  170. .. function:: iri_to_uri(iri)
  171. Convert an Internationalized Resource Identifier (IRI) portion to a URI
  172. portion that is suitable for inclusion in a URL.
  173. This is the algorithm from section 3.1 of :rfc:`3987#section-3.1`, slightly
  174. simplified since the input is assumed to be a string rather than an
  175. arbitrary byte stream.
  176. Takes an IRI (string or UTF-8 bytes) and returns a string containing the
  177. encoded result.
  178. .. function:: uri_to_iri(uri)
  179. Converts a Uniform Resource Identifier into an Internationalized Resource
  180. Identifier.
  181. This is an algorithm from section 3.2 of :rfc:`3987#section-3.2`.
  182. Takes a URI in ASCII bytes and returns a string containing the encoded
  183. result.
  184. .. function:: filepath_to_uri(path)
  185. Convert a file system path to a URI portion that is suitable for inclusion
  186. in a URL. The path is assumed to be either UTF-8 bytes or string.
  187. This method will encode certain characters that would normally be
  188. recognized as special characters for URIs. Note that this method does not
  189. encode the ' character, as it is a valid character within URIs. See
  190. ``encodeURIComponent()`` JavaScript function for more details.
  191. Returns an ASCII string containing the encoded result.
  192. .. function:: escape_uri_path(path)
  193. Escapes the unsafe characters from the path portion of a Uniform Resource
  194. Identifier (URI).
  195. ``django.utils.feedgenerator``
  196. ==============================
  197. .. module:: django.utils.feedgenerator
  198. :synopsis: Syndication feed generation library -- used for generating RSS, etc.
  199. Sample usage::
  200. >>> from django.utils import feedgenerator
  201. >>> feed = feedgenerator.Rss201rev2Feed(
  202. ... title="Poynter E-Media Tidbits",
  203. ... link="http://www.poynter.org/column.asp?id=31",
  204. ... description="A group Weblog by the sharpest minds in online media/journalism/publishing.",
  205. ... language="en",
  206. ... )
  207. >>> feed.add_item(
  208. ... title="Hello",
  209. ... link="http://www.holovaty.com/test/",
  210. ... description="Testing.",
  211. ... )
  212. >>> with open('test.rss', 'w') as fp:
  213. ... feed.write(fp, 'utf-8')
  214. For simplifying the selection of a generator use ``feedgenerator.DefaultFeed``
  215. which is currently ``Rss201rev2Feed``
  216. For definitions of the different versions of RSS, see:
  217. https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004/02/04/incompatible-rss
  218. .. function:: get_tag_uri(url, date)
  219. Creates a TagURI.
  220. See https://web.archive.org/web/20110514113830/http://diveintomark.org/archives/2004/05/28/howto-atom-id
  221. ``SyndicationFeed``
  222. -------------------
  223. .. class:: SyndicationFeed
  224. Base class for all syndication feeds. Subclasses should provide write().
  225. .. method:: __init__(title, link, description, language=None, author_email=None, author_name=None, author_link=None, subtitle=None, categories=None, feed_url=None, feed_copyright=None, feed_guid=None, ttl=None, **kwargs)
  226. Initialize the feed with the given dictionary of metadata, which applies
  227. to the entire feed.
  228. Any extra keyword arguments you pass to ``__init__`` will be stored in
  229. ``self.feed``.
  230. All parameters should be strings, except ``categories``, which should
  231. be a sequence of strings.
  232. .. method:: add_item(title, link, description, author_email=None, author_name=None, author_link=None, pubdate=None, comments=None, unique_id=None, categories=(), item_copyright=None, ttl=None, updateddate=None, enclosures=None, **kwargs)
  233. Adds an item to the feed. All args are expected to be strings except
  234. ``pubdate`` and ``updateddate``, which are ``datetime.datetime``
  235. objects, and ``enclosures``, which is a list of ``Enclosure`` instances.
  236. .. method:: num_items()
  237. .. method:: root_attributes()
  238. Return extra attributes to place on the root (i.e. feed/channel)
  239. element. Called from ``write()``.
  240. .. method:: add_root_elements(handler)
  241. Add elements in the root (i.e. feed/channel) element.
  242. Called from ``write()``.
  243. .. method:: item_attributes(item)
  244. Return extra attributes to place on each item (i.e. item/entry)
  245. element.
  246. .. method:: add_item_elements(handler, item)
  247. Add elements on each item (i.e. item/entry) element.
  248. .. method:: write(outfile, encoding)
  249. Outputs the feed in the given encoding to ``outfile``, which is a
  250. file-like object. Subclasses should override this.
  251. .. method:: writeString(encoding)
  252. Returns the feed in the given encoding as a string.
  253. .. method:: latest_post_date()
  254. Returns the latest ``pubdate`` or ``updateddate`` for all items in the
  255. feed. If no items have either of these attributes this returns the
  256. current UTC date/time.
  257. ``Enclosure``
  258. -------------
  259. .. class:: Enclosure
  260. Represents an RSS enclosure
  261. ``RssFeed``
  262. -----------
  263. .. class:: RssFeed(SyndicationFeed)
  264. ``Rss201rev2Feed``
  265. ------------------
  266. .. class:: Rss201rev2Feed(RssFeed)
  267. Spec: https://cyber.harvard.edu/rss/rss.html
  268. ``RssUserland091Feed``
  269. ----------------------
  270. .. class:: RssUserland091Feed(RssFeed)
  271. Spec: http://backend.userland.com/rss091
  272. ``Atom1Feed``
  273. -------------
  274. .. class:: Atom1Feed(SyndicationFeed)
  275. Spec: https://tools.ietf.org/html/rfc4287
  276. ``django.utils.functional``
  277. ===========================
  278. .. module:: django.utils.functional
  279. :synopsis: Functional programming tools.
  280. .. class:: cached_property(func, name=None)
  281. The ``@cached_property`` decorator caches the result of a method with a
  282. single ``self`` argument as a property. The cached result will persist
  283. as long as the instance does, so if the instance is passed around and the
  284. function subsequently invoked, the cached result will be returned.
  285. Consider a typical case, where a view might need to call a model's method
  286. to perform some computation, before placing the model instance into the
  287. context, where the template might invoke the method once more::
  288. # the model
  289. class Person(models.Model):
  290. def friends(self):
  291. # expensive computation
  292. ...
  293. return friends
  294. # in the view:
  295. if person.friends():
  296. ...
  297. And in the template you would have:
  298. .. code-block:: html+django
  299. {% for friend in person.friends %}
  300. Here, ``friends()`` will be called twice. Since the instance ``person`` in
  301. the view and the template are the same, decorating the ``friends()`` method
  302. with ``@cached_property`` can avoid that::
  303. from django.utils.functional import cached_property
  304. class Person(models.Model):
  305. @cached_property
  306. def friends(self):
  307. ...
  308. Note that as the method is now a property, in Python code it will need to
  309. be invoked appropriately::
  310. # in the view:
  311. if person.friends:
  312. ...
  313. The cached value can be treated like an ordinary attribute of the instance::
  314. # clear it, requiring re-computation next time it's called
  315. del person.friends # or delattr(person, "friends")
  316. # set a value manually, that will persist on the instance until cleared
  317. person.friends = ["Huckleberry Finn", "Tom Sawyer"]
  318. As well as offering potential performance advantages, ``@cached_property``
  319. can ensure that an attribute's value does not change unexpectedly over the
  320. life of an instance. This could occur with a method whose computation is
  321. based on ``datetime.now()``, or simply if a change were saved to the
  322. database by some other process in the brief interval between subsequent
  323. invocations of a method on the same instance.
  324. You can use the ``name`` argument to make cached properties of other
  325. methods. For example, if you had an expensive ``get_friends()`` method and
  326. wanted to allow calling it without retrieving the cached value, you could
  327. write::
  328. friends = cached_property(get_friends, name='friends')
  329. While ``person.get_friends()`` will recompute the friends on each call, the
  330. value of the cached property will persist until you delete it as described
  331. above::
  332. x = person.friends # calls first time
  333. y = person.get_friends() # calls again
  334. z = person.friends # does not call
  335. x is z # is True
  336. .. warning::
  337. ``cached_property`` doesn't work properly with a mangled__ name unless
  338. it's passed a ``name`` of the form ``_Class__attribute``::
  339. __friends = cached_property(get_friends, name='_Person__friends')
  340. __ https://docs.python.org/3/faq/programming.html#i-try-to-use-spam-and-i-get-an-error-about-someclassname-spam
  341. .. function:: keep_lazy(func, *resultclasses)
  342. Django offers many utility functions (particularly in ``django.utils``)
  343. that take a string as their first argument and do something to that string.
  344. These functions are used by template filters as well as directly in other
  345. code.
  346. If you write your own similar functions and deal with translations, you'll
  347. face the problem of what to do when the first argument is a lazy
  348. translation object. You don't want to convert it to a string immediately,
  349. because you might be using this function outside of a view (and hence the
  350. current thread's locale setting will not be correct).
  351. For cases like this, use the ``django.utils.functional.keep_lazy()``
  352. decorator. It modifies the function so that *if* it's called with a lazy
  353. translation as one of its arguments, the function evaluation is delayed
  354. until it needs to be converted to a string.
  355. For example::
  356. from django.utils.functional import keep_lazy, keep_lazy_text
  357. def fancy_utility_function(s, ...):
  358. # Do some conversion on string 's'
  359. ...
  360. fancy_utility_function = keep_lazy(str)(fancy_utility_function)
  361. # Or more succinctly:
  362. @keep_lazy(str)
  363. def fancy_utility_function(s, ...):
  364. ...
  365. The ``keep_lazy()`` decorator takes a number of extra arguments (``*args``)
  366. specifying the type(s) that the original function can return. A common
  367. use case is to have functions that return text. For these, you can just
  368. pass the ``str`` type to ``keep_lazy`` (or even simpler, use the
  369. :func:`keep_lazy_text` decorator described in the next section).
  370. Using this decorator means you can write your function and assume that the
  371. input is a proper string, then add support for lazy translation objects at
  372. the end.
  373. .. function:: keep_lazy_text(func)
  374. A shortcut for ``keep_lazy(str)(func)``.
  375. If you have a function that returns text and you want to be able to take
  376. lazy arguments while delaying their evaluation, simply use this decorator::
  377. from django.utils.functional import keep_lazy, keep_lazy_text
  378. # Our previous example was:
  379. @keep_lazy(str)
  380. def fancy_utility_function(s, ...):
  381. ...
  382. # Which can be rewritten as:
  383. @keep_lazy_text
  384. def fancy_utility_function(s, ...):
  385. ...
  386. ``django.utils.html``
  387. =====================
  388. .. module:: django.utils.html
  389. :synopsis: HTML helper functions
  390. Usually you should build up HTML using Django's templates to make use of its
  391. autoescape mechanism, using the utilities in :mod:`django.utils.safestring`
  392. where appropriate. This module provides some additional low level utilities for
  393. escaping HTML.
  394. .. function:: escape(text)
  395. Returns the given text with ampersands, quotes and angle brackets encoded
  396. for use in HTML. The input is first passed through
  397. :func:`~django.utils.encoding.force_text` and the output has
  398. :func:`~django.utils.safestring.mark_safe` applied.
  399. .. function:: conditional_escape(text)
  400. Similar to ``escape()``, except that it doesn't operate on pre-escaped
  401. strings, so it will not double escape.
  402. .. function:: format_html(format_string, *args, **kwargs)
  403. This is similar to :meth:`str.format`, except that it is appropriate for
  404. building up HTML fragments. All args and kwargs are passed through
  405. :func:`conditional_escape` before being passed to ``str.format()``.
  406. For the case of building up small HTML fragments, this function is to be
  407. preferred over string interpolation using ``%`` or ``str.format()``
  408. directly, because it applies escaping to all arguments - just like the
  409. template system applies escaping by default.
  410. So, instead of writing::
  411. mark_safe("%s <b>%s</b> %s" % (
  412. some_html,
  413. escape(some_text),
  414. escape(some_other_text),
  415. ))
  416. You should instead use::
  417. format_html("{} <b>{}</b> {}",
  418. mark_safe(some_html),
  419. some_text,
  420. some_other_text,
  421. )
  422. This has the advantage that you don't need to apply :func:`escape` to each
  423. argument and risk a bug and an XSS vulnerability if you forget one.
  424. Note that although this function uses ``str.format()`` to do the
  425. interpolation, some of the formatting options provided by ``str.format()``
  426. (e.g. number formatting) will not work, since all arguments are passed
  427. through :func:`conditional_escape` which (ultimately) calls
  428. :func:`~django.utils.encoding.force_text` on the values.
  429. .. function:: format_html_join(sep, format_string, args_generator)
  430. A wrapper of :func:`format_html`, for the common case of a group of
  431. arguments that need to be formatted using the same format string, and then
  432. joined using ``sep``. ``sep`` is also passed through
  433. :func:`conditional_escape`.
  434. ``args_generator`` should be an iterator that returns the sequence of
  435. ``args`` that will be passed to :func:`format_html`. For example::
  436. format_html_join(
  437. '\n', "<li>{} {}</li>",
  438. ((u.first_name, u.last_name) for u in users)
  439. )
  440. .. function:: strip_tags(value)
  441. Tries to remove anything that looks like an HTML tag from the string, that
  442. is anything contained within ``<>``.
  443. Absolutely NO guarantee is provided about the resulting string being
  444. HTML safe. So NEVER mark safe the result of a ``strip_tag`` call without
  445. escaping it first, for example with :func:`~django.utils.html.escape`.
  446. For example::
  447. strip_tags(value)
  448. If ``value`` is ``"<b>Joel</b> <button>is</button> a <span>slug</span>"``
  449. the return value will be ``"Joel is a slug"``.
  450. If you are looking for a more robust solution, take a look at the `bleach
  451. <https://pypi.org/project/bleach/>`_ Python library.
  452. .. function:: html_safe()
  453. The ``__html__()`` method on a class helps non-Django templates detect
  454. classes whose output doesn't require HTML escaping.
  455. This decorator defines the ``__html__()`` method on the decorated class
  456. by wrapping ``__str__()`` in :meth:`~django.utils.safestring.mark_safe`.
  457. Ensure the ``__str__()`` method does indeed return text that doesn't
  458. require HTML escaping.
  459. ``django.utils.http``
  460. =====================
  461. .. module:: django.utils.http
  462. :synopsis: HTTP helper functions. (URL encoding, cookie handling, ...)
  463. .. function:: urlencode(query, doseq=False)
  464. A version of Python's :func:`urllib.parse.urlencode` function that can
  465. operate on ``MultiValueDict`` and non-string values.
  466. .. function:: cookie_date(epoch_seconds=None)
  467. .. deprecated:: 2.1
  468. Use :func:`http_date` instead, which follows the latest RFC.
  469. Formats the time to ensure compatibility with Netscape's cookie standard.
  470. Accepts a floating point number expressed in seconds since the epoch in
  471. UTC--such as that outputted by ``time.time()``. If set to ``None``,
  472. defaults to the current time.
  473. Outputs a string in the format ``Wdy, DD-Mon-YYYY HH:MM:SS GMT``.
  474. .. function:: http_date(epoch_seconds=None)
  475. Formats the time to match the :rfc:`1123` date format as specified by HTTP
  476. :rfc:`7231#section-7.1.1.1`.
  477. Accepts a floating point number expressed in seconds since the epoch in
  478. UTC--such as that outputted by ``time.time()``. If set to ``None``,
  479. defaults to the current time.
  480. Outputs a string in the format ``Wdy, DD Mon YYYY HH:MM:SS GMT``.
  481. .. function:: base36_to_int(s)
  482. Converts a base 36 string to an integer.
  483. .. function:: int_to_base36(i)
  484. Converts a positive integer to a base 36 string.
  485. .. function:: urlsafe_base64_encode(s)
  486. Encodes a bytestring in base64 for use in URLs, stripping any trailing
  487. equal signs.
  488. .. function:: urlsafe_base64_decode(s)
  489. Decodes a base64 encoded string, adding back any trailing equal signs that
  490. might have been stripped.
  491. ``django.utils.module_loading``
  492. ===============================
  493. .. module:: django.utils.module_loading
  494. :synopsis: Functions for working with Python modules.
  495. Functions for working with Python modules.
  496. .. function:: import_string(dotted_path)
  497. Imports a dotted module path and returns the attribute/class designated by
  498. the last name in the path. Raises ``ImportError`` if the import failed. For
  499. example::
  500. from django.utils.module_loading import import_string
  501. ValidationError = import_string('django.core.exceptions.ValidationError')
  502. is equivalent to::
  503. from django.core.exceptions import ValidationError
  504. ``django.utils.safestring``
  505. ===========================
  506. .. module:: django.utils.safestring
  507. :synopsis: Functions and classes for working with strings that can be displayed safely without further escaping in HTML.
  508. Functions and classes for working with "safe strings": strings that can be
  509. displayed safely without further escaping in HTML. Marking something as a "safe
  510. string" means that the producer of the string has already turned characters
  511. that should not be interpreted by the HTML engine (e.g. '<') into the
  512. appropriate entities.
  513. .. class:: SafeString
  514. A ``str`` subclass that has been specifically marked as "safe"
  515. (requires no further escaping) for HTML output purposes. Alias of
  516. :class:`SafeText`.
  517. .. class:: SafeText
  518. A ``str`` subclass that has been specifically marked as "safe" for HTML
  519. output purposes.
  520. .. function:: mark_safe(s)
  521. Explicitly mark a string as safe for (HTML) output purposes. The returned
  522. object can be used everywhere a string is appropriate.
  523. Can be called multiple times on a single string.
  524. Can also be used as a decorator.
  525. For building up fragments of HTML, you should normally be using
  526. :func:`django.utils.html.format_html` instead.
  527. String marked safe will become unsafe again if modified. For example::
  528. >>> mystr = '<b>Hello World</b> '
  529. >>> mystr = mark_safe(mystr)
  530. >>> type(mystr)
  531. <class 'django.utils.safestring.SafeText'>
  532. >>> mystr = mystr.strip() # removing whitespace
  533. >>> type(mystr)
  534. <type 'str'>
  535. ``django.utils.text``
  536. =====================
  537. .. module:: django.utils.text
  538. :synopsis: Text manipulation.
  539. .. function:: format_lazy(format_string, *args, **kwargs)
  540. A version of :meth:`str.format` for when ``format_string``, ``args``,
  541. and/or ``kwargs`` contain lazy objects. The first argument is the string to
  542. be formatted. For example::
  543. from django.utils.text import format_lazy
  544. from django.utils.translation import pgettext_lazy
  545. urlpatterns = [
  546. path(format_lazy('{person}/<int:pk>/', person=pgettext_lazy('URL', 'person')),
  547. PersonDetailView.as_view()),
  548. ]
  549. This example allows translators to translate part of the URL. If "person"
  550. is translated to "persona", the regular expression will match
  551. ``persona/(?P<pk>\d+)/$``, e.g. ``persona/5/``.
  552. .. function:: slugify(allow_unicode=False)
  553. Converts to ASCII if ``allow_unicode`` is ``False`` (default). Converts spaces to
  554. hyphens. Removes characters that aren't alphanumerics, underscores, or
  555. hyphens. Converts to lowercase. Also strips leading and trailing whitespace.
  556. For example::
  557. slugify(value)
  558. If ``value`` is ``"Joel is a slug"``, the output will be
  559. ``"joel-is-a-slug"``.
  560. You can set the ``allow_unicode`` parameter to ``True``, if you want to
  561. allow Unicode characters::
  562. slugify(value, allow_unicode=True)
  563. If ``value`` is ``"你好 World"``, the output will be ``"你好-world"``.
  564. .. _time-zone-selection-functions:
  565. ``django.utils.timezone``
  566. =========================
  567. .. module:: django.utils.timezone
  568. :synopsis: Timezone support.
  569. .. data:: utc
  570. :class:`~datetime.tzinfo` instance that represents UTC.
  571. .. class:: FixedOffset(offset=None, name=None)
  572. A :class:`~datetime.tzinfo` subclass modeling a fixed offset from UTC.
  573. ``offset`` is an integer number of minutes east of UTC.
  574. .. deprecated:: 2.2
  575. Use :class:`datetime.timezone` instead.
  576. .. function:: get_fixed_timezone(offset)
  577. Returns a :class:`~datetime.tzinfo` instance that represents a time zone
  578. with a fixed offset from UTC.
  579. ``offset`` is a :class:`datetime.timedelta` or an integer number of
  580. minutes. Use positive values for time zones east of UTC and negative
  581. values for west of UTC.
  582. .. function:: get_default_timezone()
  583. Returns a :class:`~datetime.tzinfo` instance that represents the
  584. :ref:`default time zone <default-current-time-zone>`.
  585. .. function:: get_default_timezone_name()
  586. Returns the name of the :ref:`default time zone
  587. <default-current-time-zone>`.
  588. .. function:: get_current_timezone()
  589. Returns a :class:`~datetime.tzinfo` instance that represents the
  590. :ref:`current time zone <default-current-time-zone>`.
  591. .. function:: get_current_timezone_name()
  592. Returns the name of the :ref:`current time zone
  593. <default-current-time-zone>`.
  594. .. function:: activate(timezone)
  595. Sets the :ref:`current time zone <default-current-time-zone>`. The
  596. ``timezone`` argument must be an instance of a :class:`~datetime.tzinfo`
  597. subclass or a time zone name.
  598. .. function:: deactivate()
  599. Unsets the :ref:`current time zone <default-current-time-zone>`.
  600. .. function:: override(timezone)
  601. This is a Python context manager that sets the :ref:`current time zone
  602. <default-current-time-zone>` on entry with :func:`activate()`, and restores
  603. the previously active time zone on exit. If the ``timezone`` argument is
  604. ``None``, the :ref:`current time zone <default-current-time-zone>` is unset
  605. on entry with :func:`deactivate()` instead.
  606. ``override`` is also usable as a function decorator.
  607. .. function:: localtime(value=None, timezone=None)
  608. Converts an aware :class:`~datetime.datetime` to a different time zone,
  609. by default the :ref:`current time zone <default-current-time-zone>`.
  610. When ``value`` is omitted, it defaults to :func:`now`.
  611. This function doesn't work on naive datetimes; use :func:`make_aware`
  612. instead.
  613. .. function:: localdate(value=None, timezone=None)
  614. Uses :func:`localtime` to convert an aware :class:`~datetime.datetime` to a
  615. :meth:`~datetime.datetime.date` in a different time zone, by default the
  616. :ref:`current time zone <default-current-time-zone>`.
  617. When ``value`` is omitted, it defaults to :func:`now`.
  618. This function doesn't work on naive datetimes.
  619. .. function:: now()
  620. Returns a :class:`~datetime.datetime` that represents the
  621. current point in time. Exactly what's returned depends on the value of
  622. :setting:`USE_TZ`:
  623. * If :setting:`USE_TZ` is ``False``, this will be a
  624. :ref:`naive <naive_vs_aware_datetimes>` datetime (i.e. a datetime
  625. without an associated timezone) that represents the current time
  626. in the system's local timezone.
  627. * If :setting:`USE_TZ` is ``True``, this will be an
  628. :ref:`aware <naive_vs_aware_datetimes>` datetime representing the
  629. current time in UTC. Note that :func:`now` will always return
  630. times in UTC regardless of the value of :setting:`TIME_ZONE`;
  631. you can use :func:`localtime` to get the time in the current time zone.
  632. .. function:: is_aware(value)
  633. Returns ``True`` if ``value`` is aware, ``False`` if it is naive. This
  634. function assumes that ``value`` is a :class:`~datetime.datetime`.
  635. .. function:: is_naive(value)
  636. Returns ``True`` if ``value`` is naive, ``False`` if it is aware. This
  637. function assumes that ``value`` is a :class:`~datetime.datetime`.
  638. .. function:: make_aware(value, timezone=None, is_dst=None)
  639. Returns an aware :class:`~datetime.datetime` that represents the same
  640. point in time as ``value`` in ``timezone``, ``value`` being a naive
  641. :class:`~datetime.datetime`. If ``timezone`` is set to ``None``, it
  642. defaults to the :ref:`current time zone <default-current-time-zone>`.
  643. The ``pytz.AmbiguousTimeError`` exception is raised if you try to make
  644. ``value`` aware during a DST transition where the same time occurs twice
  645. (when reverting from DST). Setting ``is_dst`` to ``True`` or ``False`` will
  646. avoid the exception by choosing if the time is pre-transition or
  647. post-transition respectively.
  648. The ``pytz.NonExistentTimeError`` exception is raised if you try to make
  649. ``value`` aware during a DST transition such that the time never occurred
  650. (when entering into DST). Setting ``is_dst`` to ``True`` or ``False`` will
  651. avoid the exception by moving the hour backwards or forwards by 1
  652. respectively. For example, ``is_dst=True`` would change a nonexistent
  653. time of 2:30 to 1:30 and ``is_dst=False`` would change the time to 3:30.
  654. .. function:: make_naive(value, timezone=None)
  655. Returns a naive :class:`~datetime.datetime` that represents in
  656. ``timezone`` the same point in time as ``value``, ``value`` being an
  657. aware :class:`~datetime.datetime`. If ``timezone`` is set to ``None``, it
  658. defaults to the :ref:`current time zone <default-current-time-zone>`.
  659. ``django.utils.translation``
  660. ============================
  661. .. module:: django.utils.translation
  662. :synopsis: Internationalization support.
  663. For a complete discussion on the usage of the following see the
  664. :doc:`translation documentation </topics/i18n/translation>`.
  665. The ``u`` prefix on the functions below comes from a difference in Python 2
  666. between unicode and bytestrings. If your code doesn't support Python 2, use the
  667. functions without the ``u``.
  668. .. function:: gettext(message)
  669. .. function:: ugettext(message)
  670. Translates ``message`` and returns it as a string.
  671. .. function:: pgettext(context, message)
  672. Translates ``message`` given the ``context`` and returns it as a string.
  673. For more information, see :ref:`contextual-markers`.
  674. .. function:: gettext_lazy(message)
  675. .. function:: ugettext_lazy(message)
  676. .. function:: pgettext_lazy(context, message)
  677. Same as the non-lazy versions above, but using lazy execution.
  678. See :ref:`lazy translations documentation <lazy-translations>`.
  679. .. function:: gettext_noop(message)
  680. .. function:: ugettext_noop(message)
  681. Marks strings for translation but doesn't translate them now. This can be
  682. used to store strings in global variables that should stay in the base
  683. language (because they might be used externally) and will be translated
  684. later.
  685. .. function:: ngettext(singular, plural, number)
  686. .. function:: ungettext(singular, plural, number)
  687. Translates ``singular`` and ``plural`` and returns the appropriate string
  688. based on ``number``.
  689. .. function:: npgettext(context, singular, plural, number)
  690. Translates ``singular`` and ``plural`` and returns the appropriate string
  691. based on ``number`` and the ``context``.
  692. .. function:: ngettext_lazy(singular, plural, number)
  693. .. function:: ungettext_lazy(singular, plural, number)
  694. .. function:: npgettext_lazy(context, singular, plural, number)
  695. Same as the non-lazy versions above, but using lazy execution.
  696. See :ref:`lazy translations documentation <lazy-translations>`.
  697. .. function:: activate(language)
  698. Fetches the translation object for a given language and activates it as
  699. the current translation object for the current thread.
  700. .. function:: deactivate()
  701. Deactivates the currently active translation object so that further _ calls
  702. will resolve against the default translation object, again.
  703. .. function:: deactivate_all()
  704. Makes the active translation object a ``NullTranslations()`` instance.
  705. This is useful when we want delayed translations to appear as the original
  706. string for some reason.
  707. .. function:: override(language, deactivate=False)
  708. A Python context manager that uses
  709. :func:`django.utils.translation.activate` to fetch the translation object
  710. for a given language, activates it as the translation object for the
  711. current thread and reactivates the previous active language on exit.
  712. Optionally, it can simply deactivate the temporary translation on exit with
  713. :func:`django.utils.translation.deactivate` if the ``deactivate`` argument
  714. is ``True``. If you pass ``None`` as the language argument, a
  715. ``NullTranslations()`` instance is activated within the context.
  716. ``override`` is also usable as a function decorator.
  717. .. function:: check_for_language(lang_code)
  718. Checks whether there is a global language file for the given language
  719. code (e.g. 'fr', 'pt_BR'). This is used to decide whether a user-provided
  720. language is available.
  721. .. function:: get_language()
  722. Returns the currently selected language code. Returns ``None`` if
  723. translations are temporarily deactivated (by :func:`deactivate_all()` or
  724. when ``None`` is passed to :func:`override()`).
  725. .. function:: get_language_bidi()
  726. Returns selected language's BiDi layout:
  727. * ``False`` = left-to-right layout
  728. * ``True`` = right-to-left layout
  729. .. function:: get_language_from_request(request, check_path=False)
  730. Analyzes the request to find what language the user wants the system to
  731. show. Only languages listed in settings.LANGUAGES are taken into account.
  732. If the user requests a sublanguage where we have a main language, we send
  733. out the main language.
  734. If ``check_path`` is ``True``, the function first checks the requested URL
  735. for whether its path begins with a language code listed in the
  736. :setting:`LANGUAGES` setting.
  737. .. function:: get_supported_language_variant(lang_code, strict=False)
  738. .. versionadded:: 2.1
  739. Returns ``lang_code`` if it's in the :setting:`LANGUAGES` setting, possibly
  740. selecting a more generic variant. For example, ``'es'`` is returned if
  741. ``lang_code`` is ``'es-ar'`` and ``'es'`` is in :setting:`LANGUAGES` but
  742. ``'es-ar'`` isn't.
  743. If ``strict`` is ``False`` (the default), a country-specific variant may
  744. be returned when neither the language code nor its generic variant is found.
  745. For example, if only ``'es-co'`` is in :setting:`LANGUAGES`, that's
  746. returned for ``lang_code``\s like ``'es'`` and ``'es-ar'``. Those matches
  747. aren't returned if ``strict=True``.
  748. Raises :exc:`LookupError` if nothing is found.
  749. .. function:: to_locale(language)
  750. Turns a language name (en-us) into a locale name (en_US).
  751. .. function:: templatize(src)
  752. Turns a Django template into something that is understood by ``xgettext``.
  753. It does so by translating the Django translation tags into standard
  754. ``gettext`` function invocations.
  755. .. data:: LANGUAGE_SESSION_KEY
  756. Session key under which the active language for the current session is
  757. stored.