Universal API to captcha solving services
Project description
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))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
captcha-solver-0.1.4.tar.gz
(6.9 kB
view details)
File details
Details for the file captcha-solver-0.1.4.tar.gz
.
File metadata
- Download URL: captcha-solver-0.1.4.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9db44f84d9c105b6072e91ce01da4fcf606dfa9b7bec3e5ec639f0a2576aceef |
|
MD5 | 8602abdc8c0f4279d2895a93485edab5 |
|
BLAKE2b-256 | 0d4a60615f159e7e8c97bccccf0ee88dacbed68023a1f62155c939140a06916c |