Skip to main content

Python module to make Flask compatible with AWS Lambda for creating RESTful applications

Project description

Python module to make Flask compatible with AWS Lambda for creating RESTful applications.

Installation

pip install flask-lambda

Usage

This module works pretty much just like Flask. This allows you to run and develop this applicaiton locally just like you would in Flask. When ready deploy to Lambda, and configure the handler as:

my_python_file.app

Here is an example of what my_python_file.py would look like:

from flask_lambda import FlaskLambda

app = FlaskLambda(__name__)

@app.route('/foo', methods=['GET', 'POST'])
def foo():
    data = {
        'form': request.form.copy(),
        'args': request.args.copy(),
        'json': request.json
    }
    return (
        json.dumps(data, indent=4, sort_keys=True),
        200,
        {'Content-Type': 'application/json'}
    )


if __name__ == '__main__':
    app.run(debug=True)

Flask-RESTful

Nothing special here, this module works without issue with Flask-RESTful as well.

API Gateway

Configure your API Gateway with a {proxy+} resource with an ANY method. Your “Method Response” should likely include an application/json “Response Body for 200” that uses the Empty model.

Deploying

Consider using python-mu.

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-lambda-0.0.4.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

flask_lambda-0.0.4-py2.py3-none-any.whl (5.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file flask-lambda-0.0.4.tar.gz.

File metadata

File hashes

Hashes for flask-lambda-0.0.4.tar.gz
Algorithm Hash digest
SHA256 489fa54dc97b7fb7ddeaacd137544ad32c1a3399a5870046b31bef2e909d9fea
MD5 a240c1101ead06ff33826ccc3fc994a1
BLAKE2b-256 f0c509d755afa39a52f98b9edf057e56963fd72810455e04e4e93bb6f21108f1

See more details on using hashes here.

File details

Details for the file flask_lambda-0.0.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for flask_lambda-0.0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b2859140b936ac7380d29901d338adf0e5ce19a504aa12659e54f58c94774fc1
MD5 31df2f3e986d9731fa6e5f82add657ac
BLAKE2b-256 e99c4ab71d90f9ed12794b4f2d04960a7bf7b199c389cfee832168036fa72402

See more details on using hashes here.

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