Metadata-Version: 2.1
Name: selenium_driver_updater
Version: 1.9.0
Summary: Download or update your Selenium driver binaries 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)
        
        It is a fast and convenience package that can automatically download or update Selenium webdriver binaries 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=DriverUpdater.chromedriver, upgrade=True)
        print(filename)
        
        ```
        
        # Supported Selenium Binaries
        
        ## Chromedriver (DriverUpdater.chromedriver)
        
        - Windows
        - Linux
        - MacOS
        - MacOS with M1
        
        ## Geckodriver (DriverUpdater.geckodriver)
        
        - Windows
        - Linux
        - MacOS
        - MacOS with M1
        
        ## Operadriver (DriverUpdater.operadriver)
        
        - Windows
        - Linux
        - MacOS
        
        ## Edgedriver (DriverUpdater.edgedriver)
        
        - Windows
        - Linux
        - MacOS
        - ARM
Keywords: chromedriver,operadriver,edgedriver,safaridriver,selenium,seleniumdriver,chromedriver-binary,selenium-binary,selenium-python,selenium-driver,geckodriver,geckodriver-binary,operadriver-binary,edgedriver-binary,safaridriver-binary
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
Description-Content-Type: text/markdown
