Python Wsgi
# 浏览器请求动态 web 页面过程
# WSGI
WSGI:Web Server Gateway Interface。
WSGI 接口定义非常简单,它只要求 Web 开发者实现一个函数,就可以响应 HTTP 请求。
123def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return [b'Hello,...
more...