Skip to main content

Easy Integration of Google Recaptcha in Flask

Project description

EasyFlaskRecaptcha

EasyFlaskRecaptcha is a python Module which makes Google Recaptcha Integration in flask application easy

Installation

pip install EasyFlaskRecaptcha

Implementation

from flask import Flask
from EasyFlaskRecaptcha import ReCaptcha

app = Flask(__name__)
recaptcha = ReCaptcha(app)

app.config.update(dict(
    GOOGLE_RECAPTCHA_ENABLED=True,
    GOOGLE_RECAPTCHA_SITE_KEY="6Lf74pUpXXXXXXXXXXXXXXXi012KXXXX7KB-31XXXH",
    GOOGLE_RECAPTCHA_SECRET_KEY="6LXXXXXXXXXXAFX-ZAXXXXXGSd-y5g0o-JZXXXXB"
))
recaptcha.init_app(app)
    
## Flask Template Usage Example (Frontend)

Description: Use {{ recaptcha }} Tag inside form tag


... {{ recaptcha }}
[submit]
```

Flask Backend Route Example

@route("/submit", methods=["POST"])
def submit():
    if recaptcha.verify():
        print("SUCCESS") 
            
    else:
        print("FAILED")

More Settings

GOOGLE_RECAPTCHA_ENABLED = True
GOOGLE_RECAPTCHA_SITE_KEY = ""
GOOGLE_RECAPTCHA_SECRET_KEY = ""
GOOGLE_RECAPTCHA_THEME = "light"
GOOGLE_RECAPTCHA_TYPE = "image"
GOOGLE_RECAPTCHA_SIZE = "normal"
GOOGLE_RECAPTCHA_LANGUAGE = "en"
GOOGLE_RECAPTCHA_RTABINDEX = 10

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

EasyFlaskRecaptcha-0.0.2.tar.gz (3.4 kB view details)

Uploaded Source

Built Distribution

EasyFlaskRecaptcha-0.0.2-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file EasyFlaskRecaptcha-0.0.2.tar.gz.

File metadata

  • Download URL: EasyFlaskRecaptcha-0.0.2.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for EasyFlaskRecaptcha-0.0.2.tar.gz
Algorithm Hash digest
SHA256 c4461330f9db880091ba6eb4f708496b187e241f7fc490c07a6384efdd28345d
MD5 61aa759219e3d92c45512de2c3218d36
BLAKE2b-256 742d90873dd363274c881a2d10dfde45286c41f2f4328e5fd0178b128b630e4e

See more details on using hashes here.

File details

Details for the file EasyFlaskRecaptcha-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for EasyFlaskRecaptcha-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 19daba41440ef6f00b1e55c0f32c34d78205d885006f43c643ee32936fe74e2f
MD5 a8745abc713f7a85311808b37471e0b5
BLAKE2b-256 91c7ff55b44d1d7b18e251c5aef3fbd50c58b9333e9ad152fa99819a4125819c

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