diff --git a/docs/howto/outputting-csv.txt b/docs/howto/outputting-csv.txt
index 169114f..b406a27 100644
|
a
|
b
|
mention:
|
| 56 | 56 | about escaping strings with quotes or commas in them. Just pass |
| 57 | 57 | ``writerow()`` your raw strings, and it'll do the right thing. |
| 58 | 58 | |
| | 59 | Handling Unicode |
| | 60 | ~~~~~~~~~~~~~~~~ |
| | 61 | |
| | 62 | Python's ``csv`` module expects to be passed strings, not Unicode objects, but |
| | 63 | strings read from ``HttpRequest`` and databases in Django will typically be |
| | 64 | Unicode. There are a few options for handling this. |
| | 65 | |
| | 66 | * Manually encode all Unicode objects before saving. This is, obviously, |
| | 67 | a hassle and error-prone. |
| | 68 | |
| | 69 | * Use the ``UnicodeWriter`` provided in the `csv module's examples section`_. |
| | 70 | |
| | 71 | * Use the `python-unicodecsv module`_, which aims to be a drop-in |
| | 72 | replacement for ``csv`` that does gracefully handle Unicode. |
| | 73 | |
| | 74 | .. _`csv module's examples section`: http://docs.python.org/library/csv.html#examples |
| | 75 | .. _`python-unicodecsv module`: https://github.com/jdunck/python-unicodecsv |
| | 76 | |
| 59 | 77 | Using the template system |
| 60 | 78 | ========================= |
| 61 | 79 | |