python3中的python3 datetime.timestamp?

时间:2015-05-04 00:30:11

标签: python python-3.x python-2.x

我有一段python 3 代码,它在22:00调用一个函数。

# Imports
from datetime import datetime, date, time, timedelta
import sched
import time as mod_time

# Find the next datetime corresponding to 22:00
first_run = datetime.combine(date.today(), time(22,0))
first_run = first_run if first_run > datetime.now() else first_run + timedelta(1)

# Dumb test function
def my_function():
    print('my_function')

# Run the function at 22:00
scheduler = sched.scheduler(mod_time.time, mod_time.sleep)
scheduler.enterabs(first_run.timestamp(), 1, my_function, ())
scheduler.run()

此代码目前正在使用python 3 。我希望它能在python 2 中工作。我唯一的问题来自以下方面:

first_run.timestamp()

我试图将其替换为:

(first_run - datetime(1970, 1, 1)).total_seconds()

但我的时区似乎有问题(UTC太容易了,我在UTC + 2)。 first_run中应该有tzinfo。也许我应该添加一些东西?

我很失落,任何帮助都会受到赞赏。 非常感谢您提前帮助我。

EDIT1:

在Haochen Wu的评论之后,我读过Convert datetime to Unix timestamp and convert it back in python

现在我知道以下几行与我相同:

(datetime.now() - datetime(1970, 1, 1)).total_seconds()
(datetime.now() - datetime.utcfromtimestamp(0)).total_seconds()

解决方案应该是

(datetime.now() - datetime.fromtimestamp(0)).total_seconds()

但事实并非如此。此值仍与mod_time.time()不同。

也许是因为冬季/夏季?

2 个答案:

答案 0 :(得分:4)

使用以下内容转换为python 2中的时间戳

int((mod_time.mktime(first_run.timetuple())+first_run.microsecond/1000000.0))

答案 1 :(得分:1)

在python2中使用time.time(),它类似于python3中的datetime.timestamp()

datetime.datetime.timestamp

如果您需要当前的日期时间实现,请参阅python3中的实现:

def timestamp(self):
    "Return POSIX timestamp as float"
    if self._tzinfo is None:
        return _time.mktime((self.year, self.month, self.day,
                             self.hour, self.minute, self.second,
                             -1, -1, -1)) + self.microsecond / 1e6
    else:
        return (self - _EPOCH).total_seconds()

其中_EPOCH = datetime(1970,1,1,tzinfo = timezone.utc)