WSGI

一.WSGI

WSGI:Web Server Gateway Interface,web服務接口html

二.WSGI接口定義

WSGI接口定義很是簡單,它只要求Web開發者實現一個函數,就能夠響應HTTP請求web

def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/html')])
    return [b'<h1>Hello, web!</h1>']

  

三.簡單示例:

from wsgiref.simple_server import make_server

def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/html')])
    return [b'<h1>Hello, web!</h1>']

httpd = make_server('', 5900, application)
httpd.serve_forever()

  

更多時候咱們會使用其餘web框架,好比flaskflask

相關文章
相關標籤/搜索