A Python library to interact with mCaptcha API
Find a file
Renovate Bot 3be86091e4
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
chore(deps): update dependency pytest to v8.3.2
2024-07-25 11:04:01 +00:00
.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
pyproject.toml chore(deps): update dependency urllib3 to v2.2.2 2024-06-18 13:38:36 +00:00
README.md feat: document lib usage 2023-12-31 21:45:15 +05:30
renovate.json Add renovate.json 2024-06-04 07:36:06 +00:00
requirements.txt chore(deps): update dependency pytest to v8.3.2 2024-07-25 11:04:01 +00:00

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