WSGI:Web Server Gateway Interface,web服務接口html
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