14
I Use This!
Low Activity
Analyzed about 9 hours ago. based on code collected about 9 hours 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
  • ...
    anyone with an Open Hub account can update a project's tags
  • ...
    nearly 1 in 3 companies have no process for identifying, tracking, or remediating known open source vulnerabilities
  • ...
    you can subscribe to e-mail newsletters to receive update from the Open Hub blog
About Project Security

Languages

Python
92%
4 Other
8%

30 Day Summary

Oct 22 2025 — Nov 21 2025

12 Month Summary

Nov 21 2024 — Nov 21 2025
  • 20 Commits
    Down -14 (41%) from previous 12 months
  • 2 Contributors
    Down -2 (50%) from previous 12 months

Ratings

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