码迷,mamicode.com
首页 > 其他好文 > 详细

时间转时间戳例子

时间:2014-08-07 07:34:49      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:difference   correct   

#!/usr/bin/python

import time

import os



if __name__ == ‘__main__‘:

    hwclock_time = " ".join(os.popen("hwclock --show --utc").read().split(" ")[0:6])

    hwclock_timestamp = time.mktime(time.strptime(hwclock_time,‘%a %d %b %Y %I:%M:%S %p‘))

    os_time = time.time()

    difference = abs(int(hwclock_timestamp)-int(os_time))

    if difference > 60: 

        print ‘difference:‘,difference

        exit(1)

    else:

        print ‘time is correct‘


时间转时间戳例子,布布扣,bubuko.com

时间转时间戳例子

标签:difference   correct   

原文地址:http://4249964.blog.51cto.com/4239964/1536498

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!