14
I Use This!
Low Activity
Analyzed about 20 hours 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...

  • ...
    use of OSS increased in 65% of companies in 2016
  • ...
    compare projects before you chose one to use
  • ...
    there are over 3,000 projects on the Open Hub with security vulnerabilities reported against them
  • ...
    check out hot projects on the Open Hub
About Project Security

Languages

Python
93%
4 Other
7%

30 Day Summary

Mar 18 2024 — Apr 17 2024

12 Month Summary

Apr 17 2023 — Apr 17 2024
  • 28 Commits
    Up + 24 (600%) 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!