@@ -16,26 +16,26 @@ Django Timezone Utils: Time Zone Utilities For Models
16
16
.. image :: https://landscape.io/github/michaeljohnbarr/django-timezone-utils/master/landscape.png
17
17
:target: https://landscape.io/github/michaeljohnbarr/django-timezone-utils
18
18
:alt: Code Health
19
-
19
+
20
20
.. image :: https://pypip.in/py_versions/django-timezone-utils/badge.svg?style=flat
21
21
:target: https://pypi.python.org/pypi/django-timezone-utils/
22
22
:alt: Supported Python versions
23
-
23
+
24
24
.. image :: https://pypip.in/license/django-timezone-utils/badge.svg?style=flat
25
25
:target: https://pypi.python.org/pypi/django-timezone-utils/
26
26
:alt: License
27
-
27
+
28
28
.. image :: https://pypip.in/status/django-timezone-utils/badge.svg?style=flat
29
29
:target: https://pypi.python.org/pypi/django-timezone-utils/
30
30
:alt: Development Status
31
-
31
+
32
32
33
33
34
34
**django-timezone-utils ** adds automatic time zone conversions and support
35
35
utilities to Django.
36
36
37
37
Please note that this project is currently marked as a development status of
38
- *Alpha *. Suggestions, constructive criticism, and feedback are certainly
38
+ *Beta *. Suggestions, constructive criticism, and feedback are certainly
39
39
welcomed and appreciated.
40
40
41
41
Installation
@@ -144,7 +144,7 @@ the database:
144
144
145
145
# LocationReportingPeriod.start
146
146
datetime.datetime(2015 , 1 , 1 , 0 , 0 , tzinfo = < DstTzInfo ' US/Eastern' EST - 1 day, 19 :00 :00 STD > )
147
-
147
+
148
148
# LocationReportingPeriod.end
149
149
datetime.datetime(2015 , 1 , 1 , 23 , 59 , 59 , 999999 , tzinfo = < DstTzInfo ' US/Eastern' EST - 1 day, 19 :00 :00 STD > )
150
150
@@ -156,10 +156,10 @@ database. For example, if your application's settings.TIME_ZONE is set to
156
156
``UTC ``, you would get back:
157
157
158
158
.. code-block :: python
159
-
159
+
160
160
print (period.start)
161
161
datetime.datetime(2015 , 1 , 1 , 5 , 0 , tzinfo = < UTC > )
162
-
162
+
163
163
print (period.end)
164
164
datetime.datetime(2015 , 1 , 2 , 4 , 59 , 59 , 999999 , tzinfo = < UTC > )
165
165
0 commit comments