Skip to main content

Django hCaptcha Field provides a simple way to protect your Django forms using hCaptcha.

Project description

Django hCaptcha Field

Python unit tests Linters

Django hCaptcha Field provides a simple way to protect your Django forms using hCaptcha.

This is a fork of django-hcaptcha.

Installation

  1. Install using pip:

    $ pip install django-hcaptcha-field
    
  2. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-hcaptcha-field-0.9.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

django_hcaptcha_field-0.9-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file django-hcaptcha-field-0.9.tar.gz.

File metadata

  • Download URL: django-hcaptcha-field-0.9.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for django-hcaptcha-field-0.9.tar.gz
Algorithm Hash digest
SHA256 0abf4d0d7160bf38c2a939245ba3e6496a643c96bc21a69db6306339ca090049
MD5 91f44483027d783acae2f0999b001fc3
BLAKE2b-256 b5a92bdf26d7005a5484fe2a22c1af32d7128f65e13f1de349ab77029aa8504e

See more details on using hashes here.

File details

Details for the file django_hcaptcha_field-0.9-py3-none-any.whl.

File metadata

  • Download URL: django_hcaptcha_field-0.9-py3-none-any.whl
  • Upload date:
  • Size: 7.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for django_hcaptcha_field-0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 da495c4d405ef791f60d2bc95fb11b4c208bed983f03628588b94090e9b88858
MD5 14f455e9883ab61ef95d7365b4219b93
BLAKE2b-256 0e4b7cdba58684ee5cfe4eb8afeb8e127c6493acb07beb101c425d5f6ac8f7bb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page