Metadata-Version: 2.1
Name: serverless.py
Version: 0.0.5.dev3
Summary: Decorators who avoid code repetition in their lambda function
Home-page: https://github.com/mtwzim/serverless.py
Author: mtwzim
Author-email: mtwzim@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

<div align="center">
    <img src="https://raw.githubusercontent.com/mtwzim/serverless.py/main/serverlesspy.png" width="50%"/>
</div>

Decorators who avoid code repetition in their lambda function

## Installation

```$ pip install serverless```

## Usage
```
@serverless
def your_function(req):
    return {
        "statusCode": 200,
        "body": {
            message: "serverless.py"
        }
    }
```



