A Python library to interact with mCaptcha API
Go to file
Aravinth Manivannan 68f06ac141
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/tag/woodpecker Pipeline was successful Details
feat: prep for 0.1.0 release
2023-12-31 21:45:32 +05:30
.reuse feat: init 2023-12-31 21:09:02 +05:30
LICENSES feat: init 2023-12-31 21:09:02 +05:30
scripts fix: mcaptcha-cli download script 2023-12-31 21:20:42 +05:30
src/mcaptcha_api feat: document lib usage 2023-12-31 21:45:15 +05:30
tests feat: test API library against mcaptcha server 2023-12-31 21:10:07 +05:30
.env_sample feat: test API library against mcaptcha server 2023-12-31 21:10:07 +05:30
.gitignore feat: document lib usage 2023-12-31 21:45:15 +05:30
.woodpecker.yml fix: CI: inject env vars 2023-12-31 21:17:15 +05:30
Makefile fix: CI: rm shell redirection 2023-12-31 21:16:18 +05:30
README.md feat: document lib usage 2023-12-31 21:45:15 +05:30
pyproject.toml feat: prep for 0.1.0 release 2023-12-31 21:45:32 +05:30
requirements.txt feat: init 2023-12-31 21:09:02 +05:30

README.md

status-badge


mcaptcha_api: Python library to interact with mCaptcha server

Installation

pip install mcaptcha_api

Usage

Parameter Info
instance_url the URL of the mCaptcha instance you are using
sitekey The captcha identifier; can be obtained from dashboard or from widget URL (http://hostname/widget?sitekey=<sitekey>
secret Account secret; can be obtained from mCaptcha dashboard account settings page
mcaptcha = MCaptcha(instance_url=INSTANCE_URL, sitekey=SITEKEY, secret=SECRET)
assert mcaptcha.verify(token=TOKEN) is True