京东云擎python wsgi windows下的本地测试方法

京东云内部采用:gunicorn wsgi:application -b 0.0.0.0:$PORT方式加载wsgi,但在windwos下,因为gunicorn缺少依赖的fcntl库,无法运行,因此推荐采用如下方式:

在工程git本地根目录创建文件:t.py

import wsgi
from bottle import run
run(app=wsgi.application,host='localhost',port=800)

命令行下,执行t.py。 本机测试用的web server就运行起来了,so easy.

你可能感兴趣的:(京东云擎python wsgi windows下的本地测试方法)