Recaptcha Solver
A Python package to automatically solve Google reCAPTCHA using Selenium.
Features
- Automatically detects and solves Google reCAPTCHA challenges.
- Uses Selenium for browser automation.
- Compatible with Windows, macOS, and Linux.
Requirements
- Python 3.6 or higher
- Chrome WebDriver (ensure it matches your Chrome browser version)
- FFmpeg (auto-downloaded if not available)
Installation
pip install recaptcha_solver_google
Code Usage
from recaptcha_solver_google.solver import solve_captcha_for_google_recaptcha
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://www.google.com/recaptcha/api2/demo")
solve_captcha_for_google_recaptcha(driver)
driver.quit()