在我的Django项目中,我在模型中使用DateTimeField
。这基本上有python datetime.datetime
实例。
从纪元(以秒为单位)转换到时间的最快方法是什么?
答案 0 :(得分:13)
在Python 3.3+中,您可以使用datetime.timestamp()
:
>>> datetime.datetime(2012,4,1,0,0).timestamp()
1333234800.0
对于早期版本的Python,您可以这样做:
# Format it into seconds
>>> datetime.datetime(2012,04,01,0,0).strftime('%s')
'1333234800'
# OR, subtract the time with 1 Jan, 1970 i.e start of epoch time
# get the difference of seconds using `total_seconds()`
>>> (datetime.datetime(2012,04,01,0,0) - datetime.datetime(1970,1,1)).total_seconds()
1333238400.0
答案 1 :(得分:4)
datetime.datetime(date).strftime('%s')
我认为这对你有用。