Official Python SDK for CaptchaSolv.com - Fast captcha solving API
Project description
CaptchaSolv Python SDK
Official Python library for CaptchaSolv.com - Fast and reliable captcha solving API.
Supported Captcha Types
- ReCaptcha V3
- Cloudflare Turnstile
- GeeTest V4
- Akamai Bot Manager
- Kasada
- DataDome
- AWS WAF
Installation
pip install captchasolv
For async support:
pip install captchasolv[async]
Quick Start
from captchasolv import CaptchaSolv
solver = CaptchaSolv("YOUR_API_KEY")
result = solver.turnstile(
website_url="https://example.com",
website_key="0x4AAAAAAABS7vwvV6VFfMcD"
)
print(result.solution.token)
Async Usage
import asyncio
from captchasolv import AsyncCaptchaSolv
async def main():
async with AsyncCaptchaSolv("YOUR_API_KEY") as solver:
result = await solver.turnstile(
website_url="https://example.com",
website_key="0x4AAAAAAABS7vwvV6VFfMcD"
)
print(result.solution.token)
asyncio.run(main())
Examples
ReCaptcha V3
result = solver.recaptcha_v3(
website_url="https://example.com",
website_key="6Le-wvkSAAAAAPBMRTvw0Q4Muexq1bi0DJwx_mJ-",
page_action="login"
)
Cloudflare Turnstile
result = solver.turnstile(
website_url="https://example.com",
website_key="0x4AAAAAAABS7vwvV6VFfMcD"
)
Akamai
result = solver.akamai(website_url="https://example.com")
print(result.solution.cookies)
Kasada
result = solver.kasada(website_url="https://example.com")
print(result.solution.headers)
DataDome
result = solver.datadome(
website_url="https://example.com",
captcha_url="https://geo.captcha-delivery.com/captcha/?..."
)
print(result.solution.cookies)
AWS WAF
result = solver.aws_waf(website_url="https://example.com")
GeeTest V4
result = solver.geetest_v4(
website_url="https://example.com",
captcha_id="647f5ed2ed8acb4be36784e01556bb71"
)
Generic Solve Method
For advanced usage or custom task types:
from captchasolv import CaptchaSolv, TaskType
solver = CaptchaSolv("YOUR_API_KEY")
result = solver.solve(
task_type=TaskType.TURNSTILE,
website_url="https://example.com",
website_key="0x4AAAAAAABS7vwvV6VFfMcD",
user_agent="Mozilla/5.0 ...",
)
Async/Polling Mode
For long-running tasks, you can create a task and poll separately:
task_id = solver.create_task(
task_type=TaskType.TURNSTILE,
website_url="https://example.com",
website_key="0x4AAAAAAABS7vwvV6VFfMcD"
)
result = solver.wait_for_result(task_id, timeout=120)
print(result.solution.token)
Check Balance
balance = solver.get_balance()
print(f"Balance: ${balance}")
Error Handling
from captchasolv import (
CaptchaSolv,
CaptchaSolvError,
InvalidKeyError,
LimitExceededError,
CaptchaUnsolvableError,
)
try:
result = solver.turnstile(...)
except InvalidKeyError:
print("Invalid API key")
except LimitExceededError:
print("Balance exhausted or rate limit reached")
except CaptchaUnsolvableError:
print("Failed to solve captcha, retry")
except CaptchaSolvError as e:
print(f"Error {e.error_code}: {e.error_description}")
Configuration
solver = CaptchaSolv(
api_key="YOUR_API_KEY",
base_url="https://v1.captchasolv.com",
timeout=130.0,
poll_interval=3.0,
)
Response Object
result = solver.recaptcha_v2(...)
print(result.status)
print(result.solution.token)
print(result.solution.user_agent)
print(result.solution.cookies)
print(result.cost)
print(result.solve_count)
Links
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
captchasolv-1.0.0.tar.gz
(10.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file captchasolv-1.0.0.tar.gz.
File metadata
- Download URL: captchasolv-1.0.0.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a05b2dd04fd01c80557fc69482df628fa822ee262d8c55a729e5e62506585617
|
|
| MD5 |
e693956985575e8e5365e4ba9fc4bfa2
|
|
| BLAKE2b-256 |
e9a88837e7ead3e2e63a9160e035bfd18366f10c87ca1fe30b38ed37f060456b
|
File details
Details for the file captchasolv-1.0.0-py3-none-any.whl.
File metadata
- Download URL: captchasolv-1.0.0-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a03c95a43bb450538bc3ef4cdc2abec1deedd8728750e3e51bde8965262c702b
|
|
| MD5 |
19a925a7db793d4d4cfa7d4d4c67179d
|
|
| BLAKE2b-256 |
87fb6bd665e77134a9288d494abfb13c8df0b1a62c64915e752a06b2f7eddb3d
|