摘要:
def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return 'Hello, web!'# 1st# Just for Test and... 阅读全文
摘要:
1. WSGIServer WSGIMiddlewareWSGIApplication1.1 WSGI Server wsgi server可以理解为一个符合wsgi规范的web server,接收request请求,封装一系列环境变量,按照wsgi规范调用注册的wsgi app,最后将resp... 阅读全文