本文主要是介绍Flask依赖一个实现wsgi协议的模块:werkzeug,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#_*_ encoding: utf-8 _*_ @author: ty hery 2019/12/20
# Flask依赖一个实现wsgi协议的模块:werkzeug
from werkzeug.wrappers import Request,Response
@Request.application
def hello(request):
return Response('hello world! {}'.format(request))
# 返回 hello world! <Request 'http://127.0.0.1:4000/hello' [GET]>
if __name__ == '__main__':
from werkzeug.serving import run_simple
run_simple('127.0.0.1',8000,hello)
这篇关于Flask依赖一个实现wsgi协议的模块:werkzeug的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!