We love bots β€οΈ, but Google doesn't. So, here is the solution to bypass Google reCAPTCHA.
Solve Google reCAPTCHA less than 5 seconds! π
This is a Python script to solve Google reCAPTCHA using the DrissionPage library. Selenium implementation will be added soon.
Good news! Selenium implementation is added. Thanks to @obaskly for the contribution. Check out the selenium branch for more details.
Need Reliable Proxies? IPcook Has Got You Covered
- π 99.99% Uptime
- β‘ Avg. Response Time < 0.5s
- π Up to 10 Sub-accounts
- π 24/7 Premium Support
- β° Sticky Sessions up to 24h
- π Free Geo-Targeting
- βΎοΈ Unlimited Bandwidth
π Start with a FREE 100MB Trial
πΈ Use code WELCOME20 for 20% OFF
RapidProxy β Power Your Data with Premium Proxies
π Try proxies for free + Use code RAPID10 for 10% OFF
Why Choose RapidProxy?
- 90M+ IPs in 200+ countries & regions
- No expiration on traffic β use anytime, no pressure
- Unlimited concurrency for maximum performance
- Starting from just $0.65/GB β built for scale
- City-level targeting for precise geo access
- Flexible session control tailored to your needs
- Enterprise-grade speed & reliability
- Built for large-scale automation
π‘ Built for Growth
Whether you're scaling scraping operations, running automation, or accessing global content, RapidProxy delivers the speed, stability, and flexibility you need to grow without limits.
π Start your free trial today: https://www.rapidproxy.io/?ref=sarperavci
Three dependencies are required to run this script. You can install them using the following command:
pip install -r requirements.txtAlso, you need to install ffmpeg. You can download it from here.
sudo apt-get install ffmpegTo implement this script in your project, you can follow a similar approach as shown below:
from DrissionPage import ChromiumPage
from RecaptchaSolver import RecaptchaSolver
driver = ChromiumPage()
recaptchaSolver = RecaptchaSolver(driver)
driver.get("https://www.google.com/recaptcha/api2/demo")
recaptchaSolver.solveCaptcha()I have created test.py to demonstrate the usage of this script. You can run the test.py file to see the script in action.
We automate the browser to solve the reCAPTCHA. Instead of image captcha, we are solving the audio captcha. The audio captcha is easier to solve programmatically.
One warning: Google may block your IP if you solve too many captchas in a short period of time. So, use this script wisely or change your IP frequently.


