https://github.com/aeyoll/django-powcaptcha
https://github.com/aeyoll/django-powcaptcha
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aeyoll/django-powcaptcha
- Owner: aeyoll
- License: bsd-3-clause
- Created: 2023-12-11T13:26:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-11T12:20:48.000Z (over 1 year ago)
- Last Synced: 2025-12-06T15:54:24.282Z (3 months ago)
- Language: Python
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django PowCaptcha
Django PowCaptcha form field/widget integration app.
## Installation
1. Install with `pip install django-powcaptcha`.
2. Add `'django_powcaptcha'` to your `INSTALLED_APPS` setting.
```python
INSTALLED_APPS = [
...,
'django_powcaptcha',
...
]
```
3. Add settings.
For example:
```python
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:
```python
from django_powcaptcha.forms import PowCaptchaForm
class FormWithCaptcha(PowCaptchaForm):
...
```