Skip to main content

python-rucaptcha

PyPI version Python versions Downloads Documentation

Python 3.9+ library to solve CAPTCHAs automatically using RuCaptcha, 2Captcha, DeathByCaptcha, or CaptchaAI services.

Using CaptchaAI: compatible high-level classes can pass service_type=ServiceEnm.CAPTCHAAI. CaptchaAI uses the classic multipart in.php/res.php endpoints.

from python_rucaptcha.turnstile import Turnstile
from python_rucaptcha.core.enums import ServiceEnm
result = Turnstile(
    rucaptcha_key="CAPTCHAAI_KEY",
    service_type=ServiceEnm.CAPTCHAAI,
    websiteURL="https://example.com",
    websiteKey="0x4AAAAAAA...",
    userAgent="Mozilla/5.0 ...",
).captcha_handler()

Proxy task types require proxyType, proxyAddress, and proxyPort; credentials are optional:

from python_rucaptcha.re_captcha import ReCaptcha
from python_rucaptcha.core.enums import ReCaptchaEnm, ServiceEnm

result = ReCaptcha(
    rucaptcha_key="CAPTCHAAI_KEY",
    service_type=ServiceEnm.CAPTCHAAI,
    websiteURL="https://example.com/login",
    websiteKey="SITE_KEY",
    method=ReCaptchaEnm.RecaptchaV2Task,
    proxyType="HTTPS",
    proxyAddress="203.0.113.7",
    proxyPort=3128,
    proxyLogin="user",
    proxyPassword="pass",
).captcha_handler()

For every documented CaptchaAI method—or a provider method released after this package—use the native, type-free client. profile validates a packaged documented contract; omit it to pass provider-native fields through unchanged.

from python_rucaptcha.captchaai import CaptchaAI, CaptchaAIFile

result = CaptchaAI(
    rucaptcha_key="CAPTCHAAI_KEY",
    profile="cloudflare-challenge",
    params={
        "pageurl": "https://example.com/protected",
        "proxy": "user:pass@203.0.113.7:3128",
        "proxytype": "HTTPS",
    },
).captcha_handler()

image = CaptchaAI(
    rucaptcha_key="CAPTCHAAI_KEY",
    profile="normal-solve-file",
    files={"file": CaptchaAIFile(b"... PNG bytes ...", "captcha.png", "image/png")},
).captcha_handler()

What is this?

This library automates CAPTCHA solving by connecting to third-party services. When your code encounters a CAPTCHA, python-rucaptcha sends it to the service, waits for a human to solve it, and returns the solution to your application.

Supports 30+ CAPTCHA types:

  • reCAPTCHA v2/v3, hCaptcha, Cloudflare Turnstile
  • Image captchas, Audio captchas
  • GeeTest, KeyCaptcha, Amazon WAF, Tencent
  • And many more...

Quick Start

1. Install

pip install python-rucaptcha

2. Get an API Key

Sign up at RuCaptcha or 2Captcha, then copy your API key from the dashboard.

3. Solve a CAPTCHA

from python_rucaptcha import HCaptcha

# Your API key
key = "your_api_key_here"

# Solve hCaptcha
result = HCaptcha(aptcha_key=key).captcha_handler(site_url="https://example.com", site_key="abc123")

if result['code'] == 0:
    print(f"Solved! Token: {result['token']}")
else:
    print(f"Error: {result['message']}")

Solving Different CAPTCHA Types

reCAPTCHA v2:

from python_rucaptcha import ReCaptcha

result = ReCaptcha(api_key).captcha_handler(
    site_url="https://example.com",
    site_key="your_site_key"
)

Image CAPTCHA:

from python_rucaptcha import ImageCaptcha

result = ImageCaptcha(api_key).captcha_handler(
    image_link="https://example.com/captcha.jpg"
)

ALTCHA:

from python_rucaptcha import AltchaCaptcha
from python_rucaptcha.core.enums import AltchaEnm

result = AltchaCaptcha(
    rucaptcha_key=api_key,
    websiteURL="https://example.com",
    challengeURL="https://example.com/altcha/challenge",
    method=AltchaEnm.AltchaTaskProxyless,
).captcha_handler()

Using async:

import asyncio
from python_rucaptcha import HCaptcha

async def solve():
    result = await HCaptcha(api_key).aio_captcha_handler(
        site_url="https://example.com",
        site_key="abc123"
    )
    return result

token = asyncio.run(solve())

Supported CAPTCHA Types

