Metadata-Version: 2.1
Name: capbypasswrapped
Version: 2.0.0
Description-Content-Type: text/markdown
Requires-Dist: httpx

# CapBypassWrapped

`CapBypassWrapped` is a Python module that provides a wrapper for CapBypass, a captcha solving service. This module allows developers to easily integrate captcha solving functionality into their applications without having to write complex code.

## Installation

To install `CapBypassWrapped`, simply run the following command:

```
pip install CapBypassWrapped
```

## Usage

To use `CapBypassWrapped` functions, just import the module:

```python
import CapBypassWrapped
```

Now initialize the CapBypassWrapped class with your according parameters.

```python
capbypass_instance = CapBypassWrapped(client_key="": str, verbal=False: bool, custom_http_client=None: any)
```

There are lots of different functions you can use with lots of customizability.

Here is every function below and how to initiate each one:

```python
capbypass_instance = CapBypassWrapped(client_key="": str, verbal=False: bool, custom_http_client=None: any)

def get_balance():
    result = capbypass_instance.get_balance()
    print(result) # returns {"credits": str, "errorId": int}

def get_task_result():
    result = CapBypassWrapped.get_task_result(task_id="": str) 
    print(result) # returns {"solution": str, "status": str, "errorId": int}  

def create_funcaptcha_task():
    result = CapBypassWrapped.create_task(task_type="": str, website_url="": str, website_public_key="": str) # optional - blob: str
    print(result) # returns {"taskId": str}  

```

## License

`CapBypassWrapped` is licensed under the Apache License. See the LICENSE file for more information.

## Contact

If you have any questions or comments about `CapBypassWrapped`, please contact me on discord at @maxhithere
