如何将表单的日期时间字符串转换为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
其他来简化这一点,但这些不处理缩写的时区。
我想要一个需要最少多余库的解决方案,我想尽可能地保留标准库。