Metadata-Version: 2.1
Name: lucd
Version: 0.1.0
Summary: Create Local Undetectable Chrome Driver
Home-page: https://github.com/SelmiAbderrahim/CreateUndetectableChromeDriver
Author: Selmi Abderrahim
Author-email: contact@selmi.tech
License: MIT
Keywords: python,undetectable,chrome,selenium,webdriver
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENCE

# Create Local Undetectable Chrome Driver (LUCD)

This program will download a Chrome driver that you can use for your Python Selenium code.

## Features

- Download the exact chrome driver based on your OS and installed chrome version.

- Remove browser control flag

- Remove signature in javascript

- Set User-Agent

- Use maximum resolution

## Installation

```
$ pip install lucd 
```

or

```
$ pip install git+https://github.com/SelmiAbderrahim/CreateUndetectableChromeDriver
```

## Usage

```

from lucd.driver import Driver
driver = Driver()
chrome = driver.create_driver()

chrome.get("https://selmi.tech")

```


---


### Tests

Tested on:

✅ Windows

✅ Linux

❌ Mac


