在python中将mysql时间戳转换为纪元时间 - 是否有一种简单的方法可以做到这一点?
答案 0 :(得分:27)
为什么不让MySQL做出艰苦的工作?
select unix_timestamp(fieldname) from tablename;
答案 1 :(得分:9)
将mysql时间转换为纪元:
>>> import time
>>> import calendar
>>> mysql_time = "2010-01-02 03:04:05"
>>> mysql_time_struct = time.strptime(mysql_time, '%Y-%m-%d %H:%M:%S')
>>> print mysql_time_struct
(2010, 1, 2, 3, 4, 5, 5, 2, -1)
>>> mysql_time_epoch = calendar.timegm(mysql_time_struct)
>>> print mysql_time_epoch
1262401445
将epoch转换为MySQL可以使用的东西:
>>> import time
>>> time_epoch = time.time()
>>> print time_epoch
1268121070.7
>>> time_struct = time.gmtime(time_epoch)
>>> print time_struct
(2010, 3, 9, 7, 51, 10, 1, 68, 0)
>>> time_formatted = time.strftime('%Y-%m-%d %H:%M:%S', time_struct)
>>> print time_formatted
2010-03-09 07:51:10
答案 2 :(得分:4)
如果你不想让MySQL出于某种原因做这项工作,那么你可以很容易地在Python中做到这一点。当您从MySQLdb返回一个datetime列时,您将获得一个Python datetime.datetime对象。要转换其中一个,可以使用time.mktime。例如:
import time
# Connecting to database skipped (also closing connection later)
c.execute("SELECT my_datetime_field FROM my_table")
d = c.fetchone()[0]
print time.mktime(d.timetuple())
答案 3 :(得分:1)
我使用以下内容从MySQL日期(当地时间)获取纪元(UTC)以来的秒数:
calendar.timegm(
time.gmtime(
time.mktime(
time.strptime(t,
"%Y-%m-%d %H:%M:%S"))))