zoukankan      html  css  js  c++  java
  • Python使用Timer实现验证码功能

    from threading import Timer
    import random
    
    
    class Code:
        def __init__(self):
            self.make_cache()
    
        def make_cache(self,interval =15):#生成的验证码保存在cache里,过15s重新生成验证码,更新cache    
            self.cache = self.make_code()
            print(self.cache)
            self.t = Timer(interval,self.make_cache)
            self.t.start()
    
        def make_code(self,n=4):
            res = ''
            for i in range(n):
                s1= str(random.randint(0,9))
                s2=chr(random.randint(65,90))
                res += random.choice([s1,s2])
            return res
    
        def check(self):
            while True:
                code = input('请输入验证码>>:').strip()
                if code.upper() == self.cache:
                    print('验证码正确')
                    self.t.cancel()
                    break
    
    obj=Code()
    obj.check()
  • 相关阅读:
    βVAE学习
    条件GAN学习
    epoll的事件的状态
    RST报文产生的情况
    SIGPIPE信号产生原因
    methods事件
    for列表渲染
    if条件渲染
    data数据
    vue的简单上手
  • 原文地址:https://www.cnblogs.com/stin/p/8535247.html
Copyright © 2011-2022 走看看