Skip to content

CapMonsterCloud/capmonstercloud-client-python

Repository files navigation

✅ CapMonster.Cloud — Fast, Reliable CAPTCHA Solving for Automation & Scraping

CapMonster Cloud

CapMonster Cloud Python SDK

PyPI version

Official Python SDK for the CapMonster Cloud API. Use this package when you want to create tasks and retrieve solutions from Python applications or scripts.

Links

Installation

python3 -m pip install capmonstercloudclient

Need to test before depositing? Contact support and we’ll add trial credits to your account.

Minimal async example

import asyncio

from capmonstercloudclient import CapMonsterClient, ClientOptions
from capmonstercloudclient.requests import RecaptchaV2Request

client_options = ClientOptions(api_key="<YOUR_API_KEY>")
cap_monster_client = CapMonsterClient(options=client_options)

recaptcha2request = RecaptchaV2Request(
    websiteUrl="https://lessons.zennolab.com/captchas/recaptcha/v2_simple.php?level=high",
    websiteKey="6Lcg7CMUAAAAANphynKgn9YAgA4tQ2KI_iqRyTwd",
)

async def solve_captcha():
    return await cap_monster_client.solve_captcha(recaptcha2request)

response = asyncio.run(solve_captcha())
print(response)

Supported task families include reCAPTCHA, GeeTest, Turnstile, image-to-text, and additional task types documented in the public docs.

Supported request classes:

⭐️ If you find this project useful, please give it a star on GitHub!

About

Python SDK to bypass captchas using CapMonster Cloud API. Supports reCAPTCHA v2/v3 Enterprise, GeeTest, Cloudflare Turnstile, FunCaptcha, Friendly Captcha, Amazon WAF, DataDome, Imperva, MTCaptcha, Yidun, Alibaba, Binance, custom image tasks, and others. Fully async, ready for high-load automation.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors