Skip to content

captcha_solver

236 2 10 MIT
0.1.5 (1 Mar 2019) Feb 17 2015 3.3 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


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


211 1.3.0 (4 months ago) Jul 27 2020 compare

Other Languages

Was this page helpful?