Skip to content
/ paws Public
forked from funkybob/paws

Python helpers for using AWS API Gateway / Lambda "serverless"

License

Notifications You must be signed in to change notification settings

tonyblart/paws

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

paws

Python helpers for using AWS API Gateway / Lambda "serverless"

heavily WIP

Example

from paws import views


class IndexView(views.View):

    def get(request):
        return response.Response('Hello, world!', headers={'Content-Type': 'text/plain'})

index = IndexView()

Setup

When using this framework, there is one assumption made:

  • In your API Gateway you have set "multipart/form-data" as a Binary mode content type.

About

Python helpers for using AWS API Gateway / Lambda "serverless"

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%