文件名称:django-captchapy:django python的验证码应用程序
文件大小:25KB
文件格式:ZIP
更新时间:2024-07-27 23:26:26
Python
django 验证码 django python的验证码应用程序 使用极其简单: 第一个控制台命令: pip install git+https://github.com/desenvolvendoweb/django-captchapy.git 第二个设置.py: INSTALLED_APPS = ( ... 'captchapy', ) 第三个views.py: from captchapy.captcha import CaptchaForm human = False if request.POST: form = CaptchaForm(request.POST) if form.is_valid(): human = True else: form = CaptchaForm() p['captcha'] = form
【文件预览】:
django-captchapy-master
----setup.py(1KB)
----.gitignore(36B)
----MANIFEST.in(209B)
----README.md(3KB)
----captchapy()
--------media()
--------daemon.py(109B)
--------urls.py(376B)
--------__init__.py(20B)
--------command.py(366B)
--------captcha.py(10KB)
----docs()
--------index.txt(1KB)
--------news.txt(147B)