Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpapathanasiou/python-recaptcha
This code handles reCaptcha form submissions in Python
https://github.com/dpapathanasiou/python-recaptcha
Last synced: about 2 months ago
JSON representation
This code handles reCaptcha form submissions in Python
- Host: GitHub
- URL: https://github.com/dpapathanasiou/python-recaptcha
- Owner: dpapathanasiou
- License: mit
- Created: 2012-01-29T17:25:27.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-08-03T22:47:17.000Z (over 12 years ago)
- Last Synced: 2023-03-22T13:04:46.692Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 89.8 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
This code handles reCaptcha (http://www.google.com/recaptcha) form
submissions in Python.Set the recaptcha_private_key variable to the one provided for your
domain, and call:confirm (client_ip_address, recaptcha_challenge_field,
recaptcha_response_field)Which returns either True (i.e., the captcha was completed correctly)
or False.The client_ip_address, recaptcha_challenge_field, recaptcha_response_field
fields are provided by parsing the results of POSTing the form (e.g.,
using a web server module like mod_python, mod_wsgi, or FastCGI).