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