如何从 ipython 启动twisted的反应器

发布于 2024-10-12 00:59:17 字数 168 浏览 4 评论 0原文

我需要从 ipython 中启动一个twisted'reactor,以允许继续交互。 Ipython 的手册页引用了twisted,但我无法理解应该如何继续。文档引用了 IPython.kernel.twistedutil,所以我的印象是它应该是一个标准解决方案......提前感谢

sandro *:-)

I need to start a twisted'reactor from within ipython in a way that allows to go on interacting. Ipython's man page has references to twisted but I couldn't understand the way I should proceed. Documentation references IPython.kernel.twistedutil so that my impression is that it should be a standard solution... Thanks in advance

sandro
*:-)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

昇り龍 2024-10-19 00:59:17

你是这个意思吗?

http://code.activestate.com/recipes/410670- Integrated-twisted-reactor-with-ipython/

这将在 IPython 主线程旁边的线程中启动 Twisted 反应器。您应该能够从 IPython 访问 Twisted 线程。

另一种可能的解决方案是启动沙井 "Service" .tac 文件中的 Twisted 应用程序一起。

Is this what you mean?

http://code.activestate.com/recipes/410670-integrating-twisted-reactor-with-ipython/

This will start the Twisted reactor in a thread alongside IPython's main thread. You should be able to access the Twisted thread from IPython.

Another possible solution would be to start a manhole "Service" alongside your Twisted application in a .tac file.

倾其所爱 2024-10-19 00:59:17
import thread

from twisted.internet import reactor, defer

# This usualy raises Unhandled Error
# exceptions.ValueError: signal only works in main thread
thread.start_new(reactor.run, ())

@defer.inlineCallbacks
def check():
    print "It works!"
    yield

reactor.callFromThread(check)
import thread

from twisted.internet import reactor, defer

# This usualy raises Unhandled Error
# exceptions.ValueError: signal only works in main thread
thread.start_new(reactor.run, ())

@defer.inlineCallbacks
def check():
    print "It works!"
    yield

reactor.callFromThread(check)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文