Pyinotify 不与 pygtk 一起运行

发布于 2024-09-02 00:26:09 字数 485 浏览 5 评论 0原文

我是 python 新手,我正在尝试使用 pygtk 将 pyinotify 与 GUI 界面结合使用。我有两个类,我的 gtk 类没有做太多事情,只显示内容,另一个类处理监视。

当我单独运行它们时,它们会完成它们的工作,但是当我尝试从另一个类加载 gtk 类时,它只运行 gtk 类,监视器类仅在我退出 GUI 时运行。如果我评论最后一行,监视器运行正常。我认为“myGTK.main”阻塞了整个过程。有什么我可以做的吗?

pyinotify.ProcessEvent.__init__(self)
self.notifier = pyinotify.ThreadedNotifier(self.watch_manager, self)    
self.watch_manager.add_watch('/test', pyinotify.IN_CREATE, rec=True)
self.notifier.start()
self.myGTK.main()

谢谢。

I'm newbie in python and I'm trying to use pyinotify with a GUI interface using pygtk. I have two classes, my gtk class which doesn't do much, only displays stuff, and a class that handles the monitoring.

When I run them separately they do their work but when I try to load the gtk class from the other one, it only runs the gtk class, the monitor class only runs when I exit the GUI. If I comment the last line the monitor runs fine. I think the "myGTK.main" is blocking the whole process. Is there anything I can do?

pyinotify.ProcessEvent.__init__(self)
self.notifier = pyinotify.ThreadedNotifier(self.watch_manager, self)    
self.watch_manager.add_watch('/test', pyinotify.IN_CREATE, rec=True)
self.notifier.start()
self.myGTK.main()

Thanks.

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

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

发布评论

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

评论(1

北凤男飞 2024-09-09 00:26:09

根据评论,解决方案似乎是在

gobject.threads_init()

脚本顶部附近添加。有关使用 pygtk 线程的此信息以及其他有用信息可以在 此常见问题解答

Per the comments, the solution appears to be to add

gobject.threads_init()

near the top of the script. This, and other useful information about using threads with pygtk can be found in this faq.

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