【Python Werkzeug】 -- 2019-08-07 10:53:44

原创: http://106.13.73.98/__/125/

首先,Werkzeug是一个WSGI工具包,它可以作为一个Web框架的底层库。

需要注意的是,Werkzeug不是一个web服务器,也不是一个web框架,而是一个工具包,官方的介绍说是一个 WSGI 工具包,它可以作为一个 Web 框架的底层库,因为它封装好了很多 Web 框架的东西,例如RequestResponse等等。

下面我们将使用Werkzeug来创建一个简单的web服务器,来说明Werkzeug怎么使用。

安装:pip install Werkzeug

from werkzeug.wrappers import Response, Request
from werkzeug.serving import run_simple

@Request.application
def app(request):
    print(request)  # <Request 'http://127.0.0.1:8000/favicon.ico' [GET]>
    print(request.method)  # 请求类型
    print(request.path)  # /favicon.ico
    return Response('Hello Werkzeug')


run_simple(hostname='127.0.0.1', port=8000, application=app)

这个服务器仅仅返回"Hello Werkzeug".

原创: http://106.13.73.98/__/125/

上一篇:rhombus(菱形)


下一篇:python – 使用Flask路径捕获整数列表