django验证码模块 DjangoVerifyCode

码农软件 · 软件分类 · 验证码(Captcha) · 2019-04-22 12:14:30

软件介绍

在django中生成英文单词验证码,提供验证码图片生成,检查验证码等功能.

安装

pip install DjangoVerifyCode
or
easy_install DjangoVerifyCode

显示验证码(views.py)

from DjangoVerifyCode import Code
def code(request):
    code = Code(request)
    return code.display()

检查用户输入的验证码是否正确(views.py)

from DjangoVerifyCode import Code
def index(request):
    _code = request.GET.get('code') or ''
    if not _code:
        return render('index.html',locals())

    code = Code(request)
    if code.check(_code):
        return HttpResponse('验证成功')
    else:
        return HttpResponse('验证失败')

自定义

用户可根据自己的需要对DjangoVerifyCode.Code对象的属性进行设置

输出图片的宽度

code.img_width = 150

输出图片的高度

code.img_height = 30

验证码字体颜色

code.font_color = ['black','darkblue','darkred']

字体大小

font_size = 24

依赖

  • PIL

More

本文地址:https://codercto.com/soft/d/4133.html

Algorithms

Algorithms

Sanjoy Dasgupta、Christos H. Papadimitriou、Umesh Vazirani / McGraw-Hill Education / 2006-10-16 / GBP 30.99

This text, extensively class-tested over a decade at UC Berkeley and UC San Diego, explains the fundamentals of algorithms in a story line that makes the material enjoyable and easy to digest. Emphasi......一起来看看 《Algorithms》 这本书的介绍吧!

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具