Skip to content

captcha_solver

255 2 10 MIT
0.1.5 (1 Mar 2019) Feb 17 2015 11.4 thousand (month)

captcha_solver is an Univeral API to work with captcha solving services.

It currently supports: - 2captcha.com (twocaptcha) - getcaptchasolution.com (antigate) - rucaptcha.com

as well as a local browser emulation approach.

Example Use


```python from captcha_solver import CaptchaSolver

use paid service:

solver = CaptchaSolver('twocaptcha', api_key='2captcha.com API HERE') solver = CaptchaSolver('rucaptcha', api_key='RUCAPTCHA_KEY') solver = CaptchaSolver('antigate', api_key='ANTIGATE_KEY')

or local browser

solver = CaptchaSolver('browser') raw_data = open('captcha.png', 'rb').read() print(solver.solve_captcha(raw_data)) ```

Alternatives / Similar


235 1.3.0 (2024-02-29 20:17:57 ago) Jul 27 2020 compare

Other Languages

Was this page helpful?