关于UTC日期时间转换有很多问题,似乎没有达成"最佳方式"的共识。
据此:http://lucumr.pocoo.org/2011/7/15/eppur-si-muove/,pytz是最好的方式。他展示了像datetime.datetime.utcnow().replace(tzinfo=pytz.utc)
这样转换到时区,但他没有说明如何获得用户的时区。。。
这个家伙https://stackoverflow.com/a/7465359/523051表示"localize
调整夏令时,replace
不调整"
我看到的每个使用pytz的人都提供自己的时区(users_timezone = timezone("US/Pacific")
),我不明白,因为你不知道你的观众是否在那里…
这个家伙https://stackoverflow.com/a/4771733/523051有一种自动检测时区的方法,但这是使用dateutil
库,而不是像Armin Ronacher和官方python文档(http://docs.python.org/library/datetime.html#strftime-和strptime行为,就在黄色框中的锚点之上)
我只需要最简单、经得起未来考验、全夏令时等考虑的方式来获取我的datetime.ucnow()戳(2012-08-25 10:59:56.511479
),将其转换为用户的时区。并显示如下:
Aug 25 - 10:59AM
如果今年不是今年,我想说
Aug 25 '11 - 10:59AM
好吧,它在这里(也是我对SO的第一个贡献:)
它确实需要2个外部库,这可能会使失去一些功能
from datetime import datetime
from dateutil import tz
import pytz
def standard_date(dt):
"""Takes a naive datetime stamp, tests if time ago is > than 1 year,
determines user's local timezone, outputs stamp formatted and at local time."""
# determine difference between now and stamp
now = datetime.utcnow()
diff = now - dt
# show year in formatting if date is not this year
if (diff.days / 365) >= 1:
fmt = "%b %d '%y @ %I:%M%p"
else:
fmt = '%b %d @ %I:%M%p'
# get users local timezone from the dateutils library
# http://stackoverflow.com/a/4771733/523051
users_tz = tz.tzlocal()
# give the naive stamp timezone info
utc_dt = dt.replace(tzinfo=pytz.utc)
# convert from utc to local time
loc_dt = utc_dt.astimezone(users_tz)
# apply formatting
f = loc_dt.strftime(fmt)
return f