London2012同步时间新语

London2012同步时间新语,第1张

#!/usr/bin/env python
#encoding="utf-8"
"""
free use navicat & sqlyog
"""
import datetime
from dateutil import parser
if __name__=="__main__":
    import sys,os
    if len(sys.argv)>1:
        import urllib2
        r=urllib2.urlopen("http://www.london2012.com/")
        t=r.headers.dict["date"]
        print t
        dt=parser.parse(t)
        dt=dt+datetime.timedelta(hours=8)//chage gmt datetime to gmt+8 area time
        print "%s-%s-%s %s:%s:%s"%(dt.year,dt.month,dt.day,dt.hour,dt.minute,dt.second)
        os.system("date %s-%s-%s"%(dt.year,dt.month,dt.day))
        os.system("time %s:%s:%s"%(dt.hour,dt.minute,dt.second))
        print "datetime back to normal %s"%datetime.datetime.now()
    else:
        os.system("date 2012-03-20")
        print "this is only for software expired used"
        print "datetime change to %s"%datetime.datetime.now()

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/2083872.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-07-22
下一篇 2022-07-22

发表评论

登录后才能评论

评论列表(0条)

保存