Skip to main content

add links to readme

Project description

serverless-flask

pip package for flask framework with serverless framework

Compatibility

This is tested with Python3.6 and Flask 0.11.2, 1.0.0, 1.0.2

Installation

Command to install

pip install serverless-flask

Usage

Define logger and middleware annotation like below,

you can throw application log (Now logging level is only DEBUG) and add your custom middleware you define.

※ ) There is one thing to note. The order you annote should be app.route, logger and middleware from the top. If you change this order flask throw Exception. (in the future we wanna modify this restriction)

from serverless_flask.interceptor import Interceptor as interceptor

@app.route('/v.1.0/hoge', methods=['POST'])
@interceptor.logger
@interceptor.middleware(func1)
@interceptor.middleware(func2)
def test(*args, **kwargs):
    return jsonify({
            "message": "ok"
        })

As you can see in the below code, your custom middleware should have request parameter (but you don't have to use it.).

These functions must return the values with type of dict, list or tuple, otherwise Exception will be thrown.

from flask import request

def func1(req: request):
    return {'key': "value"}

def func2(req: request):
    return ['val1', 'val2'] 

# Links
Website: coming soon

Code: https://github.com/Queue-inc/serverless-flask

Company Page: http://www.queue-inc.com

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

serverless_flask-0.0.7-py3-none-any.whl (2.8 kB view details)

Uploaded Python 3

File details

Details for the file serverless_flask-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: serverless_flask-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 2.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.0

File hashes

Hashes for serverless_flask-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 f17c6ce49c37fe9f7d31f320d5e6385c15b1e48bbe8f76de850903a3440ecf8a
MD5 26108b24861a2203932b1dcab38f183f
BLAKE2b-256 efa86958c035e3681a36f59102b261d4d678631c977d4628aae11f3f544cf114

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