64

我现在能想到的最好的就是这个怪物:

>>> datetime.utcnow() \
...   .replace(tzinfo=pytz.UTC) \
...   .astimezone(pytz.timezone("Australia/Melbourne")) \
...   .replace(hour=0,minute=0,second=0,microsecond=0) \
...   .astimezone(pytz.UTC) \
...   .replace(tzinfo=None)
datetime.datetime(2008, 12, 16, 13, 0)

即,在英语中,获取当前时间(UTC),将其转换为其他时区,将时间设置为午夜,然后转换回 UTC。

我不只是使用 now() 或 localtime() 因为这将使用服务器的时区,而不是用户的时区。

我不禁觉得我错过了一些东西,有什么想法吗?

4

6 回答 6

100

如果你这样做,我认为你可以减少一些方法调用:

>>> from datetime import datetime
>>> datetime.now(pytz.timezone("Australia/Melbourne")) \
            .replace(hour=0, minute=0, second=0, microsecond=0) \
            .astimezone(pytz.utc)

但是......在您的代码中存在比美学更大的问题:它会在切换到夏令时的当天给出错误的结果。

原因是 datetime 构造函数和replace()DST 更改都没有考虑在内。

例如:

>>> now = datetime(2012, 4, 1, 5, 0, 0, 0, tzinfo=pytz.timezone("Australia/Melbourne"))
>>> print now
2012-04-01 05:00:00+10:00
>>> print now.replace(hour=0)
2012-04-01 00:00:00+10:00 # wrong! midnight was at 2012-04-01 00:00:00+11:00
>>> print datetime(2012, 3, 1, 0, 0, 0, 0, tzinfo=tz)
2012-03-01 00:00:00+10:00 # wrong again!

但是,tz.localize()国家的文档:

此方法应用于构造本地时间,而不是将 tzinfo 参数传递给日期时间构造函数。

因此,您的问题是这样解决的:

>>> import pytz
>>> from datetime import datetime, date, time

>>> tz = pytz.timezone("Australia/Melbourne")
>>> the_date = date(2012, 4, 1) # use date.today() here

>>> midnight_without_tzinfo = datetime.combine(the_date, time())
>>> print midnight_without_tzinfo
2012-04-01 00:00:00

>>> midnight_with_tzinfo = tz.localize(midnight_without_tzinfo)
>>> print midnight_with_tzinfo
2012-04-01 00:00:00+11:00

>>> print midnight_with_tzinfo.astimezone(pytz.utc)
2012-03-31 13:00:00+00:00

但是,不能保证 1582 年之前的日期。

于 2008-12-19T18:29:13.297 回答
32

@hop 的答案在夏令时 (DST) 过渡之日是错误的,例如 2012 年 4 月 1 日。要修复它tz.localize()可以使用:

tz = pytz.timezone("Australia/Melbourne")
today = datetime.now(tz).date()
midnight = tz.localize(datetime.combine(today, time(0, 0)), is_dst=None)
utc_dt = midnight.astimezone(pytz.utc)        

与评论相同:

#!/usr/bin/env python
from datetime import datetime, time
import pytz # pip instal pytz

tz = pytz.timezone("Australia/Melbourne") # choose timezone

# 1. get correct date for the midnight using given timezone.
today = datetime.now(tz).date()

# 2. get midnight in the correct timezone (taking into account DST)
#NOTE: tzinfo=None and tz.localize()
# assert that there is no dst transition at midnight (`is_dst=None`)
midnight = tz.localize(datetime.combine(today, time(0, 0)), is_dst=None)

# 3. convert to UTC (no need to call `utc.normalize()` due to UTC has no 
#    DST transitions)
fmt = '%Y-%m-%d %H:%M:%S %Z%z'
print midnight.astimezone(pytz.utc).strftime(fmt)
于 2012-06-27T23:57:46.290 回答
2

使用 dateutil.tz 比使用 pytz 更直接:

>>>import datetime
>>>import dateutil.tz
>>>midnight=(datetime.datetime
             .now(dateutil.tz.gettz('Australia/Melbourne'))
             .replace(hour=0, minute=0, second=0, microsecond=0)
             .astimezone(dateutil.tz.tzutc()))
>>>print(midnight)
2019-04-26 14:00:00+00:00

tzinfo 文档从 Python 3.6 开始推荐使用dateutil.tz。dateutil.tz 中的 tzinfo 对象对 DST 等异常没有问题,无需 pytz 的本地化功能。使用来自 user3850 的示例:

>>> now = (datetime.datetime(2012, 4, 1, 5,  
...         tzinfo = dateutil.tz.gettz('Australia/Melbourne'))) 
>>> print(now.replace(hour = 0).astimezone(dateutil.tz.tzutc()))
2012-03-31 13:00:00+00:00
于 2019-04-26T14:57:32.467 回答
0

设置 TZ 环境变量会修改 Python 的日期和时间函数使用的时区。

>>> time.gmtime()
(2008, 12, 17, 1, 16, 46, 2, 352, 0)
>>> time.localtime()
(2008, 12, 16, 20, 16, 47, 1, 351, 0)
>>> os.environ['TZ']='Australia/Melbourne'
>>> time.localtime()
(2008, 12, 17, 12, 16, 53, 2, 352, 1)
于 2008-12-17T01:17:26.223 回答
0

每个时区都有一个数字,例如 US/Central = -6。这被定义为与 UTC 的小时偏移量。由于 0000 是午夜,您可以简单地使用此偏移量来查找任何时区的时间,当它是午夜 UTC 时。要访问它,我相信您可以使用

时间.时区

根据The Python Docs, time.timezone 实际上给出了这个数字的负值:

时间.时区

本地(非 DST)时区的偏移量,以 UTC 以西的秒数为单位(在西欧大部分地区为负,在美国为正,在英国为零)。

因此,如果它是正数(即,如果它是芝加哥的午夜(具有 +6 时区值),那么它就是 6000 = UTC 上午 6 点),您只需使用该数字以小时为单位。

如果该数字为负数,则从 24 中减去。例如,柏林会给出 -1,因此 24 - 1 => 2300 = 晚上 11 点。

于 2008-12-17T01:20:06.827 回答
0

值得注意的是,我们可以调整@jfs 给出的答案以找到明天的午夜或昨天的午夜等。诀窍是在感知时区添加一定天数。这是可行的,因为虽然这通常会增加 24 小时,但有时它可能会根据 DST 问题增加 23 或 25 小时。

from datetime import datetime, time, timedelta
import pytz

def midnight_UTC(offset):

    # Construct a timezone object
    tz = pytz.timezone('Australia/Melbourne')

    # Work out today/now as a timezone-aware datetime
    today = datetime.now(tz)

    # Adjust by the offset. Note that that adding 1 day might actually move us 23 or 25
    # hours into the future, depending on daylight savings. This works because the {today}
    # variable is timezone aware
    target_day = today + timedelta(days=1) * offset

    # Discard hours, minutes, seconds and microseconds
    midnight_aware = tz.localize(
        datetime.combine(target_day, time(0, 0, 0, 0)), is_dst=None)

    # Convert to UTC
    midnight_UTC = midnight_aware.astimezone(pytz.utc)

    return midnight_UTC

print("The UTC time of the previous midnight is:", midnight_UTC(0))
print("The UTC time of the upcoming midnight is:", midnight_UTC(1))
于 2020-03-27T23:45:18.783 回答