线程中的QApplication

发布于 2024-11-28 18:54:21 字数 343 浏览 0 评论 0原文

我正在使用一个名为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 技术交流群。

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

发布评论

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

评论(1

┈┾☆殇 2024-12-05 18:54:21

您可以在主线程中运行 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 the QApplication in spynner in the main thread before branching into multiple threads.

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