An open API service indexing awesome lists of open source software.

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.

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