在后台运行Python HTTPServer并继续执行脚本

问题描述

我正在尝试弄清楚如何在运行"".Serve_Forever()方法后在后台运行我的重载的定制BaseHTTPServer实例。

通常,当您运行时,方法执行将挂起,直到您执行键盘中断,但我希望它在继续脚本执行的同时在后台服务请求。请帮帮忙!


解决方案

您可以在其他线程中启动服务器:https://docs.python.org/2/library/thread.html

所以是这样的:

def start_server():
    # Setup stuff here...
    server.serve_forever()

# start the server in a background thread
thread.start_new_thread(start_server)

print('The server is running but my script is still executing!')

相关文章