Metadata-Version: 2.1
Name: geckodriver-autoinstaller
Version: 0.1.0
Summary: Automatically install geckodriver that supports the currently installed version of chrome.
Home-page: https://github.com/yeongbin-jo/python-geckodriver-autoinstaller
Author: Yeongbin Jo
Author-email: yeongbin.jo@pylab.co
License: MIT
Keywords: geckodriver chrome selenium splinter
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3
Description-Content-Type: text/markdown

# geckodriver-autoinstaller
Automatically download and install [geckodriver](https://github.com/mozilla/geckodriver/releases/latest) that supports the currently installed version of firefox. This installer supports Linux, MacOS and Windows operating systems.

## Installation

```bash
pip install geckodriver-autoinstaller
```

## Usage
Just type `import geckodriver_autoinstaller` in the module you want to use geckodriver.

## Example
```
from selenium import webdriver
import geckodriver_autoinstaller


geckodriver_autoinstaller.install()  # Check if the current version of geckodriver exists
                                     # and if it doesn't exist, download it automatically,
                                     # then add geckodriver to path

driver = webdriver.Firefox()
driver.get("http://www.python.org")
assert "Python" in driver.title
```


