Skip to content
This repository was archived by the owner on Oct 26, 2022. It is now read-only.

timsavage/retort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Retort

"I'm not a Bottle or a Flask!"

A web framework for building applications with AWS Lambda and API Gateway inspired by Flask and Bottle.

Basics!

A quick example:

>>> from retort import ApiGatewayHandler, Response

>>> handler = ApiGatewayHandler

>>> @handler.route('/hello/')
>>> def hello_world(request):
...     return Response("Hello World")

For debugging use the builtin API Gateway/Lambda emulated server:

python -m retort runserver my_example.handler

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages