美文网首页
检查过期时间

检查过期时间

作者: 老周_o_o | 来源:发表于2018-06-15 11:31 被阅读0次
    CERT_EXPIRES = '2018-07-01'
    
    
    # 检查过期时间
    def check_cert():
        today = datetime.now().strftime('%Y-%m-%d')
        if today >= CERT_EXPIRES:
            print('This xxx.py is expired. Please download a newer version.')
            exit(1)
    

    相关文章

      网友评论

          本文标题:检查过期时间

          本文链接:https://www.haomeiwen.com/subject/jlipeftx.html