python – 为什么要使用wsgiref simple_server?
作者:互联网
我有一个简单的webapp来构建,我刚开始乱用mod_wsgi.在各种教程中,第一个hello world应用程序看起来如下所示:
def application(environ,start_response):
response_body = 'Hello World'
status = '200 OK'
response_headers = [('Content-Type', 'text/plain'),
('Content-Length', str(len(response_body)))]
start_response(status, response_headers)
return [response_body]
然后,以后应用程序包含一个使用wsgiref的wsgi服务器,一些变体:
from wsgiref.simple_server import make_server
def application(environ, start_response):
response_body = 'Hello World'
status = '200 OK'
response_headers = [('Content-Type', 'text/plain'),
('Content-Length', str(len(response_body)))]
start_response(status, response_headers)
return [response_body]
httpd = make_server('localhost', 8000, application)
httpd.serve_forever()
该应用程序无需服务器,所以服务器是什么?
最佳答案:
我猜这个教程假设你没有设置和运行mod_wsgi.这样您就可以从命令行运行脚本,它将启动运行应用程序的wsgiref服务器,这样您就可以测试它而无需安装Apache和mod_wsgi.
标签:python,wsgi,mod-wsgi,wsgiref 来源: https://codeday.me/bug/20190515/1109464.html