Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 2.06 KB

README.md

File metadata and controls

60 lines (41 loc) · 2.06 KB

Captcha Solver Documentation

Test Status Code Quality Type Check Test Coverage Status Documentation Status

Univeral API to work with captcha solving services.

Feel free to give feedback in Telegram groups: @grablab and @grablab_ru

Installation

Run: pip install -U captcha-solver

Twocaptcha Backend Example

Service website is https://2captcha.com?from=3019071

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?from=3019071

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))

Browser Backend Example

from captcha_solver import CaptchaSolver

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

Antigate Backend Example

Service website is http://getcaptchasolution.com/ijykrofoxz

from captcha_solver import CaptchaSolver

solver = CaptchaSolver('antigate', api_key='ANTIGATE_KEY')
raw_data = open('captcha.png', 'rb').read()
print(solver.solve_captcha(raw_data))