Solve reCAPTCHA v3 challenges automatically - Python package with API support.
pip install v3capfrom v3cap import get_recaptcha_token
token = get_recaptcha_token(
site_key="6LcwvFgrAAAAAG5UjzyiOkNe-3ekjPHJv0FUzeVy",
page_url="https://demo-v3cap.vercel.app",
action="demo/v3cap"
)
print(token)# Start server
v3cap
# Alternative
python -m v3capServer runs on http://0.0.0.0:8000
POST /solve_recaptcha/- Parameters:
site_key,page_url,action - Returns: JSON with token
- Parameters:
docker build -t v3cap .
docker run -p 8000:8000 v3cap- Python 3.10+
- Chrome
- ChromeDriver
This tool is intended for educational and testing purposes only. Using this tool to circumvent reCAPTCHA on websites may violate their terms of service. Users are responsible for ensuring they have proper authorization to use this tool on any website. The author takes no responsibility for misuse of this software.
MIT