线程中的QApplication
我正在使用一个名为spynner 的Python 模块。 spynner 在 QApplication 实例上运行。我需要使用spynner 异步运行函数。
我尝试在不同的线程中调用这些函数,使用类似: thread.start_new_thread(function_using_spynner)
如果我只运行一个函数,则此方法有效,但如果我尝试运行其中 2 个函数,则会收到一条错误消息,指出无法在主线程之外创建 QApplication。有没有办法在同一线程中异步运行函数?这些函数不返回任何内容,因此只需运行它们就足够了。
如果没有,是否有在主线程之外创建 QApplication 实例的解决方法?我不需要显示器。
I'm using a module named spynner with python. spynner runs on a QApplication instance. I need to run functions using spynner asynchronously.
I have tried calling these functions in different threads, using something like:
thread.start_new_thread(function_using_spynner)
This works if I run just one function, but if I try to run 2 of them I get an error saying that QApplication can not be created outside of main thread. Is there a way to run functions asynchronously in the same thread? The functions return nothing, so just running them will be enough.
If not, is there a workaround for creating QApplication instances outside of main thread? I don't need a display.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在主线程中运行 function_using_spynner 并在另一个线程中执行您需要执行的任何其他操作。或者,您可以在分支到多个线程之前在主线程中的spynner 中启动
QApplication
。You could run
function_using_spynner
in the main thread and do whatever else you need to do in the other thread. Alternatively, you could start theQApplication
in spynner in the main thread before branching into multiple threads.