Perlengkapan Django¶
This document covers all stable modules in django.utils. Most of the
modules in django.utils are designed for internal use and only the
following parts can be considered stable and thus backwards compatible as per
the internal release deprecation policy.
django.utils.cache¶
This module contains helper functions for controlling HTTP caching. It does so
by managing the Vary header of responses. It includes functions to patch
the header of response objects directly and decorators that change functions to
do that header-patching themselves.
For information on the Vary header, see RFC 9110 Section 12.5.5.
Essentially, the Vary HTTP header defines which headers a cache should take
into account when building its cache key. Requests with the same path but
different header content for headers named in Vary need to get different
cache keys to prevent delivery of wrong content.
For example, internationalization middleware would
need to distinguish caches by the Accept-language header.
- patch_cache_control(response, **kwargs)[sumber]¶
- This function patches the - Cache-Controlheader by adding all keyword arguments to it. The transformation is as follows:- All keyword parameter names are turned to lowercase, and underscores are converted to hyphens. 
- If the value of a parameter is - True(exactly- True, not just a true value), only the parameter name is added to the header.
- All other parameters are added with their value, after applying - str()to it.
 
- get_max_age(response)[sumber]¶
- Returns the max-age from the response Cache-Control header as an integer (or - Noneif it wasn't found or wasn't an integer).
- patch_response_headers(response, cache_timeout=None)[sumber]¶
- Adds some useful headers to the given - HttpResponseobject:- Expires
- Cache-Control
 - Setiap kepala hanya ditambahkan jika belum disetel. - cache_timeoutis in seconds. The- CACHE_MIDDLEWARE_SECONDSsetting is used by default.
