https://github.com/zeioth/norecaptcha-python3
Python 3 client for Google No CAPTCHA reCAPTCHA services.
https://github.com/zeioth/norecaptcha-python3
Last synced: over 1 year ago
JSON representation
Python 3 client for Google No CAPTCHA reCAPTCHA services.
- Host: GitHub
- URL: https://github.com/zeioth/norecaptcha-python3
- Owner: Zeioth
- License: mit
- Created: 2015-03-05T17:33:48.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-06-19T15:38:12.000Z (about 3 years ago)
- Last Synced: 2025-03-18T13:29:07.579Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# norecaptcha-python3
Python 3 server-side library for google No CAPTCHA reCAPTCHA services.
Installation
==============
pip install norecaptcha-python3
Example of use
==============
```python
from norecaptcha3.captcha import submit
# Check captcha
r = submit(remote_ip=user_ip,
response=client_code,
secret_key=captcha_secret)
if not r.is_valid:
raise Exception('Invalid captcha')
```
This project is a fork of: https://github.com/oursky/norecaptcha