Skip to main content

AWS Lambda easy integration with Flask web framework.

Project description

Quickstart

To create a new serverless Flask application really quickly:

  1. Install pipenv and AWS SAM local and generate app boilerplate:
pip install aws-sam-cli pipenv
sam init --location https://github.com/aws-samples/cookiecutter-aws-sam-python
  1. Add flask_serverless dependency
cd MyApp
make install
pipenv install flask_serverless
  1. Replace first_function/app.py contents with:
from flask_serverless import Serverless, Flask, APIGWProxy

app = Flask(__name__)
Serverless(app)
lambda_handler = APIGWProxy(app)

@app.route('/')
def index():
    return "Hello, friend!"
  1. You're ready to go! Run make run. Read the README it spits out.

More Coming...

More documentation will be written soon.

Further Reading

Serverless Flask applications on AWS lambda.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flask_serverless-0.1.3.tar.gz (3.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page