为什么要使用wsgiref simple_server?

时间:2011-03-11 19:32:23

标签: python mod-wsgi wsgi wsgiref

我有一个简单的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()

该应用程序在没有服务器的情况下工作,那么服务器是什么?

1 个答案:

答案 0 :(得分:7)

我猜本教程假设您没有设置和运行mod_wsgi。这样您就可以从命令行运行脚本,它将启动运行应用程序的wsgiref服务器,这样您就可以测试它而无需安装Apache和mod_wsgi。