用來爲server程序和app/framework程序作鏈接橋樑的,使server和app/framework各自發展,任意組合python
上圖是python3.4標準庫裏面,關於wsgiserver的實現。從圖中可知,所謂wsgi的server的主要工做是運動tcp進程,解析http協議部分參數;而後交給應用程序app具體處理。nginx
因此能夠理解wsgi協議,就是http server和app之間的函數接口,接口的形式是 app(enviro, start_response)web
用程序簡單表示以下:apache
def make_server( host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler ): """Create a new WSGI server listening on `host` and `port` for `app`""" server = server_class((host, port), handler_class) server.set_app(app) return server
因此,開發一個python web服務,server和python程序之間基本都會是wsgi協議。app
上面代碼中,server_class部署時候基本都是apache/nginx,tcp
handler_class之類的因爲基本不作具體事情,用標準庫中的便可函數
app則是最關鍵的地方。解析請求、處理請求、回覆請求都在這裏。spa