将时区缩写解析为UTC

时间:2010-02-25 15:59:57

标签: python datetime time timezone pytz

如何将Feb 25 2010, 16:19:20 CET形式的日期时间字符串转换为unix时代?

目前,我最好的方法是使用time.strptime()

def to_unixepoch(s):
    # ignore the time zone in strptime
    a = s.split()
    b = time.strptime(" ".join(a[:-1]) + " UTC", "%b %d %Y, %H:%M:%S %Z")
    # this puts the time_tuple(UTC+TZ) to unixepoch(UTC+TZ+LOCALTIME)
    c = int(time.mktime(b))
    # UTC+TZ
    c -= time.timezone
    # UTC
    c -= {"CET": 3600, "CEST": 2 * 3600}[a[-1]]
    return c

我从其他问题中看到,可以使用calendar.timegm()pytz来简化此操作,但这些不能处理缩写的时区。

我想要一个需要最少多余库的解决方案,我希望尽可能多地保留标准库。

1 个答案:

答案 0 :(得分:7)

Python标准库并没有真正实现时区。您应该使用python-dateutil。它为标准datetime模块提供了有用的扩展,包括时区实现和解析器。

您可以将时区感知datetime对象转换为UTC .astimezone(dateutil.tz.tzutc())。对于当前时间作为时区感知日期时间对象,您可以使用datetime.datetime.utcnow().replace(tzinfo=dateutil.tz.tzutc())

import dateutil.tz

cet = dateutil.tz.gettz('CET')

cesttime = datetime.datetime(2010, 4, 1, 12, 57, tzinfo=cet)
cesttime.isoformat()
'2010-04-01T12:57:00+02:00'

cettime = datetime.datetime(2010, 1, 1, 12, 57, tzinfo=cet)
cettime.isoformat() 
'2010-01-01T12:57:00+01:00'

# does not automatically parse the time zone portion
dateutil.parser.parse('Feb 25 2010, 16:19:20 CET')\
    .replace(tzinfo=dateutil.tz.gettz('CET'))

不幸的是,在重复的夏令时期间,这种技术会出错。