fork from django-rest-captcha for work with django-rest-framework and support for new django versions
Project description
Django rest captcha
Lightweight version of django-simple-captcha for work with django-rest-framework.
Features
- Speed: use
cacheinstead of database - Safety: union methods for generate key and image. (You can't generate many images for one key)
- Easy: only one rest api (for generate, refresh image).
Usage
Add RestCaptchaSerializer to your protected request validator:
from dr_captcha serializer import RestCaptchaSerializer
class HumanOnlyDataSerializer(RestCaptchaSerializer):
pass
This code add to your serializer two required fields (captcha_key, captcha_value)
For provide this fields client(js code) should generate key:
> curl -X POST http:localhost:8000/api/captcha/ | python -m json.tool
{
'image_type': 'image/png',
'image_decode': 'base64',
'captcha_key': 'de67e7f3-72d9-42d8-9677-ea381610363d',
'captcha_value': '... image encoded in base64'
}
captcha_value - is base64 encoded PNG image, client should decode and show this image to human for validation and send letters from captcha to protected api.
If human have mistake - client should re generate your image.
Note: See also trottling for protect public api
Install
> pip install django-rest-captcha
Add to your settings.py
Add to installed apps:
INSTALLED_APPS = (
...
'dr_captcha',
)
Set dr_captcha settings (if you want), see defaults:
dr_captcha = {
'CAPTCHA_CACHE': 'default',
'CAPTCHA_TIMEOUT': 300, # 5 minutes
'CAPTCHA_LENGTH': 4,
'CAPTCHA_FONT_SIZE': 22,
'CAPTCHA_IMAGE_SIZE': (90, 40),
'CAPTCHA_LETTER_ROTATION': (-35, 35),
'CAPTCHA_FOREGROUND_COLOR': '#001100',
'CAPTCHA_BACKGROUND_COLOR': '#ffffff',
'CAPTCHA_FONT_PATH': FONT_PATH,
'CAPTCHA_CACHE_KEY': 'dr_captcha_{key}.{version}',
'FILTER_FUNCTION': 'dr_captcha.captcha.filter_default',
'NOISE_FUNCTION': 'dr_captcha.captcha.noise_default'
}
We recommend using redis or local memory as cache with set parameter, with bigger value of MAX_ENTRIES:
CACHES={
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': 'rest-captcha',
'MAX_ENTRIES': 10000,
}
}
Add hooks to your app router (urls.py):
urlpatterns = [
...
url(r'api/captcha/', include('dr_captcha.urls')),
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dr_captcha-1.0.0.tar.gz.
File metadata
- Download URL: dr_captcha-1.0.0.tar.gz
- Upload date:
- Size: 52.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.10.9 Linux/5.10.167-1-MANJARO
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b73a6686d3eca83ed4b1fcee9f34d4c8fd7cc3c91f216dee9bce2391ee6a121
|
|
| MD5 |
6b224bb48d024a4a5b9cf6c594af06be
|
|
| BLAKE2b-256 |
b3e58c9bd76d98681836121c2f63ec7371b8b81f43ed28883cfb5df91f66b0e1
|
File details
Details for the file dr_captcha-1.0.0-py2.py3-none-any.whl.
File metadata
- Download URL: dr_captcha-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 54.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.10.9 Linux/5.10.167-1-MANJARO
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac1a1fdffc550b7eb4e53a5874007afe8048fb9faad4cb45e3a2e7f76f9e03ce
|
|
| MD5 |
11a1e332213848b111ad5aa8be0ded97
|
|
| BLAKE2b-256 |
a295dd47e5d7be73e107d974691bf390bad2e32cb684c4bce686099921fb725e
|