Metadata-Version: 2.1
Name: pyderman
Version: 1.0.1
Summary: Installs the latest Chrome/Firefox/Gecko web drivers automatically.
Home-page: http://github.com/shadowmoose/pyderman
Author: ShadowMoose
Author-email: shadowmoose@github.com
License: MIT
Description: # Pyderman (Selenium Web Driver Installer)  [![Build Status](https://travis-ci.com/shadowmoose/pyderman.svg?branch=master)](https://travis-ci.com/shadowmoose/pyderman)
        
        This is a fast, easy, dependency-free package that can automatically find & download the newest (or whichever you specify) version of 
        the Google Chrome (chromedriver) or Firefox (geckodriver) web drivers.
        
        This project was built to allow developers to seamlessly include selenium support on the user-side, without requiring any manual configuration on their part.
        
        It is tested on Windows/Linux/Mac, and supports os-specific permissions.
        
        To install the library, run:
        ```
        pip install pyderman
        ```
        
        
        Then call it in your code like so:
        
        ```python
        import pyderman as driver
        path = driver.install(browser=driver.firefox)
        print('Installed geckodriver driver to path: %s' % path)
        ```
        
        
        There are options for the output directory, disabling printout, running chmod on the downloaded executable, 
        automatic overwriting, executable file name, and version number. 
        All parameters are optional, and the default values are listed below.
        
        This example downloads the Chrome Driver instead, by changing ```browser``` like so:
        ```python
        import pyderman as dr
        path = dr.install(browser=dr.chrome, file_directory='./lib/', verbose=True, chmod=True, overwrite=False, version=None, filename=None, return_info=False)
        print('Installed chromedriver to path: %s' % path)
        ```
        
        The download is very fast, and will skip downloading if the file already exists. This behavior can be toggled with ```overwrite```.
        
        ## Why's it called 'Pyderman'?
        Because it installs *web*-drivers. Get it?
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
