Skip to main content

The working Google ReCaptcha implementation for Flask without Flask-WTF

Project description

Flask Google ReCaptcha

PyPI pyversions

The Working Google ReCaptcha implementation for Flask without Flask-WTF.

Can also be used as standalone


Install

pip install Flask-GoogleReCaptcha

# or

pip install git+https://github.com/AndersonFirmino/flask-google-recaptcha.git

If you are using pipenv
pipenv install Flask-GoogleReCaptcha

This implementation is pure and has no dependencies from third parties. Works in both Python2 and Python3. You can use it in any flask project.

Has Google App Engine (GAE) support!

Usage

Implementation view.py

from flask import Flask
from flask_google_recaptcha import GoogleReCaptcha

app = Flask(__name__)
recaptcha = GoogleReCaptcha(app=app)

# or

recaptcha = GoogleReCaptcha()
recaptcha.init_app(app)

In your template: {{ recaptcha }}

Inside of the form you want to protect, include the tag: {{ recaptcha }}

It will insert the code automatically

<form method="post" action="/submit">
    ... your field
    ... your field

    {{ recaptcha }}

    [submit button]
</form>

Verify the captcha

In the view that's going to validate the captcha

from flask import Flask
from flask_google_recaptcha import GoogleReCaptcha

app = Flask(__name__)
recaptcha = GoogleReCaptcha(app=app)

@route("/submit", methods=["POST"])
def submit():

    if recaptcha.verify():
        # SUCCESS
        pass
    else:
        # FAILED
        pass

Remember to set SITE_KEY and SECRET_KEY if not it does not appear!

Api

reCaptcha.init(app, site_key, secret_key, is_enabled=True)

reCaptcha.get_code()

Returns the HTML code to implement. But you can use {{ recaptcha }} directly in your template

reCaptcha.verfiy()

Returns bool

In Template

Just include {{ recaptcha }} wherever you want to show the recaptcha

Config

Flask-ReCaptcha is configured through the standard Flask config API. These are the available options:

RECAPTCHA_ENABLED: Bool - True by default, when False it will bypass validation

RECAPTCHA_SITE_KEY : Public key

RECAPTCHA_SECRET_KEY: Private key

The following are Optional arguments.

RECAPTCHA_THEME: String - Theme can be 'light'(default) or 'dark'

RECAPTCHA_TYPE: String - Type of recaptcha can be 'image'(default) or 'audio'

RECAPTCHA_SIZE: String - Size of the image can be 'normal'(default) or 'compact'

RECAPTCHA_TABINDEX: Int - Tabindex of the widget can be used, if the page uses tabidex, to make navigation easier. Defaults to 0

RECAPTCHA_ENABLED = True
RECAPTCHA_SITE_KEY = ""
RECAPTCHA_SECRET_KEY = ""
RECAPTCHA_THEME = "dark"
RECAPTCHA_TYPE = "image"
RECAPTCHA_SIZE = "compact"
RECAPTCHA_RTABINDEX = 10

Anderson Araujo (coderpy) :snake:

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

Flask_GoogleRecaptcha-0.5.8-py2.py3-none-any.whl (4.3 kB view details)

Uploaded Python 2Python 3

File details

Details for the file Flask_GoogleRecaptcha-0.5.8-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for Flask_GoogleRecaptcha-0.5.8-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7a07badbf4b8a398152a91eec44f8fc6d8c1e02ea0b60cd03568da1d5948fc7f
MD5 564197a6d74e6aa44fbac7a04f804679
BLAKE2b-256 16f4d3cbea930a1625fa7c79a11a4a14b53066377eb6c16120a3fc84c93ea975

See more details on using hashes here.

Supported by

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