用于磁盘分析器的 Python 工具包
我正在 Linux 中创建一个磁盘分析器。我想知道哪个 Python 工具包可以帮助我使用 GUI。我目前正在尝试 Tkinter 有更好的吗?
I'm creating a Disk Analyzer in Linux. I would like to know which Python toolkit will help me with the GUI. I'm currently trying Tkinter is there something better?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“更好”是主观的。我很乐意提出我的观点,没有比 Tkinter 更好的工具包来完成这项任务。这项任务似乎不需要太多的视觉效果或打印能力,而这是 Tkinter 的弱点。 Tkinter 易于使用、现代、稳定且高度可定制。另外,您可能已经拥有它。它有一个画布小部件,如果您正在考虑绘制热图或图表或图表或其他任何内容,则该小部件非常易于使用。
其他人无疑会说“不可能!wxPython 更好,因为......”,或者“不可能!pyqt 更好,因为......”。坦白说,我们都很好。它们都是很好的工具包。对于你正在做的事情,我认为工具包并不重要。选择任何工具包并使用它。
"Better" is subjective. I will gladly offer my opinion that there is no toolkit better than Tkinter for this task. This task seemingly doesn't need much eye candy or the ability to print, which are Tkinter's weak points. Tkinter is easy to use, modern, stable, and very customizable. Plus, you probably already have it. It has a canvas widget that is incredibly easy to use if you are considering drawing heat maps or charts or graphs or whatever.
Others will no doubt say "no way! wxPython is better because...", or "no way! pyqt is better because...". And frankly, we're all right. They are all fine toolkits. For what you are doing I would argue that the toolkit doesn't matter. Pick any toolkit and use it.