Metadata-Version: 2.1
Name: selenium_driver_updater
Version: 3.0.0
Summary: Download or update your Selenium driver binaries and their browsers automatically with this package
Home-page: https://github.com/Svinokur/selenium_driver_updater
Author: Stanislav Vinokur
Author-email: stasvinokur@yahoo.com
License: MIT
Description: # selenium_driver_updater
        
        [![PyPI version](https://badge.fury.io/py/selenium-driver-updater.svg)](https://badge.fury.io/py/selenium-driver-updater)
        [![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/Svinokur/selenium_driver_updater/master/LICENSE)
        [![Downloads](https://pepy.tech/badge/selenium-driver-updater)](https://pepy.tech/project/selenium-driver-updater)
        [![Downloads](https://pepy.tech/badge/selenium-driver-updater/month)](https://pepy.tech/project/selenium-driver-updater)
        [![Downloads](https://pepy.tech/badge/selenium-driver-updater/week)](https://pepy.tech/project/selenium-driver-updater)
        [![Donate with Bitcoin](https://en.cryptobadges.io/badge/micro/32GJnnDrPkSKVzrRho84KwD5RsMW4ywMiW)](https://en.cryptobadges.io/donate/32GJnnDrPkSKVzrRho84KwD5RsMW4ywMiW)
        [![Donate with Ethereum](https://en.cryptobadges.io/badge/micro/0xf2691CC12a70B4589edf081E059fD4A1c457417D)](https://en.cryptobadges.io/donate/0xf2691CC12a70B4589edf081E059fD4A1c457417D)
        
        [![Windows](https://github.com/Svinokur/selenium_driver_updater/actions/workflows/windows-tests.yml/badge.svg)](https://github.com/Svinokur/selenium_driver_updater/actions/workflows/windows-tests.yml)
        [![macOS](https://github.com/Svinokur/selenium_driver_updater/actions/workflows/macOS-tests.yml/badge.svg)](https://github.com/Svinokur/selenium_driver_updater/actions/workflows/macOS-tests.yml)
        [![Ubuntu](https://github.com/Svinokur/selenium_driver_updater/actions/workflows/ubuntu-tests.yml/badge.svg)](https://github.com/Svinokur/selenium_driver_updater/actions/workflows/ubuntu-tests.yml)
        
        It is a fast and convenience package that can automatically download or update Selenium webdriver binaries and their browsers for different OS.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install selenium_driver_updater.
        
        ```
        pip install selenium-driver-updater
        ```
        
        ## Usage
        This example shows how you can use this library to download chromedriver binary.
        ```python
        from selenium_driver_updater import DriverUpdater
        import os
        base_dir = os.path.dirname(os.path.abspath(__file__))
        
        result, message, filename = DriverUpdater.install(path=base_dir, driver_name=DriverUpdater.chromedriver, upgrade=True, check_driver_is_up_to_date=True)
        print(filename)
        
        ```
        
        Or you can use library to download and update chromedriver and geckodriver binaries at the same time.
        ```python
        from selenium_driver_updater import DriverUpdater
        import os
        base_dir = os.path.dirname(os.path.abspath(__file__))
        list_drivers = [DriverUpdater.chromedriver, DriverUpdater.geckodriver]
        
        result, message, filename = DriverUpdater.install(path=base_dir, driver_name=list_drivers, upgrade=True, check_driver_is_up_to_date=True)
        print(filename)
        
        ```
        
        # Supported Selenium Binaries
        
        ## Chromedriver (DriverUpdater.chromedriver)
        
        - Windows
        - Linux
        - MacOS
        - MacOS with M1
        
        ## Chromium ChromeDriver (DriverUpdater.chromium_chromedriver)
        
        - Linux
        
        ## Geckodriver (DriverUpdater.geckodriver)
        
        - Windows
        - Linux
        - MacOS
        - MacOS with M1
        
        ## Operadriver (DriverUpdater.operadriver)
        
        - Windows
        - Linux
        - MacOS
        
        ## Edgedriver (DriverUpdater.edgedriver)
        
        - Windows
        - MacOS
        - ARM
        
        # Supported browsers for updates
        
        ## Chrome Browser
        
        - Windows
        - MacOS
        - Linux (Tested on Ubuntu 20.04)
        
        ## Chromium Browser
        
        - Linux (Tested on Ubuntu 20.04)
        
        ## Firefox Browser
        
        - Windows
        - MacOS
        - Linux (Tested on Ubuntu 20.04)
        
        ## Opera Browser
        
        - Windows
        - MacOS
        - Linux (Tested on Ubuntu 20.04)
        
        ## Edge Browser
        
        - Windows
        - MacOS
        
Keywords: chromedriver,operadriver,edgedriver,safaridriver,selenium,seleniumdriver,chromedriver-binary,selenium-binary,selenium-python,selenium-driver,geckodriver,geckodriver-binary,operadriver-binary,edgedriver-binary,safaridriver-binary,chromebrowser,chrome-browser,firefox,firefox-browser,selenium-update,selenium-updater,updater
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
