Metadata-Version: 2.4
Name: red-roving-rascal
Version: 0.1.2
Summary: A lightweight API testing and evaluation toolkit
Project-URL: Homepage, https://github.com/dboyd13/red-roving-rascal
Project-URL: Repository, https://github.com/dboyd13/red-roving-rascal
Author: dboyd13
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: boto3
Requires-Dist: httpx
Requires-Dist: pydantic>=2.0
Description-Content-Type: text/markdown

# red-roving-rascal

A lightweight API testing and evaluation toolkit.

## Install

```bash
pip install red-roving-rascal
```

## Quick Start

```python
from rascal.client import RascalClient

client = RascalClient(endpoint="https://your-api.example.com")
result = client.run_job(inputs=["hello world"], target="my-service")
print(result)
```
