CAPTCHAFORUM
Administrator
Univeral API to captcha solving services.
Installation
Twocaptcha Backend Example
Service website is https://2captcha.com
Rucaptcha Backend Example
Service website is https://rucaptcha.com
Documentation https://githubmemory.com/repo/lorien/captcha_solver
Installation
pip install captcha-solver
Twocaptcha Backend Example
Service website is https://2captcha.com
Code:
from captcha_solver import CaptchaSolver
solver = CaptchaSolver('twocaptcha', api_key='2captcha.com API HERE')
raw_data = open('captcha.png', 'rb').read()
print(solver.solve_captcha(raw_data))
Rucaptcha Backend Example
Service website is https://rucaptcha.com
Code:
from captcha_solver import CaptchaSolver
solver = CaptchaSolver('rucaptcha', api_key='RUCAPTCHA_KEY')
raw_data = open('captcha.png', 'rb').read()
print(solver.solve_captcha(raw_data))
Documentation https://githubmemory.com/repo/lorien/captcha_solver