python – Django:如何在佛罗里达州的设置中设置EDT时区

前端之家收集整理的这篇文章主要介绍了python – Django:如何在佛罗里达州的设置中设置EDT时区前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想设置Django时区,以便时钟应与佛罗里达州的当地时间保持一致,即东部夏令时(DST).请建议对Django设置时区的更改,使其与此时区保持一致;目前 django设置为EST(东部标准时间)而不是EDT(东部夏令时间).当我们进入/离开夏令时,它应该自动改变.
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'America/Chicago'

我在amazon ubuntu中运行我的应用程序.什么是佛罗里达当地时间最好的time_zone.我正在使用Django 1.5.

解决方法

佛罗里达州的正确时区名称(来自tz数据库)是“America / New_York”,只需将其放入TIME_ZONE设置而不是“America / Chicago”
原文链接:https://www.f2er.com/python/186368.html

猜你在找的Python相关文章