14
I Use This!
Low Activity
Analyzed 3 minutes ago. based on code collected 4 minutes 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...

  • ...
    in 2016, 47% of companies did not have formal process in place to track OS code
  • ...
    compare projects before you chose one to use
  • ...
    55% of companies leverage OSS for production infrastructure
  • ...
    by exploring contributors within projects, you can view details on every commit they have made to that project
About Project Security

Languages

Python
92%
4 Other
8%

30 Day Summary

Dec 20 2025 — Jan 19 2026

12 Month Summary

Jan 19 2025 — Jan 19 2026
  • 14 Commits
    Down -18 (56%) from previous 12 months
  • 2 Contributors
    Down -1 (33%) from previous 12 months

Ratings

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