也许这是凌晨4点的错误,但我认为我正在做的一切正确,但看起来并不像DST正在从UTC时间戳转换为本地化的日期时间。
>>> from datetime import datetime
>>> import pytz
>>> eastern = pytz.timezone("US/Eastern")
>>> utc = pytz.utc
>>> local_now = eastern.localize(datetime.now())
>>> utc_now = local_now.astimezone(utc)
>>> seconds = int(utc_now.strftime("%s"))
>>> utc_then = utc.localize(datetime.fromtimestamp(seconds))
>>> local_then = utc_then.astimezone(eastern)
>>> print utc_now, utc_then
2013-06-16 10:05:27.893005+00:00 2013-06-16 11:05:27+00:00
>>> print local_now, local_then
2013-06-16 06:05:27.893005-04:00 2013-06-16 07:05:27-04:00
答案 0 :(得分:4)
o------------o
| | DT.datetime.utcfromtimestamp (*)
| |<-----------------------------------o
| | |
| datetime | |
| | DT.datetime.fromtimestamp |
| |<----------------------------o |
| | | |
o------------o | |
| ^ | |
.timetuple | | | |
.utctimetuple | | DT.datetime(*tup[:6]) | |
v | | |
o------------o o------------o
| |-- calendar.timegm (*) -->| |
| | | |
| |---------- time.mktime -->| |
| timetuple | | timestamp |
| |<-- time.localtime -------| |
| | | |
| |<-- time.gmtime (*)-------| |
o------------o o------------o
(*) Interprets its input as being in UTC and returns output in UTC
如图所示,当你有一个UTC日期时间,如utc_now
时,要获取其时间戳,请使用
seconds = calendar.timegm(utc_date.utctimetuple())
如果您有时间戳,要使用UTC获取日期时间,请使用
DT.datetime.utcfromtimestamp(seconds)
import datetime as DT
import pytz
import calendar
eastern = pytz.timezone("US/Eastern")
utc = pytz.utc
now = DT.datetime(2013, 6, 16, 10, 0, 0)
local_now = eastern.localize(now)
utc_now = local_now.astimezone(utc)
seconds = calendar.timegm(utc_now.utctimetuple())
print(seconds)
# 1371391200
utc_then = utc.localize(DT.datetime.utcfromtimestamp(seconds))
local_then = utc_then.astimezone(eastern)
print utc_now, utc_then
# 2013-06-16 14:00:00+00:00 2013-06-16 14:00:00+00:00
print local_now, local_then
# 2013-06-16 10:00:00-04:00 2013-06-16 10:00:00-04:00
PS。请注意,timetuple()
和utctimetuple()
方法会从日期时间中删除几微秒。要以保留微秒的方式将日期时间转换为时间戳,请使用mata's solution。
答案 1 :(得分:4)
如果要编写可移植代码,则应该避免使用datetime.now
,因为它始终使用本地时区,因此local_now = eastern.localize(datetime.now())
仅在本地计算机上的时区东部。始终尝试使用utcnow
,原因相同utcfromtimestamp
。
此外,使用strftime("%s")
将日期时间转换为时间戳也不起作用。
from datetime import datetime
import pytz
utc_now = pytz.utc.localize(datetime.utcnow())
eastern = pytz.timezone("US/Eastern")
local_now = utc_now.astimezone(eastern)
# seconds = utc_now.timestamp() python3
seconds = (utc_now - pytz.utc.localize(datetime.utcfromtimestamp(0))).total_seconds()
utc_then = pytz.utc.localize(datetime.utcfromtimestamp(seconds))
local_then = utc_then.astimezone(eastern)
print("%s - %s" % (utc_now, utc_then))
print("%s - %s" % (local_now, local_then))
答案 2 :(得分:0)
要将您的本地时区设为pytz.timezone
对象,您可以使用tzlocal
模块:
#!/usr/bin/env python
from datetime import datetime
import pytz # pip install pytz
from tzlocal import get_localzone # pip install tzlocal
local_tz = get_localzone()
local_now = datetime.now(local_tz)
utc_now = local_now.astimezone(pytz.utc)
seconds = (utc_now - datetime(1970, 1, 1, tzinfo=pytz.utc)).total_seconds()
utc_then = datetime.fromtimestamp(seconds, pytz.utc)
local_then = utc_then.astimezone(local_tz)
print("%s %s" % (utc_now, utc_then))
print("%s %s" % (local_now, local_then))
datetime.now()
- 例如,在DST更改期间,它可能不明确。如我的示例中那样显式传递tzinfo或使用datetime.utcnow()
utc_now.strftime('%s')
- it ignores timezone info (it uses the current local timezone)并且不可移植。使用datetime.timestamp()
method or its analogs instead utc.localize(datetime.fromtimestamp(seconds))
- .fromtimestamp()
在本地时区返回可能与UTC不同的天真日期时间对象。如我的示例中那样显式传递tzinfo或使用datetime.utcfromtimestamp()
获取表示UTC时间的天真日期时间对象datetime.utctimetuple()
与天真的日期时间对象一起使用 - 它不会将它们转换为UTC。如果对象已经是UTC:utc_now.timetuple()
返回相同的时间。要针对不明确的本地时间引发异常,请使用localize(is_dst=None)
:
aware_dt = tz.localize(naive_dt, is_dst=None)
如果没有is_dst=None
,则{D}更改期间tz.localize()
返回错误结果的可能性为50%。如果在您的特定情况下获得可能错误的结果而不是异常,那么您可以通过显式is_dst=False
来提醒自己。
一般情况下,如果来源和目标时区都不是UTC,pytz
documentation会在tz.normalize()
之后推荐.astimezone()
。