Custom WTForms field that handles reCaptcha display and validation
Project description
Overview
WTForms-reCaptcha is a convenient field for WTForms that transparently handles reCaptcha display and validation via corresponding widget and validator classes.
reCaptcha
Installation
Get the distribution:
pip install wtforms-recaptcha
or if you want the latest:
pip install hg+http://bitbucket.org/excieve/wtforms-recaptcha#egg=wtforms-recaptcha
or get hg clone of the source code:
hg clone http://bitbucket.org/excieve/wtforms-recaptcha cd wtforms-recaptcha python setup.py install
Usage
It is mostly the usual WTForms field that needs some extra data and parameters. Here’s a simple example:
from wtforms.form import Form
from wtfrecaptcha.fields import RecaptchaField
class CaptchaForm(Form):
captcha = RecaptchaField(public_key=RECAPTCHA_PUB_KEY, private_key=RECAPTCHA_PRIV_KEY, secure=True)
form = CaptchaForm(request.POST, captcha={'ip_address': request.META['REMOTE_ADDR']})
if form.validate():
print "Captcha response is correct"
else:
print form.errors['captcha']
Some description of field’s parameters:
- public_key:
Public key generated by reCaptcha service
- private_key:
Private key generated by reCaptcha service
- secure:
True if it should be served via HTTPS, False otherwise. Default: False.
- http_proxy:
URL of HTTP proxy for API calls
When form with RecaptchaField is instantiated with bound fields, it must include captcha keyword parameter with dict that has ‘ip_address’ element.
Other details
Accessing field as a string will get the widget code with URLs that depend on secure parameter passed to the field.
HTTP errors and errors that are indepentent of user input are logged. Others are handled as validation errors.
License
See LICENSE for full licensing information.
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
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 wtforms-recaptcha-0.3.2.tar.gz.
File metadata
- Download URL: wtforms-recaptcha-0.3.2.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b566bffea417b05beb3424ca777e8618beb25770ac237c37c0bf8dd1db0e8496
|
|
| MD5 |
c3d7d1d02d0ecdb50d653c4e46ba75b1
|
|
| BLAKE2b-256 |
20ae90bf651b4fb0fbbaa2851bfd2298d011f8b6110e4b6778b8d72ca308a1a9
|
File details
Details for the file wtforms_recaptcha-0.3.2-py2.py3-none-any.whl.
File metadata
- Download URL: wtforms_recaptcha-0.3.2-py2.py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9ace04fd1a939325276794f1816a97ddd84ef1b11f3f328670f7341e4450cb3
|
|
| MD5 |
8bac14d9baf1dc7224f962914a502910
|
|
| BLAKE2b-256 |
5cb042021ab061b768e3e5f430466219468c2afec99fe706e4340792d7a6fab4
|