gpt4 book ai didi

python - 为什么 'tornado.ioloop.IOLoop.instance().start()' 给我一个错误?

转载 作者:太空狗 更新时间:2023-10-30 01:05:42 24 4
gpt4 key购买 nike

我是 Tornado 的新手。我构建了这个非常基本的 Tornado 请求处理程序,我预计它会在 GET 上返回“Hello World”:

import tornado
import tornado.web

class HelloWorldHandler(tornado.web.RequestHandler):
@tornado.web.asynchronous
def get(self, *args):
self.write("Hello World")
self.finish()

if __name__=="__main__":
app = tornado.web.Application([
(r'/help', HelloWorldHandler),
], cookie_secret="__SHH_DONT_TELL__")

app.listen(5001)
tornado.ioloop.IOLoop.instance().start()

但是当我运行它时我得到:

Traceback (most recent call last):

File "<ipython-input-1-4bf86d0b596e>", line 1, in <module>
runfile('D:/Python/notebooks/my_tornado/temp.py', wdir='D:/Python/notebooks/my_tornado')

File "C:\WinPython-64bit-3.5.2.3\python-3.5.2.amd64\lib\site-packages\spyder\utils\site\sitecustomize.py", line 866, in runfile
execfile(filename, namespace)

File "C:\WinPython-64bit-3.5.2.3\python-3.5.2.amd64\lib\site-packages\spyder\utils\site\sitecustomize.py", line 102, in execfile
exec(compile(f.read(), filename, 'exec'), namespace)

File "D:/Python/notebooks/my_tornado/temp.py", line 23, in <module>
tornado.ioloop.IOLoop.instance().start()

File "C:\WinPython-64bit-3.5.2.3\python-3.5.2.amd64\lib\site-packages\zmq\eventloop\ioloop.py", line 162, in start
super(ZMQIOLoop, self).start()

File "C:\WinPython-64bit-3.5.2.3\python-3.5.2.amd64\lib\site-packages\tornado\ioloop.py", line 752, in start
raise RuntimeError("IOLoop is already running")

RuntimeError: IOLoop is already running

但是,它似乎有效。当我从 Chrome 中点击 http://localhost:5001/help 时,我得到:

Hello World

如果我杀死它并注释掉最后一行 (#tornado.ioloop.IOLoop.instance().start()),那么

  1. 我没有得到错误
  2. 看起来一切正常。

所有文档都说我需要最后一行,但我似乎并不需要。我应该把它关掉吗?谁能解释为什么我会看到这个?

注意 1:app.listen 的“帮助”明确指出:

Note that after calling this method you still need to call
IOLoop.current().start() to start the server.

但是,如果我使用 current()instance() 并且在文档的其他地方它说使用 instance() 在这种情况下是首选。

注意 2:我绝对没有运行 tornado 的另一个实例或这个程序。当我对系统进行干净启动然后运行代码时,就会发生这种情况。我正在使用 IronPython 控制台在 Spyder 中运行代码,不确定这是否重要。

更新:我在运行 python2 的 docker 中的 AWS 上运行了这个脚本。我没有看到任何错误(不确定它们是否被抑制了。)这似乎是我的 Windows 安装所特有的?我正在使用最新的 Tornado 运行更新的 WinPython。

最佳答案

IPython Notebook 已经在运行 Tornado IOLoop。这就是您看到“IOLoop 已在运行”错误的原因。您还会注意到 IPython 配置了一种特殊的循环,即 ZMQIOLoop,这不是 Tornado 的默认循环类型。

在开发和测试 Tornado 网络应用程序时最好不要使用 IPython。

关于python - 为什么 'tornado.ioloop.IOLoop.instance().start()' 给我一个错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42769929/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com