Metadata-Version: 2.1
Name: selenium-stealth
Version: 1.0.2
Summary: Trying to make python selenium more stealthy.
Home-page: https://github.com/diprajpatra/selenium-stealth
Author: Dipraj Patra
Author-email: diprajpatra@gmail.com
License: UNKNOWN
Description: # selenium-stealth
        
        A python package **selenium-stealth** to prevent detection. This programme is trying to make python selenium more stealthy. 
        
        As of now selenium-stealth **only support Selenium Chrome**.
        
        After using selenium-stealth you can prevent almost all selenium detections. There is a lot of guides on stackoverflow on How to prevent selenium detection but I can not find a single python package for it so I am just creating one after all we can't let the cats win.
        It can be seen as a re-implementation of JavaScript [puppeteer-extra-plugin-stealth](https://github.com/berstend/puppeteer-extra/tree/master/packages/puppeteer-extra-plugin-stealth) developed by [@berstend](https://github.com/berstend>).
        
        Features that currently selenium-stealth can offer:
        
        - **âœ” `selenium-stealth` with stealth passes all public bot tests.**
        
        - **âœ” With `selenium-stealth` selenium can do google account login.**
        
        - **âœ” `selenium-stealth` help with maintaining a normal reCAPTCHA v3 score**
        
        ## Donations
        If you find this package useful and would like to support its continued development, you can donate here. Thank you for your support.
        
        [![Donate Via PayPal](https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif)](https://paypal.me/diprajpatra)
        
        [<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"  width="120" height="30">](https://www.buymeacoffee.com/dipraj)
        ## Install
        Selenium-stealth is available on PyPI you can install with pip.
        ```
        $ pip install selenium-stealth
        ```
        
        ## Usage
        
        ```python
        from selenium import webdriver
        from selenium_stealth import stealth
        import time
        
        options = webdriver.ChromeOptions()
        options.add_argument("start-maximized")
        
        # options.add_argument("--headless")
        
        options.add_experimental_option("excludeSwitches", ["enable-automation"])
        options.add_experimental_option('useAutomationExtension', False)
        driver = webdriver.Chrome(options=options, executable_path=r"C:\Users\DIPRAJ\Programming\adclick_bot\chromedriver.exe")
        
        stealth(driver,
                languages=["en-US", "en"],
                vendor="Google Inc.",
                platform="Win32",
                webgl_vendor="Intel Inc.",
                renderer="Intel Iris OpenGL Engine",
                fix_hairline=True,
                )
        
        url = "https://bot.sannysoft.com/"
        driver.get(url)
        time.sleep(5)
        driver.quit()
        ```
        
        ## Args
        
        ```python
        stealth(
            driver: Driver,
            user_agent: str = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.53 Safari/537.36',
            languages: [str] = ["en-US", "en"],
            vendor: str = "Google Inc.",
            platform: str = "Win32",
            webgl_vendor: str = "Intel Inc.",
            renderer: str = "Intel Iris OpenGL Engine",
            fix_hairline: bool = False,
            run_on_insecure_origins: bool = False,
        )
        ```
        
        ## Test results (red is bad)
        
        ### Selenium without <strong>selenium-stealth ðŸ˜¢</strong>
        
        <table class="image">
        <tr>
          <td><figure class="image"><a href="https://raw.githubusercontent.com/diprajpatra/selenium-stealth/main/stealthtests/selenium_chrome_headless_without_stealth.png"><img src="https://raw.githubusercontent.com/diprajpatra/selenium-stealth/main/stealthtests/selenium_chrome_headless_without_stealth.png"></a><figcaption>headless</figcaption></figure></td>
          <td><figure class="image"><a href="https://raw.githubusercontent.com/diprajpatra/selenium-stealth/main/stealthtests/selenium_chrome_headful_without_stealth.png"><img src="https://raw.githubusercontent.com/diprajpatra/selenium-stealth/main/stealthtests/selenium_chrome_headful_without_stealth.png"></a><figcaption>headful</figcaption></figure></td>
        </tr>
        </table>
        
        ### Selenium with <strong>selenium-stealth ðŸ’¯</strong>
        
        <table class="image">
        <tr>
          <td><figure class="image"><a href="https://raw.githubusercontent.com/diprajpatra/selenium-stealth/main/stealthtests/selenium_chrome_headless_with_stealth.png"><img src="https://raw.githubusercontent.com/diprajpatra/selenium-stealth/main/stealthtests/selenium_chrome_headless_with_stealth.png"></a><figcaption>headless</figcaption></figure></td>
          <td><figure class="image"><a href="https://raw.githubusercontent.com/diprajpatra/selenium-stealth/main/stealthtests/selenium_chrome_headful_with_stealth.png"><img src="https://raw.githubusercontent.com/diprajpatra/selenium-stealth/main/stealthtests/selenium_chrome_headful_with_stealth.png"></a><figcaption>headful</figcaption></figure></td>
        </tr>
        </table>
        
        ## License
        
        Copyright Â© 2020, [diprajpatra](https://github.com/diprajpatra). Released under the MIT License.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
