An open API service indexing awesome lists of open source software.

https://github.com/null-none/django-math-captcha

Simple match captacha
https://github.com/null-none/django-math-captcha

captcha django math

Last synced: 3 months ago
JSON representation

Simple match captacha

Awesome Lists containing this project

README

          

django-math-captcha
=================

Simple match captacha

Installation
------------

pip install django-math-captacha

Add app in your ``settings.py``

INSTALLED_APPS = [
"math_captcha",
]

Example

from django import forms
from math_captcha.fields import MathCaptchaField

class MyForm(forms.Form):
name = models.CharField(max_length=50)
captcha = MathCaptchaField()