Skip to content

Latest commit

 

History

History
82 lines (61 loc) · 5.19 KB

File metadata and controls

82 lines (61 loc) · 5.19 KB

✅ 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!