Mercurial > babel > old > mirror
annotate doc/dates.txt @ 480:86c4fe7de244
Fix typos.
author | jruigrok |
---|---|
date | Sun, 11 Apr 2010 08:43:36 +0000 |
parents | ff9a6a37eb72 |
children |
rev | line source |
---|---|
4 | 1 .. -*- mode: rst; encoding: utf-8 -*- |
2 | |
126 | 3 =============== |
4 Date Formatting | |
5 =============== | |
4 | 6 |
7 | |
8 .. contents:: Contents | |
9 :depth: 2 | |
10 .. sectnum:: | |
11 | |
12 | |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
13 When working with date and time information in Python, you commonly use the |
100
3eaa652b1216
Add `--without-apidocs` switch to `build_doc` command for quicker doc-edit/review cycles.
cmlenz
parents:
42
diff
changeset
|
14 classes ``date``, ``datetime`` and/or ``time`` from the `datetime`_ package. |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
15 Babel provides functions for locale-specific formatting of those objects in its |
42 | 16 ``dates`` module: |
17 | |
100
3eaa652b1216
Add `--without-apidocs` switch to `build_doc` command for quicker doc-edit/review cycles.
cmlenz
parents:
42
diff
changeset
|
18 .. _`datetime`: http://docs.python.org/lib/module-datetime.html |
3eaa652b1216
Add `--without-apidocs` switch to `build_doc` command for quicker doc-edit/review cycles.
cmlenz
parents:
42
diff
changeset
|
19 |
42 | 20 .. code-block:: pycon |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
21 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
22 >>> from datetime import date, datetime, time |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
23 >>> from babel.dates import format_date, format_datetime, format_time |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
24 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
25 >>> d = date(2007, 4, 1) |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
26 >>> format_date(d, locale='en') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
27 u'Apr 1, 2007' |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
28 >>> format_date(d, locale='de_DE') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
29 u'01.04.2007' |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
30 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
31 As this example demonstrates, Babel will automatically choose a date format |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
32 that is appropriate for the requested locale. |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
33 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
34 The ``format_*()`` functions also accept an optional ``format`` argument, which |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
35 allows you to choose between one of four format variations: |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
36 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
37 * ``short``, |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
38 * ``medium`` (the default), |
22 | 39 * ``long``, and |
40 * ``full``. | |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
41 |
42 | 42 For example: |
43 | |
44 .. code-block:: pycon | |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
45 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
46 >>> format_date(d, format='short', locale='en') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
47 u'4/1/07' |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
48 >>> format_date(d, format='long', locale='en') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
49 u'April 1, 2007' |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
50 >>> format_date(d, format='full', locale='en') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
51 u'Sunday, April 1, 2007' |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
52 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
53 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
54 Pattern Syntax |
126 | 55 ============== |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
56 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
57 While Babel makes it simple to use the appropriate date/time format for a given |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
58 locale, you can also force it to use custom patterns. Note that Babel uses |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
59 different patterns for specifying number and date formats compared to the |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
60 Python equivalents (such as ``time.strftime()``), which have mostly been |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
61 inherited from C and POSIX. The patterns used in Babel are based on the |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
62 `Locale Data Markup Language specification`_ (LDML), which defines them as |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
63 follows: |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
64 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
65 A date/time pattern is a string of characters, where specific strings of |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
66 characters are replaced with date and time data from a calendar when formatting |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
67 or used to generate data for a calendar when parsing. […] |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
68 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
69 Characters may be used multiple times. For example, if ``y`` is used for the |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
70 year, ``yy`` might produce "99", whereas ``yyyy`` produces "1999". For most |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
71 numerical fields, the number of characters specifies the field width. For |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
72 example, if ``h`` is the hour, ``h`` might produce "5", but ``hh`` produces |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
73 "05". For some characters, the count specifies whether an abbreviated or full |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
74 form should be used […] |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
75 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
76 Two single quotes represent a literal single quote, either inside or outside |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
77 single quotes. Text within single quotes is not interpreted in any way (except |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
78 for two adjacent single quotes). |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
79 |
42 | 80 For example: |
81 | |
82 .. code-block:: pycon | |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
83 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
84 >>> d = date(2007, 4, 1) |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
85 >>> format_date(d, "EEE, MMM d, ''yy", locale='en') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
86 u"Sun, Apr 1, '07" |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
87 >>> format_date(d, "EEEE, d.M.yyyy", locale='de') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
88 u'Sonntag, 1.4.2007' |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
89 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
90 >>> t = time(15, 30) |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
91 >>> format_time(t, "hh 'o''clock' a", locale='en') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
92 u"03 o'clock PM" |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
93 >>> format_time(t, 'H:mm a', locale='de') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
94 u'15:30 nachm.' |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
95 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
96 >>> dt = datetime(2007, 4, 1, 15, 30) |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
97 >>> format_datetime(dt, "yyyyy.MMMM.dd GGG hh:mm a", locale='en') |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
98 u'02007.April.01 AD 03:30 PM' |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
99 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
100 The syntax for custom datetime format patterns is described in detail in the |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
101 the `Locale Data Markup Language specification`_. The following table is just a |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
102 relatively brief overview. |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
103 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
104 .. _`Locale Data Markup Language specification`: http://unicode.org/reports/tr35/#Date_Format_Patterns |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
105 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
106 Date Fields |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
107 ----------- |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
108 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
109 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
110 | Field | Symbol | Description | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
111 +==========+========+========================================================+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
112 | Era | ``G`` | Replaced with the era string for the current date. One | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
113 | | | to three letters for the abbreviated form, four | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
114 | | | lettersfor the long form, five for the narrow form | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
115 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
116 | Year | ``y`` | Replaced by the year. Normally the length specifies | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
117 | | | the padding, but for two letters it also specifies the | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
118 | | | maximum length. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
119 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
120 | | ``Y`` | Same as ``y`` but uses the ISO year-week calendar. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
121 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
122 | | ``u`` | ?? | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
123 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
124 | Quarter | ``Q`` | Use one or two for the numerical quarter, three for | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
125 | | | the abbreviation, or four for the full name. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
126 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
127 | | ``q`` | Use one or two for the numerical quarter, three for | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
128 | | | the abbreviation, or four for the full name. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
129 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
130 | Month | ``M`` | Use one or two for the numerical month, three for the | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
131 | | | abbreviation, or four for the full name, or five for | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
132 | | | the narrow name. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
133 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
134 | | ``L`` | Use one or two for the numerical month, three for the | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
135 | | | abbreviation, or four for the full name, or 5 for the | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
136 | | | narrow name. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
137 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
138 | Week | ``w`` | Week of year. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
139 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
140 | | ``W`` | Week of month. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
141 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
142 | Day | ``d`` | Day of month. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
143 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
144 | | ``D`` | Day of year. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
145 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
146 | | ``F`` | Day of week in month. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
147 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
148 | | ``g`` | ?? | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
149 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
150 | Week day | ``E`` | Day of week. Use one through three letters for the | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
151 | | | short day, or four for the full name, or five for the | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
152 | | | narrow name. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
153 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
154 | | ``e`` | Local day of week. Same as E except adds a numeric | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
155 | | | value that will depend on the local starting day of | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
156 | | | the week, using one or two letters. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
157 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
158 | | ``c`` | ?? | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
159 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
160 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
161 Time Fields |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
162 ----------- |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
163 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
164 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
165 | Field | Symbol | Description | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
166 +==========+========+========================================================+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
167 | Period | ``a`` | AM or PM | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
168 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
169 | Hour | ``h`` | Hour [1-12]. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
170 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
171 | | ``H`` | Hour [0-23]. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
172 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
173 | | ``K`` | Hour [0-11]. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
174 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
175 | | ``k`` | Hour [1-24]. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
176 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
177 | Minute | ``m`` | Use one or two for zero places padding. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
178 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
179 | Second | ``s`` | Use one or two for zero places padding. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
180 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
181 | | ``S`` | Fractional second, rounds to the count of letters. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
182 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
183 | | ``A`` | Milliseconds in day. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
184 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
185 | Timezone | ``z`` | Use one to three letters for the short timezone or | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
186 | | | four for the full name. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
187 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
188 | | ``Z`` | Use one to three letters for RFC 822, four letters for | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
189 | | | GMT format. | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
190 | +--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
191 | | ``v`` | Use one letter for short wall (generic) time, four for | |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
192 | | | long wall time. | |
235
d0cd235ede46
Upgraded to CLDR 1.5 and improved timezone formatting.
cmlenz
parents:
126
diff
changeset
|
193 | +--------+--------------------------------------------------------+ |
d0cd235ede46
Upgraded to CLDR 1.5 and improved timezone formatting.
cmlenz
parents:
126
diff
changeset
|
194 | | ``V`` | Same as ``z``, except that timezone abbreviations | |
d0cd235ede46
Upgraded to CLDR 1.5 and improved timezone formatting.
cmlenz
parents:
126
diff
changeset
|
195 | | | should be used regardless of whether they are in | |
d0cd235ede46
Upgraded to CLDR 1.5 and improved timezone formatting.
cmlenz
parents:
126
diff
changeset
|
196 | | | common use by the locale. | |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
197 +----------+--------+--------------------------------------------------------+ |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
198 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
199 |
396
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
200 Time Delta Formatting |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
201 ===================== |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
202 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
203 In addition to providing functions for formatting localized dates and times, |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
204 the ``babel.dates`` module also provides a function to format the difference |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
205 between two times, called a ''time delta''. These are usually represented as |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
206 ``datetime.timedelta`` objects in Python, and it's also what you get when you |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
207 subtract one ``datetime`` object from an other. |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
208 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
209 The ``format_timedelta`` function takes a ``timedelta`` object and returns a |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
210 human-readable representation. This happens at the cost of precision, as it |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
211 chooses only the most significant unit (such as year, week, or hour) of the |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
212 difference, and displays that: |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
213 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
214 .. code-block:: pycon |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
215 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
216 >>> from datetime import timedelta |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
217 >>> from babel.dates import format_timedelta |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
218 >>> delta = timedelta(days=6) |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
219 >>> format_timedelta(delta, locale='en_US') |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
220 u'1 week' |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
221 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
222 The resulting strings are based from the CLDR data, and are properly |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
223 pluralized depending on the plural rules of the locale and the calculated |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
224 number of units. |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
225 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
226 The function provides parameters for you to influence how this most significant |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
227 unit is chosen: with ``threshold`` you set the value after which the |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
228 presentation switches to the next larger unit, and with ``granularity`` you |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
229 can limit the smallest unit to display: |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
230 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
231 .. code-block:: pycon |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
232 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
233 >>> delta = timedelta(days=6) |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
234 >>> format_timedelta(delta, threshold=1.2, locale='en_US') |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
235 u'6 days' |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
236 >>> format_timedelta(delta, granularity='month', locale='en_US') |
397
ff9a6a37eb72
The `format_timedelta` function now returns, for example, ?1 day? instead of ?0 days? if the granularity is `day` and the delta is less than a day but greater than zero.
cmlenz
parents:
396
diff
changeset
|
237 u'1 month' |
396
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
238 |
45a5b2266001
Doc improvements for the new `format_timedelta` function.
cmlenz
parents:
257
diff
changeset
|
239 |
257
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
240 Time-zone Support |
126 | 241 ================= |
31 | 242 |
33 | 243 Many of the verbose time formats include the time-zone, but time-zone |
244 information is not by default available for the Python ``datetime`` and | |
245 ``time`` objects. The standard library includes only the abstract ``tzinfo`` | |
246 class, which you need appropriate implementations for to actually use in your | |
31 | 247 application. Babel includes a ``tzinfo`` implementation for UTC (Universal |
33 | 248 Time). |
249 | |
250 For real time-zone support, it is strongly recommended that you use the | |
31 | 251 third-party package `pytz`_, which includes the definitions of practically all |
252 of the time-zones used on the world, as well as important functions for | |
42 | 253 reliably converting from UTC to local time, and vice versa: |
254 | |
255 .. code-block:: pycon | |
31 | 256 |
257 >>> from datetime import time | |
36 | 258 >>> from pytz import timezone, utc |
259 >>> dt = datetime(2007, 04, 01, 15, 30, tzinfo=utc) | |
260 >>> eastern = timezone('US/Eastern') | |
261 >>> format_datetime(dt, 'H:mm Z', tzinfo=eastern, locale='en_US') | |
262 u'11:30 -0400' | |
31 | 263 |
264 The recommended approach to deal with different time-zones in a Python | |
265 application is to always use UTC internally, and only convert from/to the users | |
266 time-zone when accepting user input and displaying date/time data, respectively. | |
36 | 267 You can use Babel together with ``pytz`` to apply a time-zone to any |
268 ``datetime`` or ``time`` object for display, leaving the original information | |
42 | 269 unchanged: |
270 | |
271 .. code-block:: pycon | |
36 | 272 |
273 >>> british = timezone('Europe/London') | |
274 >>> format_datetime(dt, 'H:mm zzzz', tzinfo=british, locale='en_US') | |
275 u'16:30 British Summer Time' | |
31 | 276 |
37 | 277 Here, the given UTC time is adjusted to the "Europe/London" time-zone, and |
278 daylight savings time is taken into account. Daylight savings time is also | |
279 applied to ``format_time``, but because the actual date is unknown in that | |
280 case, the current day is assumed to determine whether DST or standard time | |
281 should be used. | |
282 | |
31 | 283 .. _`pytz`: http://pytz.sourceforge.net/ |
284 | |
285 | |
257
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
286 Localized Time-zone Names |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
287 ------------------------- |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
288 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
289 While the ``Locale`` class provides access to various locale display names |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
290 related to time-zones, the process of building a localized name of a time-zone |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
291 is actually quite complicated. Babel implements it in separately usable |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
292 functions in the ``babel.dates`` module, most importantly the |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
293 ``get_timezone_name`` function: |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
294 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
295 .. code-block:: pycon |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
296 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
297 >>> from pytz import timezone |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
298 >>> from babel import Locale |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
299 >>> from babel.dates import get_timezone_name |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
300 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
301 >>> tz = timezone('Europe/Berlin') |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
302 >>> get_timezone_name(tz, locale=Locale.parse('pt_PT')) |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
303 u'Hor\xe1rio Alemanha' |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
304 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
305 You can pass the function either a ``datetime.tzinfo`` object, or a |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
306 ``datetime.date`` or ``datetime.datetime`` object. If you pass an actual date, |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
307 the function will be able to take daylight savings time into account. If you |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
308 pass just the time-zone, Babel does not know whether daylight savings time is |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
309 in effect, so it uses a generic representation, which is useful for example to |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
310 display a list of time-zones to the user. |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
311 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
312 .. code-block:: pycon |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
313 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
314 >>> from datetime import datetime |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
315 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
316 >>> dt = tz.localize(datetime(2007, 8, 15)) |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
317 >>> get_timezone_name(dt, locale=Locale.parse('de_DE')) |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
318 u'Mitteleurop\xe4ische Sommerzeit' |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
319 >>> get_timezone_name(tz, locale=Locale.parse('de_DE')) |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
320 u'Deutschland' |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
321 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
322 |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
323 Parsing Dates |
126 | 324 ============= |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
325 |
42 | 326 Babel can also parse date and time information in a locale-sensitive manner: |
327 | |
328 .. code-block:: pycon | |
20
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
329 |
dce4cfd4ba5d
Started documentation for date formatting, plus some code tweaks in that area.
cmlenz
parents:
4
diff
changeset
|
330 >>> from babel.dates import parse_date, parse_datetime, parse_time |
257
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
331 |
ea9da47e35bc
Added examples for using `get_timezone_name` to documentation.
cmlenz
parents:
235
diff
changeset
|
332 .. note:: Date/time parsing is not properly implemented yet |