Metadata-Version: 1.0
Name: chromedriver_install
Version: 0.2
Summary: Package for installing the latest chromedriver automatically.
Home-page: http://github.com/shadowmoose/chrome_driver
Author: ShadowMoose
Author-email: shadowmoose@github.com
License: MIT
Description: # Chromedriver installer
        
        This is a super-simple package that can automatically find & download the newest (or whichever you speficy) version of 
        the chromedriver executable.
        
        It should work on Windows/Linx/Mac, and also supports os-specific permissions.
        
        To install the library, run:
        ```
        pip install chromedriver-install
        ```
        
        
        Then call it in your code like so:
        ```python
        import chromedriver_install as cdi
        path = cdi.install(file_directory='./lib/', verbose=True, chmod=True, overwrite=False, version=None)
        print('Installed chromedriver to path: %s' % path)
        ```
        
        There are options for the output directory, disabling printout, running chmod on the downloaded executable, automatic overwriting, and version number.
Platform: UNKNOWN
