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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
“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.