Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tufayellus/cloudflare-bypass-python-code

This template repository contains python code that implements nodriver library to load website and solve(manually/automated) captcha that fails with selenium/undetected chromedriver
https://github.com/tufayellus/cloudflare-bypass-python-code

antibot-bypass antibot-solver bypass-bot-detection-systems cloudflare-bypass cloudflare-bypass-script cloudflare-bypasser nodriver python

Last synced: about 1 month ago
JSON representation

This template repository contains python code that implements nodriver library to load website and solve(manually/automated) captcha that fails with selenium/undetected chromedriver

Awesome Lists containing this project

README

        

# Cloudflare Bypass Python Code
This template repository contains Python code that implements nodriver library to load websites and solve(manually/automated) captcha that fail with selenium/undetected chromedriver

Nodriver library is an official successor of undetected chromedriver library that gets rid of relying on webdriver files completely. This is also capable of convincing websites as a regular browser so that the bot detection ratio is minimal. In many websites, undetected chromedriver fails to pass Cloudflare browser verification. In those cases, nodriver does wonders and can load such websites easily. As an automation software developer, I used this library in my client projects that have Cloudflare protection and it helps in my process.

# Installation command

pip install nodriver

# Concept
You can use nodriver to load a website and get its source code. An example code can be like below


import nodriver as uc
from bs4 import BeautifulSoup as bs
driver = await uc.start()
page = await driver.get("https://google.com")
text = await page.get_content()
soup = bs(text, 'html.parser')
print(soup.find("body").text)
driver.stop()

# Documentation Page Link for nodriver Library
Click here

# How to set 2captcha api key?
Put this in
https://github.com/TufayelLUS/Cloudflare-Bypass-Python-Code/blob/main/plugin/2captcha/common/config.js file's apiKey placeholder. The rest of the extension operation is automated.
If you want to enable/disable other 2captcha auto-detection, you can do so in the same config file.