• Django——python验证码生成工具:gvcode与captcha


    python在做项目时用到的验证码生成工具:gvcodecaptcha

    gvcode

    全称:graphic-verification-code

    安装:

    pip install gvcode

    使用:

    import gvcode
    
    s, v = gvcode.generate()    #序列解包
    
    s.show()    #显示生成的验证码图片
    
    print(v)    #打印验证码字符串

    效果:

    captcha

    安装:

    pip install captcha

    使用:

    from captcha.image import ImageCaptcha
    from random import randint
    list = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
            'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
            'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
    chars = ''
    for i in range(4):
        chars += list[randint(0, 62)]
    image = ImageCaptcha().generate_image(chars)
    
    image.show()

    效果:

  • 相关阅读:
    C语言32个关键字详解
    C语言格式控制符
    c++关键字详解
    多码流简介
    Jtag管脚定义
    关于RGB信号的电平
    缩略语MSPS
    【转】松下18650的容量判别方法
    电信号在FR4材料中的传播速度
    dropout voltage
  • 原文地址:https://www.cnblogs.com/guojieying/p/13884696.html
Copyright © 2020-2023  润新知