Python将来创建unix时间戳五分钟 [英] Python Create unix timestamp five minutes in the future

查看:374
本文介绍了Python将来创建unix时间戳五分钟的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

将来我必须创建一个Expires值5分钟,但是我必须以UNIX Timestamp格式提供它。我有这个到目前为止,但它似乎是一个黑客。

I have to create an "Expires" value 5 minutes in the future, but I have to supply it in UNIX Timestamp format. I have this so far, but it seems like a hack.

def expires():
    '''return a UNIX style timestamp representing 5 minutes from now'''
    epoch = datetime.datetime(1970, 1, 1)
    seconds_in_a_day = 60 * 60 * 24
    five_minutes = datetime.timedelta(seconds=5*60)
    five_minutes_from_now = datetime.datetime.now() + five_minutes
    since_epoch = five_minutes_from_now - epoch
    return since_epoch.days * seconds_in_a_day + since_epoch.seconds

有没有一个模块或函数为我做时间戳转换?

Is there a module or function that does the timestamp conversion for me?

推荐答案

只是发现了,而且更短。

Just found this, and its even shorter.

import time
def expires():
    '''return a UNIX style timestamp representing 5 minutes from now'''
    return int(time.time()+300)

这篇关于Python将来创建unix时间戳五分钟的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