CAPTCHA Module Description
reCAPTCHA v2/v3 ReCaptcha Google reCAPTCHA
hCaptcha HCaptcha hCaptcha challenge
Cloudflare Turnstile Turnstile Cloudflare protection
Image ImageCaptcha Type the text from image
Audio AudioCaptcha Listen and type audio
GeeTest GeeTest Chinese geetest puzzles
KeyCaptcha KeyCaptcha KeyCAPTCHA service
Amazon WAF AmazonWaf AWS WAF challenge
ALTCHA AltchaCaptcha ALTCHA challenge
TSPD TSPDCaptcha Cookie-based TSPD protection
Basilisk BasiliskCaptcha Token-based Basilisk challenge
Alibaba AlibabaCaptcha Token-based Alibaba challenge
Imperva/Incapsula IncapsulaCaptcha Cookie-based Imperva protection
Binance BinanceCaptcha Token-based Binance challenge
Grid GridCaptcha Select grid cells
Coordinates CoordinatesCaptcha Click on coordinates
And 20+ more ... See full docs

Switching Services

Use the same code with different services:

from python_rucaptcha import HCaptcha
from python_rucaptcha.core.enums import ServiceEnm

# Use 2Captcha (default)
result = HCaptcha("2captcha_key").captcha_handler(...)

# Use RuCaptcha
result = HCaptcha("rucaptcha_key", service_type=ServiceEnm.RuCaptcha).captcha_handler(...)

# Use DeathByCaptcha
result = HCaptcha("dbc_user:dbc_pass", service_type=ServiceEnm.DeathByCaptcha).captcha_handler(...)

Testing

# Set your API key
export RUCAPTCHA_KEY="your_key_here"

# Run tests
make tests

Documentation

For advanced usage, configuration options, and all CAPTCHA types, see the full documentation.

Support

Changelog

See Releases for full changelog.

  • v6.0 - Refactored to use msgspec (faster), API v2, dropped Python 3.8
  • v5.3 - Added DeathByCaptcha support
  • v5.2 - Added audio CAPTCHA solving

Release files for python-rucaptcha 6.8.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for python-rucaptcha 6.8.0
File Size Uploaded
python_rucaptcha-6.8.0.tar.gz 61.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for python-rucaptcha 6.8.0
File Interpreter ABI Platform
python_rucaptcha-6.8.0-py3-none-any.whl Python 3 none any Details

Total release size: 135.4 kB

Release files / python_rucaptcha-6.8.0.tar.gz

Download URL python_rucaptcha-6.8.0.tar.gz
Size 61.1 kB
Tags Source
SHA-256 checksum
How to use checksums
af09590e206cf50461c4444a1e822719d1cfdf372e4d96e8ac99b815e4d0da74
BLAKE2b-256 checksum
How to use checksums
e66c77f65487309854abda907c38e293c0c60450b26c39e7eed0e79089bc0234
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / python_rucaptcha-6.8.0-py3-none-any.whl

Download URL python_rucaptcha-6.8.0-py3-none-any.whl
Size 74.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
afd5018ef47fac8c37b88907d0ece9420242156e200633b80776e4c7f939b1ee
BLAKE2b-256 checksum
How to use checksums
8db6dff871b58096022aeff7a0e2c29d8737fccd0bffab60f23dc106150a1687
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release history Release notifications | RSS feed

This release

6.8.0 This release

2 release files

6.7.0

2 release files

6.6.0

2 release files

6.5.0

2 release files

6.4.0

2 release files

6.3.2

2 release files

6.3.1

2 release files

6.3

2 release files

6.2

2 release files

6.1.2

2 release files

6.1.1

2 release files

6.1

3 release files

6.0.3

2 release files

6.0.2

2 release files

6.0.1

2 release files

6.0

2 release files

5.3.1

2 release files

5.3

2 release files

5.2.3

2 release files

5.2.2

2 release files

5.2.1

2 release files

5.2

2 release files

5.1.5

2 release files

5.1.4

2 release files

5.1.3

1 release file

5.1.2

1 release file

5.1.1

1 release file

5.1

1 release file

4.3.1

1 release file

4.3

1 release file

4.2

2 release files

4.1

2 release files

3.0.1

2 release files

3.0

2 release files

2.6.4

2 release files

2.6.3

2 release files

2.6.2

2 release files

2.6.1

2 release files

2.6

2 release files

2.5.4

2 release files

2.5.3

2 release files

2.5.2

2 release files

2.5.1

2 release files

2.5

2 release files

2.4

2 release files

2.3

2 release files

2.2.1

2 release files

1.6.5

1 release file

1.6.4

1 release file

1.6.3

1 release file

1.6.2

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page