Metadata-Version: 2.3
Name: resonate-sdk-aws
Version: 0.7.4
Summary: AWS Lambda support for the Resonate SDK by Resonate HQ, Inc
Author: Resonate HQ, Inc
Author-email: Resonate HQ, Inc <contact@resonatehq.io>
Requires-Dist: msgspec>=0.21.1,<1
Requires-Dist: resonate-sdk==0.7.4
Requires-Python: >=3.12
Project-URL: Documentation, https://github.com/resonatehq/resonate-sdk-py#readme
Project-URL: Issues, https://github.com/resonatehq/resonate-sdk-py/issues
Project-URL: Source, https://github.com/resonatehq/resonate-sdk-py
Description-Content-Type: text/markdown

# resonate-sdk-aws

AWS Lambda support for the [Resonate SDK](https://github.com/resonatehq/resonate-sdk-py).

```shell
pip install resonate-sdk-aws
```

```python
from resonate_aws import Resonate

resonate = Resonate()

@resonate.register
def greet(ctx, name: str) -> str:
    return f"hello {name}"

lambda_handler = resonate.handler()
```
