Metadata-Version: 2.1
Name: yalambda
Version: 0.1.0
Summary: Utility library for Yandex.Cloud
Home-page: https://github.com/decorator-factory/lanim
License: MIT
Author: decorator-factory
Author-email: 42166884+decorator-factory@users.noreply.github.com
Requires-Python: >=3.8
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# `yalambda`

Yalambda lets you write Yanex.Cloud Functions with less boilerplate

Features:
- everything is type-annotated, so you'll get autocompletion in IDEs
- base64 de/encoding and other details are handled for you


# Echo server example

```py
from yalambda import function, YaRequest, YaResponse


@function
async def handler(req: YaRequest) -> YaResponse:
    return YaResponse(200, req.body)
```

