Metadata-Version: 2.4
Name: freecaptcha
Version: 0.2.0
Summary: A simple and free reCAPTCHA bypass.
Author: task0001
Requires-Python: >=3.12
Requires-Dist: yarl>=1.18.3
Description-Content-Type: text/markdown


# freecaptcha

A simple and free reCAPTCHA bypass.


## Installation

Install freecaptcha from PyPI

```bash
pip install freecaptcha
```

## Usage/Examples

```python
from freecaptcha import reCAPTCHASolver

token = reCAPTCHASolver.solve("ANCHOR URL FOR YOUR SITE")

# Use token within your HTTP request
```


## How To Find Anchor URL

1. Navigate to your target website in your browser.
2. Open Developer Tools (CTRL + I).
3. Navigate to the 'Network' tab.
4. Perform the captcha.
5. Search for the 'anchor' request.
6. Copy the request URL.

## Authors

- [@task0001](https://www.github.com/task0001)

