Metadata-Version: 2.1
Name: byerecaptcha
Version: 1.1.7
Summary: Google Recaptcha solver.
Home-page: https://github.com/DedInc/byerecaptcha
Author: Maehdakvan
Author-email: visitanimation@google.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/DedInc/byerecaptcha/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

<h1 align="center">byerecaptcha - Google Recaptcha solver.</h1>

<h2>Model and some codes takes from <a href="https://github.com/embium/solverecaptchas">embium's repository</a></h2>

<h1 align="center"> -Installation- </h1>

```sh
pip install byerecaptcha
```

<h1 align="center"> -How to use- </h1>

```python
from selenium import webdriver
from selenium_utilities import getChromeDriver
from byerecaptcha import solveRecaptcha

options = webdriver.ChromeOptions()
options.add_argument('--lang=en-US') #need for recaptcha be in english

driver = webdriver.Chrome(executable_path=getChromeDriver(), chrome_options=options)
driver.get('https://www.google.com/recaptcha/api2/demo')
solveRecaptcha(driver)
```

