Metadata-Version: 2.1
Name: lesty
Version: 0.1.1
Summary: A simple CLI tool to test lambdas using an event.json file
Author: José Schafer
Author-email: José Schafer <joseignacio.schafer@gmail.com>
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: typer>=0.9.4

# Lesty

A CLI tool to execute AWS Lambda handlers with a JSON event file.

## Installation

Install as a development dependency in your Python project:


```sh
poetry add --group=dev lesty
```

or 

```sh
uv add --dev lesty
```

## Usage
```sh
uv run lesty /path/to/lambda_handler.py /path/to/event.json
```
