Last updated:
0 purchases
djangopowcaptcha 0.0.3
Django PowCaptcha
Django PowCaptcha form field/widget integration app.
Installation
Install with pip install django-powcaptcha.
Add 'django_powcaptcha' to your INSTALLED_APPS setting.
INSTALLED_APPS = [
...,
'django_powcaptcha',
...
]
Add settings.
For example:
POWCAPTCHA_API_URL = 'https://captcha.yourdomain.com'
POWCAPTCHA_API_TOKEN = 'MyPOWCAPTCHAPrivateKey456'
Usage
Form
The quickest way to add PowCaptcha to a form is to use the included
PowCaptchaForm class. For example:
from django_powcaptcha.forms import PowCaptchaForm
class FormWithCaptcha(PowCaptchaForm):
...
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.