我是cherrypy的新手。我刚刚试用了wsgiserver的一个示例程序。程序如下
from cherrypy import wsgiserver
def my_crazy_app(environ, start_response):
status = '200 OK'
response_headers = [('Content-type','text/plain')]
start_response(status, response_headers)
return ['Hello world!']
server = wsgiserver.CherryPyWSGIServer(
('127.0.0.1', 8080), my_crazy_app,
server_name='localhost')
server.start()
成功地得到了输出CCD_ 1,但问题是,当我在终端上点击Ctrl-c
来停止服务器时,它并没有停止。怎么做?
IIRC,wsgiserver本身不与任何信号关联,因此不尊重SIGINT中断。只有更高级别的CherryPy发动机才能提供这种功能。如果你不能使用它,你可能想使用Python信号模块安装一个处理程序。
好吧,一些类似的东西会起作用:
import signal
from cherrypy import wsgiserver
def my_crazy_app(environ, start_response):
status = '200 OK'
response_headers = [('Content-type','text/plain')]
start_response(status, response_headers)
return ['Hello world!']
server = wsgiserver.CherryPyWSGIServer( ('127.0.0.1', 8080), my_crazy_app, server_name='localhost')
def stop_server(*args, **kwargs):
server.stop()
signal.signal(signal.SIGINT, stop_server)
server.start()