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
- Host: GitHub
- URL: https://github.com/null-none/django-math-captcha
- Owner: null-none
- License: mit
- Created: 2022-08-31T18:24:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-04T19:24:39.000Z (over 3 years ago)
- Last Synced: 2025-01-26T09:28:38.834Z (11 months ago)
- Topics: captcha, django, math
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()