web server gateway interface:将http请求,响应格式封装起来,让我们可以专心的用python编写web业务. WSGI接口定义的非常简单,它只要求开发者实现一个函数,就可以响应HTTP请求. 我们来看一个最简单的例子: def application(environ,start_response): start_response('200 OK',[('content-type', 'text/html')]) return [b'<h1>Hello,Web<…