Python使用Timer实现验证码功能

Posted Claire_xu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python使用Timer实现验证码功能相关的知识,希望对你有一定的参考价值。

 

 

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实现验证码功能的主要内容,如果未能解决你的问题,请参考以下文章

使用python 实现SSH登录设备时出现问题?

canvas实现验证码功能

使用ThinkPHP实现生成/检验验证码功能

js实现60s倒计时效果

随机验证码图片验证码和邮箱发送用户验证码

爬虫遇到头疼的验证码?Python实战讲解弹窗处理和验证码识别