--- id: anticaptchaofficial version: "1.0.70" license: MIT license_treatment: permissive maintenance: active --- # anticaptchaofficial — Official anti-captcha.com library License: permissive · Maintenance: active · Downloads: 133.1K/mo ## What it is and what it does anticaptchaofficial is the official Python client for Anti-Captcha, a captcha-solving service that has operated since 2007. It provides a straightforward API to submit various types of CAPTCHAs—including image text recognition, Google reCAPTCHA (v2 and v3), hCaptcha, FunCaptcha, GeeTest, Turnstile, and several others—to Anti-Captcha's servers and retrieve the solved tokens or text. The library handles the HTTP communication via requests and manages API key authentication, task creation, and result polling. The package is designed for developers who need to automate CAPTCHA solving in web scraping, testing, or other automation workflows. It exposes solver classes for each captcha type, allowing you to configure parameters (website URL, site keys, etc.), submit the task, and retrieve the solution. Pricing is per-token, starting from $0.0005, and the library supports optional features like reporting incorrect solutions and earning commission through a softId parameter. Use it for: - Automate web scraping workflows that encounter reCAPTCHA or hCaptcha barriers. - Test web applications that use CAPTCHA protection without manual intervention. - Bypass Turnstile or Cloudflare challenges in automated API clients. - Solve image-based CAPTCHAs in batch processing or data collection pipelines. - Integrate CAPTCHA solving into security testing or penetration testing tools. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Solves CAPTCHAs and related challenges (image text, reCAPTCHA v2/v3, hCaptcha, FunCaptcha, GeeTest, Turnstile, and others) by submitting them to the Anti-Captcha service and returning the solution token. Yes, if you have a legitimate need to automate CAPTCHA solving and an active Anti-Captcha account. The package is actively maintained, has low install friction, carries a permissive MIT license, and supports a wide range of captcha types with straightforward APIs. No known security vulnerabilities. Install only if you understand the terms of service of the target websites and Anti-Captcha's acceptable use policy. ## Install pip install anticaptchaofficial uv add anticaptchaofficial poetry add anticaptchaofficial ## Installing anticaptchaofficial Before you install: Low install friction with only two runtime dependencies (py and requests). The package is actively maintained, with a recent release 56 days ago and ongoing commits. Repository shows modest but steady engagement with 63 stars. License in practice: MIT license is permissive, allowing free use, modification, and distribution with minimal restrictions—suitable for both open-source and commercial projects. Quickstart: pip install anticaptchaofficial from anticaptchaofficial.recaptchav2proxyless import recaptchaV2Proxyless solver = recaptchaV2Proxyless() solver.set_key("YOUR_API_KEY") solver.set_website_url("https://website.com") solver.set_website_key("SITE_KEY") g_response = solver.solve_and_return_solution() if g_response != 0: print("g-response: " + g_response) else: print("error: " + solver.error_code) Requires an active Anti-Captcha account and API key; solving captchas incurs per-token charges starting from $0.0005 per token. Verify before relying: - Whether the package supports all listed captcha types (image, reCAPTCHA v2/v3 Enterprise, hCaptcha, FunCaptcha, GeeTest v3/v4, Turnstile, Prosopo, Friendly Captcha, Amazon WAF, Altcha) equally well or if some are better-tested than others. - Whether the 10% commission feature (softId) is actively maintained and reliable. - Performance characteristics and typical response times for different captcha types. ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: active - Downloads: 133.1K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags captcha solving library, recaptcha solver python, anti-captcha api client, bypass captcha challenges, hcaptcha turnstile solver, automated captcha recognition, captcha token retrieval, captcha-solving, web-automation, api-client [View on SkillFed](https://skillfed.io/packages/anticaptchaofficial) · [View on PyPI](https://pypi.org/project/anticaptchaofficial/)