Selenium.webdriver.Chrome replacement with compatibility for Brave, and other Chromium based browsers. Not triggered by CloudFlare/Imperva/hCaptcha and such. NOTE: results may vary due to many factors. No guarantees are given, except for ongoing efforts in understanding detection algorithms.
Project description
Undetected
Undetectable selenium chromedriver.
Note: This project is a fork of undetected-chromedriver.
Installation
pip install undetected
Simple Usage
import undetected as uc
driver = uc.Chrome()
driver.get("https://example.com")
driver.quit()
Example Usage with Multiprocessing
import undetected as uc
from undetected.patcher import Patcher
import multiprocessing as mp
def worker(idx: int):
driver = uc.Chrome(user_multi_procs=True)
driver.get("https://example.com")
driver.quit()
if __name__ == "__main__":
Patcher.patch() # patching a unique undetected chromedriver
processes = [mp.Process(target=worker, args=(i,)) for i in range(4)]
for p in processes:
p.start()
for p in processes:
p.join()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file undetected-0.0.12.tar.gz.
File metadata
- Download URL: undetected-0.0.12.tar.gz
- Upload date:
- Size: 32.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8d97ea9f6ceca4f981a6a6574b94ca9ae75e669ce4c8fe5c7a12158b36cbcce
|
|
| MD5 |
753bab2d0f9343b8d14699b75cec2f10
|
|
| BLAKE2b-256 |
ca7d3070683162cba6d781fc9670a0bbecff068192f75fab038301371ebb8d8c
|
File details
Details for the file undetected-0.0.12-py3-none-any.whl.
File metadata
- Download URL: undetected-0.0.12-py3-none-any.whl
- Upload date:
- Size: 36.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33366cce43a69919dc75178b4597ee53f81942b636b64c9a54c859a54e7e83c9
|
|
| MD5 |
03dfbdda44f285d59937e2eccd0f4cd0
|
|
| BLAKE2b-256 |
2d3a76313a758c7b3cd761b9aa7bb87ec1dc84e830bac8ad72be96a09f3fd009
|