14
I Use This!
Low Activity
Analyzed 1 day ago. based on code collected 1 day ago.

Project Summary

Django Simple CaptchaAboutDjango Simple Captcha is an extremely simple, yet highly customizable Django application to add captcha images to any Django form.

UsageSample view:

from django import forms
from captcha.fields import CaptchaField
from django.shortcuts import render_to_response

class CaptchaTestForm(forms.Form):
myfield = AnyOtherField()
captcha = CaptchaField()

"""
# or, as a ModelForm:
class CaptchaTestModelForm(forms.ModelForm):
captcha = CaptchaField()
class Meta:
model = MyModel
"""

def home(request):
if request.POST:
form = CaptchaTestForm(request.POST)

# Validate the form: the captcha field will automatically
# check the input
if form.is_valid():
human = True
else:
form = Captch

Tags

accessibility audio captcha django image pil robot

Badges

In a Nutshell, django-simple-captcha...

Quick Reference

MIT License
Permitted

Commercial Use

Modify

Distribute

Sub-License

Private Use

Forbidden

Hold Liable

Required

Include Copyright

Include License

These details are provided for information only. No information here is legal advice and should not be used as such.

Project Security

Vulnerabilities per Version ( last 10 releases )

There are no reported vulnerabilities

Project Vulnerability Report

Security Confidence Index

Poor security track-record
Favorable security track-record

Vulnerability Exposure Index

Many reported vulnerabilities
Few reported vulnerabilities

Did You Know...

  • ...
    55% of companies leverage OSS for production infrastructure
  • ...
    check out hot projects on the Open Hub
  • ...
    65% of companies leverage OSS to speed application development in 2016
  • ...
    by exploring contributors within projects, you can view details on every commit they have made to that project
About Project Security

Languages

Python
93%
4 Other
7%

30 Day Summary

Apr 22 2024 — May 22 2024

12 Month Summary

May 22 2023 — May 22 2024
  • 28 Commits
    Up + 25 (833%) from previous 12 months
  • 3 Contributors
    Up + 2 (200%) from previous 12 months

Ratings

4 users rate this project:
4.75
   
4.8/5.0
Click to add your rating
  
Review this Project!