怎么在Python中實(shí)現(xiàn)一個(gè)WSGI框架?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
創(chuàng)新互聯(lián)建站主營米林網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,App定制開發(fā),米林h5微信平臺(tái)小程序開發(fā)搭建,米林網(wǎng)站營銷推廣歡迎米林等地區(qū)企業(yè)咨詢
python常用的庫:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。
1、說明
Application類對(duì)WSGI又做了一層簡單的封裝,由于上面說過WSGI函數(shù)返回的是一個(gè)可以迭代對(duì)象,所以需要實(shí)現(xiàn)一個(gè)__iter__方法,里面控制了客戶端的請(qǐng)求路由并且返回不同的輸出。
2、實(shí)例
from wsgiref.simple_server import make_server class Application(object): def __init__(self, environ, start_response): self.start_response = start_response self.path = environ['PATH_INFO'] def __iter__(self): if self.path == '/': status = '200 OK' response_headers = [('Content-type', 'text/html')] self.start_response(status, esponse_headers) yield '<h2>Hello,World!</h2>'.encode('utf-8') elif self.path == '/wsgi': status = '200 OK' response_headers = [('Content-type', 'text/html')] self.start_response(status, response_headers) yield '<h2>Hello,WSGI!</h2>'.encode('utf-8') else: status = '404 NOT FOUND' response_headers = [('Content-type', 'text/html')] self.start_response(status, response_headers) yield '<h2>404 NOT FOUND</h2>'.encode('utf-8') if __name__ == "__main__": app = make_server('127.0.0.1', 8000, Application) print('Serving HTTP on port 8000...') app.serve_forever()
看完上述內(nèi)容,你們掌握怎么在Python中實(shí)現(xiàn)一個(gè)WSGI框架的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
名稱欄目:怎么在Python中實(shí)現(xiàn)一個(gè)WSGI框架
文章源于:http://jinyejixie.com/article2/gcepoc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開發(fā)、標(biāo)簽優(yōu)化、關(guān)鍵詞優(yōu)化、虛擬主機(jī)、網(wǎng)站收錄、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)