Skip to main content

Python3.6+ module to make Flask compatible with AWS Lambda

Project description

flask-lambda-python3.6
============

**Python 3.6+**

For older versions of python use the [original flask-lambda library](https://github.com/sivel/flask-lambda) which this code is adapted from.

See [this example flask project](https://github.com/techjacker/flask-lambda-example) for how to use and deploy a flask app using this library.


Installation
------------

pip install flask-lambda-python36


Usage
-----

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)



Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

flask_lambda_python36-0.1.0-py36-none-any.whl (3.5 kB view hashes)

Uploaded Python 3.6

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