Univeral API to captcha solving services.
Installation
pip install 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))
Release files for captcha-solver 0.1.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| captcha-solver-0.1.5.tar.gz | 7.1 kB | Details |
Release files / captcha-solver-0.1.5.tar.gz
| Download URL | captcha-solver-0.1.5.tar.gz |
|---|---|
| Size | 7.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
21bf42df65597eb16fd4b45bd6f78d5e78bc3436faf5e665580a279c38007901
|
|
BLAKE2b-256 checksum How to use checksums |
bef5bf14ad4f42b4229072f235e630bd55d526a6f89ff2f5664034b85bdf5d78
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
Python-urllib/2.7
|