Metadata-Version: 2.1
Name: remecap
Version: 1.5.0
Summary: A simple python library that bypasses H-Captcha automatically using yolov5
Home-page: https://github.com/jiroawesome/remecap
Author: jiroawesome
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/jiroawesome/remecap/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
Requires-Dist: opencv-python (>=4.1.2)
Requires-Dist: Pillow (>=7.1.2)
Requires-Dist: PyYAML (>=5.3.1)
Requires-Dist: requests (>=2.23.0)
Requires-Dist: scipy (>=1.4.1)
Requires-Dist: torch (>=1.7.0)
Requires-Dist: torchvision (>=0.8.1)
Requires-Dist: tqdm (>=4.41.0)
Requires-Dist: tensorboard (>=2.4.1)
Requires-Dist: pandas (>=1.1.4)
Requires-Dist: matplotlib (>=3.2.2)
Requires-Dist: numpy (>=1.18.5)
Requires-Dist: seaborn (>=0.11.0)
Requires-Dist: selenium
Requires-Dist: selenium-wire (==4.6.0)
Requires-Dist: wget (==3.2)
Requires-Dist: confusables (==1.2.0)

# remecap

Bypasses H-Captcha automatically using yolov5

## Installation

```
pip install remecap
```

## Example

```python
from remecap import AISolver
from selenium import webdriver

if __name__ == '__main__':
    driver = webdriver.Chrome()
    driver.get("https://democaptcha.com/demo-form-eng/hcaptcha.html")
    solver = AISolver(driver)
    solver.start()
```

## Todo

1. Making it more faster

