Metadata-Version: 2.1
Name: gamgee
Version: 0.1.0
Summary: A small example package
Home-page: https://github.com/pypa/sampleproject
Author: Austin Poor
Author-email: 45295232+a-poor@users.noreply.github.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# gamgee

[![Test Package](https://github.com/a-poor/gamgee/actions/workflows/test-package.yml/badge.svg?branch=main&event=push)](https://github.com/a-poor/gamgee/actions/workflows/test-package.yml)
[![PyPI](https://img.shields.io/pypi/v/gamgee)](https://pypi.org/project/gamgee)
[![PyPI - License](https://img.shields.io/pypi/l/gamgee)](https://pypi.org/project/gamgee)

_created by Austin Poor_

A python library for helping to setup an [AWS SAM](https://aws.amazon.com/serverless/sam) app.

## Quick Start

```python
In [1]: import gamgee                                                           

In [2]: @gamgee.sam() 
   ...: def lambda_handler(event: dict): 
   ...:     return [1,2,3] 
   ...:                                                                         

In [3]: lambda_handler(event={"body": ...}, context=None)                                     
Out[3]: {'status_code': 200, 'body': '{"success": true, "result": [1, 2, 3]}'}
```

## Installation

```bash
$ pip install gamgee
```




