首页 > 编程语言 > 详细

Python使用Timer实现验证码功能

时间:2018-03-09 18:31:27      阅读:208      评论:0      收藏:0      [点我收藏+]

 

 

from threading import Timer
import random


class Code:
    def __init__(self):
        self.make_cache()

    def make_cache(self,interval =15):
        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()

 

Python使用Timer实现验证码功能

原文:https://www.cnblogs.com/stin/p/8535247.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!