- add_never_cache_headers(response)[sumber]¶
- Adds an - Expiresheader to the current date/time.- Adds a - Cache-Control: max-age=0, no-cache, no-store, must-revalidate, privateheader to a response to indicate that a page should never be cached.- Setiap kepala hanya ditambahkan jika belum disetel. 
- patch_vary_headers(response, newheaders)[sumber]¶
- Adds (or updates) the - Varyheader in the given- HttpResponseobject.- newheadersis a list of header names that should be in- Vary. If headers contains an asterisk, then- Varyheader will consist of a single asterisk- '*', according to RFC 9110 Section 12.5.5. Otherwise, existing headers in- Varyaren't removed.
- get_cache_key(request, key_prefix=None, method='GET', cache=None)[sumber]¶
- Mengembalikan sebuah kunci cache pada jalur permintaan. Itu dapat digunakan di tahapan permintaan karena itu mengambil daftar dari kepala untuk diambil kedalam akun dari registrar jalur global dan menggunakan mereka untuk membangun sebuah kunci cache untuk memeriksa. - If there is no headerlist stored, the page needs to be rebuilt, so this function returns - None.
- learn_cache_key(request, response, cache_timeout=None, key_prefix=None, cache=None)[sumber]¶
- Learns what headers to take into account for some request path from the response object. It stores those headers in a global path registry so that later access to that path will know what headers to take into account without building the response object itself. The headers are named in the - Varyheader of the response, but we want to prevent response generation.- The list of headers to use for cache key generation is stored in the same cache as the pages themselves. If the cache ages some data out of the cache, this means that we have to build the response once to get at the Vary header and so at the list of headers to use for the cache key. 
django.utils.dateparse¶
The functions defined in this module share the following properties:
- They accept strings in ISO 8601 date/time formats (or some close alternatives) and return objects from the corresponding classes in Python's - datetimemodule.
- They raise - ValueErrorif their input is well formatted but isn't a valid date or time.
- They return - Noneif it isn't well formatted at all.
- They accept up to picosecond resolution in input, but they truncate it to microseconds, since that's what Python supports. 
- parse_date(value)[sumber]¶
- Mengurai string dan mengembalikan - datetime.date.
- parse_time(value)[sumber]¶
- Mengurai string dan mengembalikan - datetime.time.- UTC offsets aren't supported; if - valuedescribes one, the result is- None.
- parse_datetime(value)[sumber]¶
- Mengurai string dan mengembalikan - datetime.datetime.- UTC offsets are supported; if - valuedescribes one, the result's- tzinfoattribute is a- datetime.timezoneinstance.
- parse_duration(value)[sumber]¶
- Mengurai string dan mengembalikan - datetime.timedelta.- Expects data in the format - "DD HH:MM:SS.uuuuuu",- "DD HH:MM:SS,uuuuuu", or as specified by ISO 8601 (e.g.- P4DT1H15M20Swhich is equivalent to- 4 1:15:20) or PostgreSQL's day-time interval format (e.g.- 3 days 04:05:06).
django.utils.decorators¶
- method_decorator(decorator, name='')[sumber]¶
- Converts a function decorator into a method decorator. It can be used to decorate methods or classes; in the latter case, - nameis the name of the method to be decorated and is required.- decoratormay also be a list or tuple of functions. They are wrapped in reverse order so that the call order is the order in which the functions appear in the list/tuple.- Lihat decorating class based views untuk contoh penggunaan. 
- decorator_from_middleware(middleware_class)[sumber]¶
- Given a middleware class, returns a view decorator. This lets you use middleware functionality on a per-view basis. The middleware is created with no params passed. - It assumes middleware that's compatible with the old style of Django 1.9 and earlier (having methods like - process_request(),- process_exception(), and- process_response()).
- decorator_from_middleware_with_args(middleware_class)[sumber]¶
- Like - decorator_from_middleware, but returns a function that accepts the arguments to be passed to the middleware_class. For example, the- cache_page()decorator is created from the- CacheMiddlewarelike this:- cache_page = decorator_from_middleware_with_args(CacheMiddleware) @cache_page(3600) def my_view(request): pass 
- sync_only_middleware(middleware)[sumber]¶
- Marks a middleware as synchronous-only. (The default in Django, but this allows you to future-proof if the default ever changes in a future release.) 
- async_only_middleware(middleware)[sumber]¶
- Marks a middleware as asynchronous-only. Django will wrap it in an asynchronous event loop when it is called from the WSGI request path. 
- sync_and_async_middleware(middleware)[sumber]¶
- Marks a middleware as sync and async compatible, this allows to avoid converting requests. You must implement detection of the current request type to use this decorator. See asynchronous middleware documentation for details. 
django.utils.encoding¶
- smart_str(s, encoding='utf-8', strings_only=False, errors='strict')[sumber]¶
- Returns a - strobject representing arbitrary object- s. Treats bytestrings using the- encodingcodec.- If - strings_onlyis- True, don't convert (some) non-string-like objects.
- is_protected_type(obj)[sumber]¶
- Tentukan jika instance obyek adalah jenis dilindungi. - Objects of protected types are preserved as-is when passed to - force_str(strings_only=True).
- force_str(s, encoding='utf-8', strings_only=False, errors='strict')[sumber]¶
- Similar to - smart_str(), except that lazy instances are resolved to strings, rather than kept as lazy objects.- If - strings_onlyis- True, don't convert (some) non-string-like objects.
- smart_bytes(s, encoding='utf-8', strings_only=False, errors='strict')[sumber]¶
- Returns a bytestring version of arbitrary object - s, encoded as specified in- encoding.- If - strings_onlyis- True, don't convert (some) non-string-like objects.
- force_bytes(s, encoding='utf-8', strings_only=False, errors='strict')[sumber]¶
- Similar to - smart_bytes, except that lazy instances are resolved to bytestrings, rather than kept as lazy objects.- If - strings_onlyis- True, don't convert (some) non-string-like objects.
- iri_to_uri(iri)[sumber]¶
- Convert an Internationalized Resource Identifier (IRI) portion to a URI portion that is suitable for inclusion in a URL. - This is the algorithm from section 3.1 of RFC 3987 Section 3.1, slightly simplified since the input is assumed to be a string rather than an arbitrary byte stream. - Takes an IRI (string or UTF-8 bytes) and returns a string containing the encoded result. 
- uri_to_iri(uri)[sumber]¶
- Merubah Uniform Resource Identifier menjadi Internationalized Resource Identifier. - Ini adalah sebuah algoritma dari bagian 3.2 dari RFC 3987 Section 3.2. - Takes a URI in ASCII bytes and returns a string containing the encoded result. 
- filepath_to_uri(path)[sumber]¶
- Convert a file system path to a URI portion that is suitable for inclusion in a URL. The path is assumed to be either UTF-8 bytes, string, or a - Path.- This method will encode certain characters that would normally be recognized as special characters for URIs. Note that this method does not encode the ' character, as it is a valid character within URIs. See - encodeURIComponent()JavaScript function for more details.- Returns an ASCII string containing the encoded result. 
django.utils.feedgenerator¶
Sample usage:
>>> from django.utils import feedgenerator
>>> feed = feedgenerator.Rss201rev2Feed(
...     title="Poynter E-Media Tidbits",
...     link="https://www.poynter.org/tag/e-media-tidbits/",
...     description="A group blog by the sharpest minds in online media/journalism/publishing.",
...     language="en",
... )
>>> feed.add_item(
...     title="Hello",
...     link="https://www.holovaty.com/test/",
...     description="Testing.",
... )
>>> with open("test.rss", "w") as fp:
...     feed.write(fp, "utf-8")
...
For simplifying the selection of a generator use feedgenerator.DefaultFeed
which is currently Rss201rev2Feed
Untuk pengertian dari versi berbeda dari RSS, lihat https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004/02/04/incompatible-rss
- get_tag_uri(url, date)[sumber]¶
- Membuat TagURI. - Lihat https://web.archive.org/web/20110514113830/http://diveintomark.org/archives/2004/05/28/howto-atom-id 
Enclosure¶
RssFeed¶
Rss201rev2Feed¶
- class Rss201rev2Feed(RssFeed)[sumber]¶
- Specifikasi: https://cyber.harvard.edu/rss/rss.html 
RssUserland091Feed¶
- class RssUserland091Feed(RssFeed)[sumber]¶
- Spesifikasi: http://backend.userland.com/rss091 
Atom1Feed¶
django.utils.functional¶
- class cached_property(func)[sumber]¶
- The - @cached_propertydecorator caches the result of a method with a single- selfargument as a property. The cached result will persist as long as the instance does, so if the instance is passed around and the function subsequently invoked, the cached result will be returned.- Consider a typical case, where a view might need to call a model's method to perform some computation, before placing the model instance into the context, where the template might invoke the method once more: - # the model class Person(models.Model): def friends(self): # expensive computation ... return friends # in the view: if person.friends(): ... - Dan dalam cetakan anda akan miliki: - {% for friend in person.friends %} - Here, - friends()will be called twice. Since the instance- personin the view and the template are the same, decorating the- friends()method with- @cached_propertycan avoid that:- from django.utils.functional import cached_property class Person(models.Model): @cached_property def friends(self): ... - Note that as the method is now a property, in Python code it will need to be accessed appropriately: - # in the view: if person.friends: ... - The cached value can be treated like an ordinary attribute of the instance: - # clear it, requiring re-computation next time it's called del person.friends # or delattr(person, "friends") # set a value manually, that will persist on the instance until cleared person.friends = ["Huckleberry Finn", "Tom Sawyer"] - Because of the way the descriptor protocol works, using - del(or- delattr) on a- cached_propertythat hasn't been accessed raises- AttributeError.- As well as offering potential performance advantages, - @cached_propertycan ensure that an attribute's value does not change unexpectedly over the life of an instance. This could occur with a method whose computation is based on- datetime.now(), or if a change were saved to the database by some other process in the brief interval between subsequent invocations of a method on the same instance.- You can make cached properties of methods. For example, if you had an expensive - get_friends()method and wanted to allow calling it without retrieving the cached value, you could write:- friends = cached_property(get_friends) - While - person.get_friends()will recompute the friends on each call, the value of the cached property will persist until you delete it as described above:- x = person.friends # calls first time y = person.get_friends() # calls again z = person.friends # does not call x is z # is True 
- class classproperty(method=None)[sumber]¶
- Similar to - @classmethod, the- @classpropertydecorator converts the result of a method with a single- clsargument into a property that can be accessed directly from the class.
- keep_lazy(func, *resultclasses)[sumber]¶
- Django menawarkan banyak fungsi-fungsi kegunaan (khususnya dalam - django.utils) yang mengambil sebuah string sebagai argumen pertama mereka dan melakukan sesuatu ke string itu. Fungsi-fungsi ini digunakan oleh penyaring cetakan sama halnya langsung dalam kode lain.- If you write your own similar functions and deal with translations, you'll face the problem of what to do when the first argument is a lazy translation object. You don't want to convert it to a string immediately, because you might be using this function outside of a view (and hence the current thread's locale setting will not be correct). - For cases like this, use the - django.utils.functional.keep_lazy()decorator. It modifies the function so that if it's called with a lazy translation as one of its arguments, the function evaluation is delayed until it needs to be converted to a string.- Sebagai contoh: - from django.utils.functional import keep_lazy, keep_lazy_text def fancy_utility_function(s, *args, **kwargs): # Do some conversion on string 's' ... fancy_utility_function = keep_lazy(str)(fancy_utility_function) # Or more succinctly: @keep_lazy(str) def fancy_utility_function(s, *args, **kwargs): ... - The - keep_lazy()decorator takes a number of extra arguments (- *args) specifying the type(s) that the original function can return. A common use case is to have functions that return text. For these, you can pass the- strtype to- keep_lazy(or use the- keep_lazy_text()decorator described in the next section).- Menggunakan penghias ini berarti anda dapat menulis fungsi anda dan menganggap bahwa masukan adalah string yang sesuai, kemudian tambah dukungan untuk obyek terjemahan lazy pada akhirnya. 
- keep_lazy_text(func)[sumber]¶
- Sebuah jalan pintas untuk - keep_lazy(str)(func).- If you have a function that returns text and you want to be able to take lazy arguments while delaying their evaluation, you can use this decorator: - from django.utils.functional import keep_lazy, keep_lazy_text # Our previous example was: @keep_lazy(str) def fancy_utility_function(s, *args, **kwargs): ... # Which can be rewritten as: @keep_lazy_text def fancy_utility_function(s, *args, **kwargs): ... 
django.utils.html¶
Usually you should build up HTML using Django's templates to make use of its
autoescape mechanism, using the utilities in django.utils.safestring
where appropriate. This module provides some additional low level utilities for
escaping HTML.
- escape(text)[sumber]¶
- Returns the given text with ampersands, quotes and angle brackets encoded for use in HTML. The input is first coerced to a string and the output has - mark_safe()applied.
- conditional_escape(text)[sumber]¶
- Similar to - escape(), except that it doesn't operate on preescaped strings, so it will not double escape.
- format_html(format_string, *args, **kwargs)[sumber]¶
- This is similar to - str.format(), except that it is appropriate for building up HTML fragments. The first argument- format_stringis not escaped but all other args and kwargs are passed through- conditional_escape()before being passed to- str.format(). Finally, the output has- mark_safe()applied.- For the case of building up small HTML fragments, this function is to be preferred over string interpolation using - %or- str.format()directly, because it applies escaping to all arguments - just like the template system applies escaping by default.- Jadi, daripada menulis: - mark_safe( "%s <b>%s</b> %s" % ( some_html, escape(some_text), escape(some_other_text), ) ) - Sebaiknya anda gunakan: - format_html( "{} <b>{}</b> {}", mark_safe(some_html), some_text, some_other_text, ) - Ini mempunyai keuntungan bahwa anda tidak butuh memberlakukan salinan - escape()pada setiap argumen dan resiko sebuah kesalahan dan kerentanan XSS jika anda melupakan satu.- Note that although this function uses - str.format()to do the interpolation, some of the formatting options provided by- str.format()(e.g. number formatting) will not work, since all arguments are passed through- conditional_escape()which (ultimately) calls- force_str()on the values.- Deprecated since version 5.0: Support for calling - format_html()without passing args or kwargs is deprecated.
- format_html_join(sep, format_string, args_generator)[sumber]¶
- A wrapper of - format_html(), for the common case of a group of arguments that need to be formatted using the same format string, and then joined using- sep.- sepis also passed through- conditional_escape().- args_generatorshould be an iterator that returns the sequence of- argsthat will be passed to- format_html(). For example:- format_html_join("\n", "<li>{} {}</li>", ((u.first_name, u.last_name) for u in users)) 
- json_script(value, element_id=None, encoder=None)[sumber]¶
- Escapes all HTML/XML special characters with their Unicode escapes, so value is safe for use with JavaScript. Also wraps the escaped JSON in a - <script>tag. If the- element_idparameter is not- None, the- <script>tag is given the passed id. For example:- >>> json_script({"hello": "world"}, element_id="hello-data") '<script id="hello-data" type="application/json">{"hello": "world"}</script>' - encoder, yang awalan pada- django.core.serializers.json.DjangoJSONEncoder, akan digunakan untuk menserialkan data. Lihat JSON serialization untuk rincian lebih tentang penserial ini.
- strip_tags(value)[sumber]¶
- Mencoba memindahkan apapun yang terlihat seperti etiket HTML dari string, yaitu apapun mengandung dalam - <>.- Absolutely NO guarantee is provided about the resulting string being HTML safe. So NEVER mark safe the result of a - strip_tagcall without escaping it first, for example with- escape().- Sebagai contoh: - strip_tags(value) - Jika - valueadalah- "<b>Joel</b> <button>is</button> a <span>slug</span>"nilai balikan akan menjadi- "Joel is a slug".- If you are looking for a more robust solution, consider using a third-party HTML sanitizing tool. 
- html_safe()[sumber]¶
- Metode - __html__()pada kelas membantu cetakan bukan-Django mengenali kelas-kelas yang keluarannya tidak membutuhkan pelolosan HTML.- This decorator defines the - __html__()method on the decorated class by wrapping- __str__()in- mark_safe(). Ensure the- __str__()method does indeed return text that doesn't require HTML escaping.
django.utils.http¶
- urlencode(query, doseq=False)[sumber]¶
- Versi dari fungsi - urllib.parse.urlencode()python yang dapat beroperasi pada- MultiValueDictdan nilai-nilai bukan-string.
- http_date(epoch_seconds=None)[sumber]¶
- Formats the time to match the RFC 1123 Section 5.2.14 date format as specified by HTTP RFC 9110 Section 5.6.7. - Accepts a floating point number expressed in seconds since the epoch in UTC--such as that outputted by - time.time(). If set to- None, defaults to the current time.- Outputs a string in the format - Wdy, DD Mon YYYY HH:MM:SS GMT.
- content_disposition_header(as_attachment, filename)[sumber]¶
- Constructs a - Content-DispositionHTTP header value from the given- filenameas specified by RFC 6266. Returns- Noneif- as_attachmentis- Falseand- filenameis- None, otherwise returns a string suitable for the- Content-DispositionHTTP header.
django.utils.module_loading¶
Fungsi-fungsi untuk bekerja dengan modeul-modul Python.
- import_string(dotted_path)[sumber]¶
- Imports a dotted module path and returns the attribute/class designated by the last name in the path. Raises - ImportErrorif the import failed. For example:- from django.utils.module_loading import import_string ValidationError = import_string("django.core.exceptions.ValidationError") - setara pada: - from django.core.exceptions import ValidationError 
django.utils.safestring¶
Functions and classes for working with "safe strings": strings that can be displayed safely without further escaping in HTML. Marking something as a "safe string" means that the producer of the string has already turned characters that should not be interpreted by the HTML engine (e.g. '<') into the appropriate entities.
- class SafeString[sumber]¶
- A - strsubclass that has been specifically marked as "safe" (requires no further escaping) for HTML output purposes.
- mark_safe(s)[sumber]¶
- Explicitly mark a string as safe for (HTML) output purposes. The returned object can be used everywhere a string is appropriate. - Can be called multiple times on a single string. - Can also be used as a decorator. - For building up fragments of HTML, you should normally be using - django.utils.html.format_html()instead.- String marked safe will become unsafe again if modified. For example: - >>> mystr = "<b>Hello World</b> " >>> mystr = mark_safe(mystr) >>> type(mystr) <class 'django.utils.safestring.SafeString'> >>> mystr = mystr.strip() # removing whitespace >>> type(mystr) <type 'str'> 
django.utils.text¶
- format_lazy(format_string, *args, **kwargs)¶
- A version of - str.format()for when- format_string,- args, and/or- kwargscontain lazy objects. The first argument is the string to be formatted. For example:- from django.utils.text import format_lazy from django.utils.translation import pgettext_lazy urlpatterns = [ path( format_lazy("{person}/<int:pk>/", person=pgettext_lazy("URL", "person")), PersonDetailView.as_view(), ), ] - This example allows translators to translate part of the URL. If "person" is translated to "persona", the regular expression will match - persona/(?P<pk>\d+)/$, e.g.- persona/5/.
- slugify(value, allow_unicode=False)[sumber]¶
- Merubah string menjadi sebuah tanda siput URL dengan: - Converting to ASCII if - allow_unicodeis- False(the default).
- Merubah ke huruf kecil. 
- Removing characters that aren't alphanumerics, underscores, hyphens, or whitespace. 
- Replacing any whitespace or repeated dashes with single dashes. 
- Removing leading and trailing whitespace, dashes, and underscores. 
 - Sebagai contoh: - >>> slugify(" Joel is a slug ") 'joel-is-a-slug' - If you want to allow Unicode characters, pass - allow_unicode=True. For example:- >>> slugify("你好 World", allow_unicode=True) '你好-world' 
django.utils.timezone¶
- get_fixed_timezone(offset)[sumber]¶
- Returns a - tzinfoinstance that represents a time zone with a fixed offset from UTC.- offsetis a- datetime.timedeltaor an integer number of minutes. Use positive values for time zones east of UTC and negative values for west of UTC.
- get_default_timezone()[sumber]¶
- Returns a - tzinfoinstance that represents the default time zone.
- get_default_timezone_name()[sumber]¶
- Returns the name of the default time zone. 
- get_current_timezone()[sumber]¶
- Returns a - tzinfoinstance that represents the current time zone.
- get_current_timezone_name()[sumber]¶
- Returns the name of the current time zone. 
- activate(timezone)[sumber]¶
- Sets the current time zone. The - timezoneargument must be an instance of a- tzinfosubclass or a time zone name.
- deactivate()[sumber]¶
- Tidak disetel current time zone. 
- override(timezone)[sumber]¶
- This is a Python context manager that sets the current time zone on entry with - activate(), and restores the previously active time zone on exit. If the- timezoneargument is- None, the current time zone is unset on entry with- deactivate()instead.- overrideis also usable as a function decorator.
- localtime(value=None, timezone=None)[sumber]¶
- Converts an aware - datetimeto a different time zone, by default the current time zone.- Ketika - valuedihilangkan, itu awalan pada- now().- Fungsi ini tidak bekerja pada datetime yang tidak dibuat-buat., gunakan - make_aware()sebagai gantinya.
- localdate(value=None, timezone=None)[sumber]¶
- Uses - localtime()to convert an aware- datetimeto a- date()in a different time zone, by default the current time zone.- Ketika - valuedihilangkan, itu awalan pada- now().- Fungsi ini tidak bekerja pada datetime yang tidak dibuat-buat. 
- now()[sumber]¶
- Returns a - datetimethat represents the current point in time. Exactly what's returned depends on the value of- USE_TZ:- If - USE_TZis- False, this will be a naive datetime (i.e. a datetime without an associated timezone) that represents the current time in the system's local timezone.
- If - USE_TZis- True, this will be an aware datetime representing the current time in UTC. Note that- now()will always return times in UTC regardless of the value of- TIME_ZONE; you can use- localtime()to get the time in the current time zone.
 
- is_aware(value)[sumber]¶
- Returns - Trueif- valueis aware,- Falseif it is naive. This function assumes that- valueis a- datetime.
- is_naive(value)[sumber]¶
- Returns - Trueif- valueis naive,- Falseif it is aware. This function assumes that- valueis a- datetime.
- make_aware(value, timezone=None)[sumber]¶
- Returns an aware - datetimethat represents the same point in time as- valuein- timezone,- valuebeing a naive- datetime. If- timezoneis set to- None, it defaults to the current time zone.
- make_naive(value, timezone=None)[sumber]¶
- Returns a naive - datetimethat represents in- timezonethe same point in time as- value,- valuebeing an aware- datetime. If- timezoneis set to- None, it defaults to the current time zone.
django.utils.translation¶
Untuk obrolan lengkap pada penggunakan dari berikut lihat translation documentation.
- pgettext(context, message)[sumber]¶
- Menterjemahkan - messagememberikan- contectdan mengembalikan itu sebagai sebuah string.- Untuk informasi lebih, lihat Contextual markers. 
- gettext_lazy(message)¶
- pgettext_lazy(context, message)¶
- Same as the non-lazy versions above, but using lazy execution. 
- gettext_noop(message)[sumber]¶
- Marks strings for translation but doesn't translate them now. This can be used to store strings in global variables that should stay in the base language (because they might be used externally) and will be translated later. 
- ngettext(singular, plural, number)[sumber]¶
- Translates - singularand- pluraland returns the appropriate string based on- number.
- npgettext(context, singular, plural, number)[sumber]¶
- Translates - singularand- pluraland returns the appropriate string based on- numberand the- context.
- npgettext_lazy(context, singular, plural, number)[sumber]¶
- Same as the non-lazy versions above, but using lazy execution. 
- activate(language)[sumber]¶
- Fetches the translation object for a given language and activates it as the current translation object for the current thread. 
- deactivate()[sumber]¶
- Deactivates the currently active translation object so that further _ calls will resolve against the default translation object, again. 
- deactivate_all()[sumber]¶
- Makes the active translation object a - NullTranslations()instance. This is useful when we want delayed translations to appear as the original string for some reason.
- override(language, deactivate=False)[sumber]¶
- A Python context manager that uses - django.utils.translation.activate()to fetch the translation object for a given language, activates it as the translation object for the current thread and reactivates the previous active language on exit. Optionally, it can deactivate the temporary translation on exit with- django.utils.translation.deactivate()if the- deactivateargument is- True. If you pass- Noneas the language argument, a- NullTranslations()instance is activated within the context.- overrideis also usable as a function decorator.
- check_for_language(lang_code)[sumber]¶
- Checks whether there is a global language file for the given language code (e.g. 'fr', 'pt_BR'). This is used to decide whether a user-provided language is available. 
- get_language()[sumber]¶
- Returns the currently selected language code. Returns - Noneif translations are temporarily deactivated (by- deactivate_all()or when- Noneis passed to- override()).
- get_language_bidi()[sumber]¶
- Returns selected language's BiDi layout: - False= tata letak kiri-ke-kanan
- True= tata letak kanan-ke-kiri
 
- get_language_from_request(request, check_path=False)[sumber]¶
- Analyzes the request to find what language the user wants the system to show. Only languages listed in settings.LANGUAGES are taken into account. If the user requests a sublanguage where we have a main language, we send out the main language. - If - check_pathis- True, the function first checks the requested URL for whether its path begins with a language code listed in the- LANGUAGESsetting.
- get_supported_language_variant(lang_code, strict=False)[sumber]¶
- Returns - lang_codeif it's in the- LANGUAGESsetting, possibly selecting a more generic variant. For example,- 'es'is returned if- lang_codeis- 'es-ar'and- 'es'is in- LANGUAGESbut- 'es-ar'isn't.- lang_codehas a maximum accepted length of 500 characters. A- LookupErroris raised if- lang_codeexceeds this limit and- strictis- True, or if there is no generic variant and- strictis- False.- If - strictis- False(the default), a country-specific variant may be returned when neither the language code nor its generic variant is found. For example, if only- 'es-co'is in- LANGUAGES, that's returned for- lang_codes like- 'es'and- 'es-ar'. Those matches aren't returned if- strict=True.- Memunculkan - LookupErrorjika tidak ditemukan apapun.Changed in Django 4.2.15:- In older versions, - lang_codevalues over 500 characters were processed without raising a- LookupError.