使用 Python Tk 线程和 os.system 调用的 shell 命令的基本 GUI
我正在做一个基本的 GUI,以便在执行一些 shell 命令后提供一些用户反馈,这实际上是 shell 脚本的一个小界面。
显示 TK 窗口,等待 os.system 调用完成,并在每次 os.system 调用后多次更新 TK 窗口。
线程如何与 tk 一起工作?
就是这样,谢谢!
I'm doing a basic GUI to provide some user feedback after some shell commands, a little interface for a shell script really.
Showing a TK window, waiting for a os.system call to complete and updating the TK window multiple times, after each os.system call.
How does threading work with tk?
That's it, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 Tk 运行标准线程库,它应该完全没问题。 This 来源说,您应该让主线程运行 gui 并为其创建线程您的 os.system() 调用。
您可以编写这样的抽象,它在完成任务后更新您的 GUI:
可以使用标准库中的 thread.start_new_thread(function, args[, kwargs]) 启动线程。请参阅此处的文档。
The standard threading library should be perfectly okay if you run it with Tk. This source says, that you should just let the main thread run the gui and create threads for your
os.system()
calls.You could write an abstraction like this which updates your GUI upon finishing the task:
The thread can be started using
thread.start_new_thread(function, args[, kwargs])
from the standard library. See the documentation here.这只是我所做的一个基本示例,感谢 Constantinius 指出 Thread 可与 Tk 配合使用!
Just a basic example of what I did, with credit to Constantinius for pointing out that Thread works with Tk!