Django hCaptcha Field provides a simple way to protect your Django forms using hCaptcha.
Project description
Django hCaptcha Field
Django hCaptcha Field provides a simple way to protect your Django forms using hCaptcha.
This is a fork of django-hcaptcha
.
Installation
-
Install using pip:
$ pip install django-hcaptcha-field
-
Add to
INSTALLED_APPS
:INSTALLED_APPS = [ # ... 'hcaptcha_field' ]
Configuration
For development purposes no further configuration is required. By default, Django hCaptcha Field will use test keys.
For production, you'll need to obtain your hCaptcha site key and secret key and add them to you settings:
HCAPTCHA_SITEKEY = '<your sitekey>'
HCAPTCHA_SECRET = '<your secret key>'
You can also configure your hCaptcha widget globally (see all options):
HCAPTCHA_DEFAULT_CONFIG = {
'onload': 'name_of_js_function',
'render': 'explicit',
'theme': 'dark', # do not use data- prefix
'size': 'compact', # do not use data- prefix
# ...
}
If you need to, you can also override default hCaptcha endpoints:
HCAPTCHA_JS_API_URL = 'https://hcaptcha.com/1/api.js'
HCAPTCHA_VERIFY_URL = 'https://hcaptcha.com/siteverify'
Use proxies:
HCAPTCHA_PROXIES = {
'http': 'http://127.0.0.1:8000',
}
Change default verification timeout:
HCAPTCHA_TIMEOUT = 5
Usage
Simply add hCaptchaField to your forms:
from hcaptcha_field import hCaptchaField
class Form(forms.Form):
hcaptcha = hCaptchaField()
You can override the sitekey and other default configuration by passing additional arguments:
from hcaptcha_field import hCaptchaField
class Form(forms.Form):
hcaptcha = hCaptchaField(sitekey='...', theme='dark', size='compact')
License
The scripts and documentation in this project are released under the BSD-3-Clause License.
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
File details
Details for the file django-hcaptcha-field-1.4.0.tar.gz
.
File metadata
- Download URL: django-hcaptcha-field-1.4.0.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcf2f698b1dc5f8ce411c11696df5785298df0cbd2fa564b09bd96609060bf34 |
|
MD5 | 6ce5aab122fe3b5c6b140b8aade81a1b |
|
BLAKE2b-256 | aca51555d918d03cb2a553f7d180bb7a40b5d2c190285cb191fe83da8a9c13b2 |
File details
Details for the file django_hcaptcha_field-1.4.0-py3-none-any.whl
.
File metadata
- Download URL: django_hcaptcha_field-1.4.0-py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36001030f53af709db3be01bf1d25023706b701bb7130f67f2aa58900b20df42 |
|
MD5 | f729c3e1f1eee0c0a930de000cb12c98 |
|
BLAKE2b-256 | c39a977f3f63f9183fda6573743db72c433ee293e4c5551dfa007713fa7877c4 |