Fix a small typo in docs/upload_handling.txt
[django.git] / docs / unicode.txt
bloba2c4e7fbe6d8b4abc40a9402db2d1607435baa17
1 ======================
2 Unicode data in Django
3 ======================
5 **New in Django development version**
7 Django natively supports Unicode data everywhere. Providing your database can
8 somehow store the data, you can safely pass around Unicode strings to
9 templates, models and the database.
11 This document tells you what you need to know if you're writing applications
12 that use data or templates that are encoded in something other than ASCII.
14 Creating the database
15 =====================
17 Make sure your database is configured to be able to store arbitrary string
18 data. Normally, this means giving it an encoding of UTF-8 or UTF-16. If you use
19 a more restrictive encoding -- for example, latin1 (iso8859-1) -- you won't be
20 able to store certain characters in the database, and information will be lost.
22  * MySQL users, refer to the `MySQL manual`_ (section 10.3.2 for MySQL 5.1) for
23    details on how to set or alter the database character set encoding.
25  * PostgreSQL users, refer to the `PostgreSQL manual`_ (section 21.2.2 in
26    PostgreSQL 8) for details on creating databases with the correct encoding.
28  * SQLite users, there is nothing you need to do. SQLite always uses UTF-8
29    for internal encoding.
31 .. _MySQL manual: http://www.mysql.org/doc/refman/5.1/en/charset-database.html
32 .. _PostgreSQL manual: http://www.postgresql.org/docs/8.2/static/multibyte.html#AEN24104
34 All of Django's database backends automatically convert Unicode strings into
35 the appropriate encoding for talking to the database. They also automatically
36 convert strings retrieved from the database into Python Unicode strings. You
37 don't even need to tell Django what encoding your database uses: that is
38 handled transparently.
40 For more, see the section "The database API" below.
42 General string handling
43 =======================
45 Whenever you use strings with Django -- e.g., in database lookups, template
46 rendering or anywhere else -- you have two choices for encoding those strings.
47 You can use Unicode strings, or you can use normal strings (sometimes called
48 "bytestrings") that are encoded using UTF-8.
50 .. admonition:: Warning
52     A bytestring does not carry any information with it about its encoding.
53     For that reason, we have to make an assumption, and Django assumes that all
54     bytestrings are in UTF-8.
56     If you pass a string to Django that has been encoded in some other format,
57     things will go wrong in interesting ways. Usually, Django will raise a
58     ``UnicodeDecodeError`` at some point.
60 If your code only uses ASCII data, it's safe to use your normal strings,
61 passing them around at will, because ASCII is a subset of UTF-8.
63 Don't be fooled into thinking that if your ``DEFAULT_CHARSET`` setting is set
64 to something other than ``'utf-8'`` you can use that other encoding in your
65 bytestrings! ``DEFAULT_CHARSET`` only applies to the strings generated as
66 the result of template rendering (and e-mail). Django will always assume UTF-8
67 encoding for internal bytestrings. The reason for this is that the
68 ``DEFAULT_CHARSET`` setting is not actually under your control (if you are the
69 application developer). It's under the control of the person installing and
70 using your application -- and if that person chooses a different setting, your
71 code must still continue to work. Ergo, it cannot rely on that setting.
73 In most cases when Django is dealing with strings, it will convert them to
74 Unicode strings before doing anything else. So, as a general rule, if you pass
75 in a bytestring, be prepared to receive a Unicode string back in the result.
77 Translated strings
78 ------------------
80 Aside from Unicode strings and bytestrings, there's a third type of string-like
81 object you may encounter when using Django. The framework's
82 internationalization features introduce the concept of a "lazy translation" --
83 a string that has been marked as translated but whose actual translation result
84 isn't determined until the object is used in a string. This feature is useful
85 in cases where the translation locale is unknown until the string is used, even
86 though the string might have originally been created when the code was first
87 imported.
89 Normally, you won't have to worry about lazy translations. Just be aware that
90 if you examine an object and it claims to be a
91 ``django.utils.functional.__proxy__`` object, it is a lazy translation.
92 Calling ``unicode()`` with the lazy translation as the argument will generate a
93 Unicode string in the current locale.
95 For more details about lazy translation objects, refer to the
96 internationalization_ documentation.
98 .. _internationalization: ../i18n/#lazy-translation
100 Useful utility functions
101 ------------------------
103 Because some string operations come up again and again, Django ships with a few
104 useful functions that should make working with Unicode and bytestring objects
105 a bit easier.
107 Conversion functions
108 ~~~~~~~~~~~~~~~~~~~~
110 The ``django.utils.encoding`` module contains a few functions that are handy
111 for converting back and forth between Unicode and bytestrings.
113     * ``smart_unicode(s, encoding='utf-8', strings_only=False, errors='strict')``
114       converts its input to a Unicode string. The ``encoding`` parameter
115       specifies the input encoding. (For example, Django uses this internally
116       when processing form input data, which might not be UTF-8 encoded.) The
117       ``strings_only`` parameter, if set to True, will result in Python
118       numbers, booleans and ``None`` not being converted to a string (they keep
119       their original types). The ``errors`` parameter takes any of the values
120       that are accepted by Python's ``unicode()`` function for its error
121       handling.
123       If you pass ``smart_unicode()`` an object that has a ``__unicode__``
124       method, it will use that method to do the conversion.
126     * ``force_unicode(s, encoding='utf-8', strings_only=False, errors='strict')``
127       is identical to ``smart_unicode()`` in almost all cases. The difference
128       is when the first argument is a `lazy translation`_ instance. While
129       ``smart_unicode()`` preserves lazy translations, ``force_unicode()``
130       forces those objects to a Unicode string (causing the translation to
131       occur). Normally, you'll want to use ``smart_unicode()``. However,
132       ``force_unicode()`` is useful in template tags and filters that
133       absolutely *must* have a string to work with, not just something that can
134       be converted to a string.
136     * ``smart_str(s, encoding='utf-8', strings_only=False, errors='strict')``
137       is essentially the opposite of ``smart_unicode()``. It forces the first
138       argument to a bytestring. The ``strings_only`` parameter has the same
139       behavior as for ``smart_unicode()`` and ``force_unicode()``. This is
140       slightly different semantics from Python's builtin ``str()`` function,
141       but the difference is needed in a few places within Django's internals.
143 Normally, you'll only need to use ``smart_unicode()``. Call it as early as
144 possible on any input data that might be either Unicode or a bytestring, and
145 from then on, you can treat the result as always being Unicode.
147 .. _lazy translation: ../i18n/#lazy-translation
149 URI and IRI handling
150 ~~~~~~~~~~~~~~~~~~~~
152 Web frameworks have to deal with URLs (which are a type of URI_). One
153 requirement of URLs is that they are encoded using only ASCII characters.
154 However, in an international environment, you might need to construct a
155 URL from an IRI_ -- very loosely speaking, a URI that can contain Unicode
156 characters. Quoting and converting an IRI to URI can be a little tricky, so
157 Django provides some assistance.
159     * The function ``django.utils.encoding.iri_to_uri()`` implements the
160       conversion from IRI to URI as required by the specification (`RFC
161       3987`_).
163     * The functions ``django.utils.http.urlquote()`` and
164       ``django.utils.http.urlquote_plus()`` are versions of Python's standard
165       ``urllib.quote()`` and ``urllib.quote_plus()`` that work with non-ASCII
166       characters. (The data is converted to UTF-8 prior to encoding.)
168 These two groups of functions have slightly different purposes, and it's
169 important to keep them straight. Normally, you would use ``urlquote()`` on the
170 individual portions of the IRI or URI path so that any reserved characters
171 such as '&' or '%' are correctly encoded. Then, you apply ``iri_to_uri()`` to
172 the full IRI and it converts any non-ASCII characters to the correct encoded
173 values.
175 .. note::
176     Technically, it isn't correct to say that ``iri_to_uri()`` implements the
177     full algorithm in the IRI specification. It doesn't (yet) perform the
178     international domain name encoding portion of the algorithm.
180 The ``iri_to_uri()`` function will not change ASCII characters that are
181 otherwise permitted in a URL. So, for example, the character '%' is not
182 further encoded when passed to ``iri_to_uri()``. This means you can pass a
183 full URL to this function and it will not mess up the query string or anything
184 like that.
186 An example might clarify things here::
188     >>> urlquote(u'Paris & Orléans')
189     u'Paris%20%26%20Orl%C3%A9ans'
190     >>> iri_to_uri(u'/favorites/François/%s' % urlquote(u'Paris & Orléans'))
191     '/favorites/Fran%C3%A7ois/Paris%20%26%20Orl%C3%A9ans'
193 If you look carefully, you can see that the portion that was generated by
194 ``urlquote()`` in the second example was not double-quoted when passed to
195 ``iri_to_uri()``. This is a very important and useful feature. It means that
196 you can construct your IRI without worrying about whether it contains
197 non-ASCII characters and then, right at the end, call ``iri_to_uri()`` on the
198 result.
200 The ``iri_to_uri()`` function is also idempotent, which means the following is
201 always true::
203     iri_to_uri(iri_to_uri(some_string)) = iri_to_uri(some_string)
205 So you can safely call it multiple times on the same IRI without risking
206 double-quoting problems.
208 .. _URI: http://www.ietf.org/rfc/rfc2396.txt
209 .. _IRI: http://www.ietf.org/rfc/rfc3987.txt
210 .. _RFC 3987: IRI_
212 Models
213 ======
215 Because all strings are returned from the database as Unicode strings, model
216 fields that are character based (CharField, TextField, URLField, etc) will
217 contain Unicode values when Django retrieves data from the database. This
218 is *always* the case, even if the data could fit into an ASCII bytestring.
220 You can pass in bytestrings when creating a model or populating a field, and
221 Django will convert it to Unicode when it needs to.
223 Choosing between ``__str__()`` and ``__unicode__()``
224 ----------------------------------------------------
226 One consequence of using Unicode by default is that you have to take some care
227 when printing data from the model.
229 In particular, rather than giving your model a ``__str__()`` method, we
230 recommended you implement a ``__unicode__()`` method. In the ``__unicode__()``
231 method, you can quite safely return the values of all your fields without
232 having to worry about whether they fit into a bytestring or not. (The way
233 Python works, the result of ``__str__()`` is *always* a bytestring, even if you
234 accidentally try to return a Unicode object).
236 You can still create a ``__str__()`` method on your models if you want, of
237 course, but you shouldn't need to do this unless you have a good reason.
238 Django's ``Model`` base class automatically provides a ``__str__()``
239 implementation that calls ``__unicode__()`` and encodes the result into UTF-8.
240 This means you'll normally only need to implement a ``__unicode__()`` method
241 and let Django handle the coercion to a bytestring when required.
243 Taking care in ``get_absolute_url()``
244 -------------------------------------
246 URLs can only contain ASCII characters. If you're constructing a URL from
247 pieces of data that might be non-ASCII, be careful to encode the results in a
248 way that is suitable for a URL. The ``django.db.models.permalink()`` decorator
249 handles this for you automatically.
251 If you're constructing a URL manually (i.e., *not* using the ``permalink()``
252 decorator), you'll need to take care of the encoding yourself. In this case,
253 use the ``iri_to_uri()`` and ``urlquote()`` functions that were documented
254 above_. For example::
256     from django.utils.encoding import iri_to_uri
257     from django.utils.http import urlquote
259     def get_absolute_url(self):
260         url = u'/person/%s/?x=0&y=0' % urlquote(self.location)
261         return iri_to_uri(url)
263 This function returns a correctly encoded URL even if ``self.location`` is
264 something like "Jack visited Paris & Orléans". (In fact, the ``iri_to_uri()``
265 call isn't strictly necessary in the above example, because all the
266 non-ASCII characters would have been removed in quoting in the first line.)
268 .. _above: `URI and IRI handling`_
270 The database API
271 ================
273 You can pass either Unicode strings or UTF-8 bytestrings as arguments to
274 ``filter()`` methods and the like in the database API. The following two
275 querysets are identical::
277     qs = People.objects.filter(name__contains=u'Å')
278     qs = People.objects.filter(name__contains='\xc3\85') # UTF-8 encoding of Å
280 Templates
281 =========
283 You can use either Unicode or bytestrings when creating templates manually::
285         from django.template import Template
286         t1 = Template('This is a bytestring template.')
287         t2 = Template(u'This is a Unicode template.')
289 But the common case is to read templates from the filesystem, and this creates
290 a slight complication: not all filesystems store their data encoded as UTF-8.
291 If your template files are not stored with a UTF-8 encoding, set the ``FILE_CHARSET``
292 setting to the encoding of the files on disk. When Django reads in a template
293 file, it will convert the data from this encoding to Unicode. (``FILE_CHARSET``
294 is set to ``'utf-8'`` by default.)
296 The ``DEFAULT_CHARSET`` setting controls the encoding of rendered templates.
297 This is set to UTF-8 by default.
299 Template tags and filters
300 -------------------------
302 A couple of tips to remember when writing your own template tags and filters:
304     * Always return Unicode strings from a template tag's ``render()`` method
305       and from template filters.
307     * Use ``force_unicode()`` in preference to ``smart_unicode()`` in these
308       places. Tag rendering and filter calls occur as the template is being
309       rendered, so there is no advantage to postponing the conversion of lazy
310       translation objects into strings. It's easier to work solely with Unicode
311       strings at that point.
313 E-mail
314 ======
316 Django's e-mail framework (in ``django.core.mail``) supports Unicode
317 transparently. You can use Unicode data in the message bodies and any headers.
318 However, you're still obligated to respect the requirements of the e-mail
319 specifications, so, for example, e-mail addresses should use only ASCII
320 characters.
322 The following code example demonstrates that everything except e-mail addresses
323 can be non-ASCII::
325     from django.core.mail import EmailMessage
327     subject = u'My visit to Sør-Trøndelag'
328     sender = u'Arnbjörg Ráðormsdóttir <arnbjorg@example.com>'
329     recipients = ['Fred <fred@example.com']
330     body = u'...'
331     EmailMessage(subject, body, sender, recipients).send()
333 Form submission
334 ===============
336 HTML form submission is a tricky area. There's no guarantee that the
337 submission will include encoding information, which means the framework might
338 have to guess at the encoding of submitted data.
340 Django adopts a "lazy" approach to decoding form data. The data in an
341 ``HttpRequest`` object is only decoded when you access it. In fact, most of
342 the data is not decoded at all. Only the ``HttpRequest.GET`` and
343 ``HttpRequest.POST`` data structures have any decoding applied to them. Those
344 two fields will return their members as Unicode data. All other attributes and
345 methods of ``HttpRequest`` return data exactly as it was submitted by the
346 client.
348 By default, the ``DEFAULT_CHARSET`` setting is used as the assumed encoding
349 for form data. If you need to change this for a particular form, you can set
350 the ``encoding`` attribute on an ``HttpRequest`` instance. For example::
352     def some_view(request):
353         # We know that the data must be encoded as KOI8-R (for some reason).
354         request.encoding = 'koi8-r'
355         ...
357 You can even change the encoding after having accessed ``request.GET`` or
358 ``request.POST``, and all subsequent accesses will use the new encoding.
360 Most developers won't need to worry about changing form encoding, but this is
361 a useful feature for applications that talk to legacy systems whose encoding
362 you cannot control.
364 Django does not decode the data of file uploads, because that data is normally
365 treated as collections of bytes, rather than strings. Any automatic decoding
366 there would alter the meaning of the stream of bytes.