Metadata-Version: 2.1
Name: selenium-driver-updater
Version: 1.1.0
Summary: Download or update your chromedriver 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
        It is a fast and convenient package that can automatically download or update chromedriver binary.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install selenium_driver_updater.
        
        ```
        pip install selenium-driver-updater
        ```
        
        ## Usage
        This code simply installs chromedriver to main directory
        ```python
        from selenium_driver_updater import DriverUpdater as DU
        import os
        
        base_dir = os.path.dirname(os.path.abspath(__file__))
        du = DU(path=base_dir, driver_name=DU.chromedriver)
        file_name = du.install(upgrade=True)
        print(file_name)
        
        ```
        
        # Supported Selenium Binaries
        
        ## Chromedriver
        
        - Windows
        - Linux
        - MacOS
        - MacOS with M1
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Keywords: chromedriver
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
