• <strike id="6sogq"><s id="6sogq"></s></strike>
  • <strike id="6sogq"></strike>

    千鋒教育-做有情懷、有良心、有品質的職業教育機構

    400-811-9990
    手機站
    千鋒教育

    千鋒學習站 | 隨時隨地免費學

    千鋒教育

    掃一掃進入千鋒手機站

    領取全套視頻
    千鋒教育

    關注千鋒學習站小程序
    隨時隨地免費學習課程

    上海
    • 北京
    • 鄭州
    • 武漢
    • 成都
    • 西安
    • 沈陽
    • 廣州
    • 南京
    • 深圳
    • 大連
    • 青島
    • 杭州
    • 重慶
    當前位置:成都千鋒IT培訓  >  技術干貨  >  python實現WSGI的框架

    python實現WSGI的框架

    來源:千鋒教育
    發布人:xqq
    時間: 2023-11-08 19:46:26

    python中實現WSGI的框架

    1、說明

    Application類對WSGI又做了一層簡單的封裝,由于上面說過WSGI函數返回的是一個可以迭代對象,所以需要實現一個__iter__方法,里面控制了客戶端的請求路由并且返回不同的輸出。

    2、實例

    fromwsgiref.simple_serverimportmake_server

    classApplication(object):

    def__init__(self,environ,start_response):

    self.start_response=start_response

    self.path=environ['PATH_INFO']

    def__iter__(self):

    ifself.path=='/':

    status='200OK'

    response_headers=[('Content-type','text/html')]

    self.start_response(status,esponse_headers)

    yield'

    Hello,World!

    '.encode('utf-8')

    elifself.path=='/wsgi':

    status='200OK'

    response_headers=[('Content-type','text/html')]

    self.start_response(status,response_headers)

    yield'

    Hello,WSGI!

    '.encode('utf-8')

    else:

    status='404NOTFOUND'

    response_headers=[('Content-type','text/html')]

    self.start_response(status,response_headers)

    yield'

    404NOTFOUND

    '.encode('utf-8')

    if__name__=="__main__":

    app=make_server('127.0.0.1',8000,Application)

    print('ServingHTTPonport8000...')

    app.serve_forever()

    以上就是Python中實現WSGI的框架,希望對大家有所幫助。更多Python學習推薦:請關注IT培訓機構:千鋒教育。

    聲明:本站稿件版權均屬千鋒教育所有,未經許可不得擅自轉載。

    猜你喜歡LIKE

    python delattr函數如何使用?

    2023-11-10

    python time.strptime的格式化

    2023-11-10

    pythonGIL在Python多線程的應用

    2023-11-10

    最新文章NEW

    python中pdb模塊怎么用?

    2023-11-10

    Python如何截圖保存?

    2023-11-10

    python?中缺少module怎么辦?

    2023-11-10

    相關推薦HOT

    更多>>

    快速通道 更多>>

    最新開班信息 更多>>

    網友熱搜 更多>>