Matthew17-21 / Captcha-Tools

CAPTCHAFORUM

Administrator
1653313186303.png

Captcha Tools
Python module to help solve captchas with Capmonster, 2Captcha and Anticaptcha API's!

Install
pip3 install captchatools

To update
pip3 install -U captchatools

How to use
Code:
import captchatools
solver = captchatools.captcha_harvesters(solving_site="capmonster", api_key="YOUR API KEY", sitekey="SITEKEY", captcha_url="https://www.google.com/recaptcha/api2/demo")
captcha_answer = solver.get_token()
or
Code:
from captchatools import captcha_harvesters, exceptions
solver = captcha_harvesters(solving_site=1, api_key="YOUR API KEY", sitekey="SITEKEY", captcha_url="https://www.google.com/recaptcha/api2/demo")
captcha_answer = solver.get_token()

Documentation https://github.com/Matthew17-21/Captcha-Tools