真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

關(guān)于WSGI與Werkzeug的詳細用法

這篇文章主要介紹關(guān)于WSGI與Werkzeug的詳細用法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè)的開發(fā),更需要了解用戶,從用戶角度來建設(shè)網(wǎng)站,獲得較好的用戶體驗。創(chuàng)新互聯(lián)多年互聯(lián)網(wǎng)經(jīng)驗,見的多,溝通容易、能幫助客戶提出的運營建議。作為成都一家網(wǎng)絡(luò)公司,打造的就是網(wǎng)站建設(shè)產(chǎn)品直銷的概念。選擇創(chuàng)新互聯(lián),不只是建站,我們把建站作為產(chǎn)品,不斷的更新、完善,讓每位來訪用戶感受到浩方產(chǎn)品的價值服務(wù)。

      在介紹Werkzeug之前,先介紹一下 WSGI(Python Web Server Gateway Interface),它為Python語言定義的Web服務(wù)器和Web應(yīng)用程序或框架之間的一種簡單而通用的接口。

       關(guān)于WSGI與Werkzeug的詳細用法

WSGI 分為兩個部分:

  • Server/Gateway: 即是HTTP Server, 負責從客戶端(Nnginx、apache、IIS)接收請求,將 request 轉(zhuǎn)發(fā)給 application, 并將 application(可能是個Flask應(yīng)用) 返回的response 返回給客戶端
  • Application/Framework: 一個python web 應(yīng)用或 web 框架接收由 server 轉(zhuǎn)發(fā)的request,處理請求,并將處理結(jié)果返回給 server

可以通過下面兩張圖片來梳理一下它們之間的調(diào)用關(guān)系:

關(guān)于WSGI與Werkzeug的詳細用法

關(guān)于WSGI與Werkzeug的詳細用法

先從一份示例代碼理解:

def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/plain')])
    return ['Hello World!']

      一個最基本的 WSGI 應(yīng)用就是如上所示,定義了一個 application 函數(shù)(callable object),callable object(可調(diào)用對象) 包括: 一個函數(shù)、方法、類或一個實現(xiàn)了__call__的實例都可以用作應(yīng)用程序?qū)ο蟆_@個函數(shù)接受兩個參數(shù),分別是environ和start_response。

  • environ是一個字典包含了CGI中的環(huán)境變量
  • start_response也是一個callable,接受兩個必須的參數(shù),status(HTTP狀態(tài))和response_headers(響應(yīng)消息的頭)

      通過回調(diào)函數(shù)(start_response)將響應(yīng)狀態(tài)和響應(yīng)頭返回給 server,同時返回響應(yīng)正文(response body),響應(yīng)正文是可迭代的、并包含了多個字符串。

Werkzeug


werkzeug 提供了 python web WSGI 開發(fā)相關(guān)的功能:

  • 路由處理:如何根據(jù)請求 URL 找到對應(yīng)的視圖函數(shù)
  • request 和 response 封裝: 提供更好的方式處理request和生成response對象
  • 自帶的 WSGI server: 測試環(huán)境運行WSGI應(yīng)用

下面使用 Werkzeug 來實現(xiàn)一個簡單的WSGI應(yīng)用:

from werkzeug.wrappers import Request, Response

def application(environ, start_response):
    request = Request(environ)
    text = 'Hello %s!' % request.args.get('name', 'World')
    response = Response(text, mimetype='text/plain')
    return response(environ, start_response)

       如上代碼所示,請求數(shù)據(jù)需要環(huán)境對象,Werkzeug允許你以一個輕松的方式訪問數(shù)據(jù)。響應(yīng)對象是一個 WSGI 應(yīng)用,提供了更好的方法來創(chuàng)建響應(yīng)。

       具體創(chuàng)建一個 WSGI 應(yīng)用請查看文檔,后面會陸續(xù)提到Flask框架中使用到Werkzeug的數(shù)據(jù)結(jié)構(gòu)。這里貼一些官方文檔的例子,使用werkzeug創(chuàng)建一個web 應(yīng)用:

import os
import redis
import urlparse
from werkzeug.wrappers import Request, Response
from werkzeug.routing import Map, Rule
from werkzeug.exceptions import HTTPException, NotFound
from werkzeug.wsgi import SharedDataMiddleware
from werkzeug.utils import redirect
from jinja2 import Environment, FileSystemLoader

class Shortly(object):
    """ 
    Shortly 是一個實際的 WSGI 應(yīng)用,通過 __call__ 方法直接調(diào) 用 wsgi_app,
    同時通過一個可選設(shè)置創(chuàng)建一個中間件,將static文件夾暴露給用戶:
    """
    def __init__(self, config):
        self.redis = redis.Redis(config['redis_host'], config['redis_port'])

    def dispatch_request(self, request):
        return Response('Hello World!')

    def wsgi_app(self, environ, start_response):
        request = Request(environ)
        response = self.dispatch_request(request)
        return response(environ, start_response)

    def __call__(self, environ, start_response):
        return self. wsgi_app(environ, start_response)


def create_app(redis_host='localhost', redis_port=6379, with_static=True):
    app = Shortly({
        'redis_host':       redis_host,
        'redis_port':       redis_port
    })
    if with_static:
        app.wsgi_app = SharedDataMiddleware(app.wsgi_app, {
            '/static':  os.path.join(os.path.dirname(__file__), 'static')
        })
    return app
    
if __name__ == '__main__':
    from werkzeug.serving import run_simple
    app = create_app()
    run_simple('127.0.0.1', 5000, app, use_debugger=True, use_reloader=True)

       思路很簡單,我們的 Shortly 是一個實際的 WSGI 應(yīng)用。 __call__ 方法直接調(diào)用 wsgi_app 。這樣做我們可以裝飾 wsgi_app 調(diào)用中間件,就像我們在 create_app 函數(shù)中做的一樣。 

       wsgi_app 實際上創(chuàng)建了一個 Request 對象,之后通過 dispatch_request 調(diào)用 Request 對象然后給 WSGI 應(yīng)用返回一個 Response 對象。正如你看到的:無論是創(chuàng)建 Shortly 類,還是創(chuàng)建 Werkzeug Request 對象來執(zhí)行 WSGI 接口。最終結(jié)果只是從 dispatch_request 方法返回另一個 WSGI 應(yīng)用。這部分解釋來源于官方文檔的中文版。

以上是關(guān)于WSGI與Werkzeug的詳細用法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章題目:關(guān)于WSGI與Werkzeug的詳細用法
分享地址:http://weahome.cn/article/gdchio.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部