你如何将纽约时间的当前日期时间转换为python中的纪元

时间:2014-11-26 15:48:51

标签: python

我需要在python中将当前日期时间转换为纪元时间。

我试过这个,但我不确定这是不是这个tz =" New_York / Americas"。在右下方?

import time

epoch_time = int(time.time())

1 个答案:

答案 0 :(得分:2)

您可以使用python的日历模块。

from datetime import datetime
from calendar import timegm

current_time = datetime.utcnow()
epoch_time = timegm(current_time.utctimetuple())

有关详情,请访问日历timegm