文件名称:awsgi:用于AWS API GatewayLambda代理集成的WSGI网关
文件大小:8KB
文件格式:ZIP
更新时间:2024-05-27 17:31:39
Python
美国气象学会 用于AWS API Gateway / Lambda代理集成的WSGI适配器 AWSGI允许您将兼容WSGI的中间件和框架(例如Flask和Django)与。 安装 awsgi可以从PyPI中以aws-wsgi : pip install aws-wsgi 例子 import awsgi from flask import ( Flask , jsonify , ) app = Flask ( __name__ ) @ app . route ( '/' ) def index (): return jsonify ( status = 200 , message = 'OK' ) def lambda_handler ( event , context ): return awsgi . response ( app , event , c
【文件预览】:
awsgi-master
----setup.py(1KB)
----.gitignore(1KB)
----requirements.txt(0B)
----Makefile(247B)
----.travis.yml(423B)
----awsgi()
--------__init__.py(5KB)
----test_awsgi.py(8KB)
----setup.cfg(26B)
----LICENSE.txt(1KB)
----README.rst(852B)