Python Forum
Which is best GUI for drop down menus and calculations - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: Which is best GUI for drop down menus and calculations (/thread-21395.html)



Which is best GUI for drop down menus and calculations - Chuck_Norwich - Sep-27-2019

Hi, as title, want the best/not complicated GUI for something like this


https://www.tlc-direct.co.uk/Technical/Charts/VoltageDrop.html?ad_position=1t1&source=adwords&ad_id=385477836663&placement=&kw=cable%20calculator&network=g&matchtype=e&ad_type=&product_id=&product_partition_id=&version=finalurl_v3&gclid=Cj0KCQjw5rbsBRCFARIsAGEYRwejIwd3Ap9i8v80ZTA0l6kvI_cZpP0sUIgi5ZdJuUBO2ekNdUIs0LYaAgXrEALw_wcB

Not done any interface so not really knowing where to start out of the several Python GUI interfaces out there.

Is the basic Tkinter one fine for this?

Thanks


RE: Which is best GUI for drop down menus and calculations - Denni - Sep-27-2019

Basically you can use just about any of the various Gui tools it all depends on preference or company restrictions (if any) and/or license issue (if any - e.g. GPL vs LGPL) Once those last two concerns are addressed the last part is which one do you want to learn -- I chose PyQt5 because it was the most robust and best documented (the latter being a big concern to me) and I have found it to quite nice to work with (once I learned that the Designer was definitely not necessary). Now I have not used Tkinter or any or the others since the project I was converting used PySide (another reason why I chose PyQt5 since its closest to PySide but is more current in its implementation than PySide2 is so I had to base my decision partially off of 2nd-hand information but I did a lot of cross-referencing of that 2nd-hand information before going with it. So with that said Good Luck with whatever Gui Tool you end up using.

P.S. If you do decide to use PyQt5 I run a Discord free Tutoring/Mentoring message server and can help you get going as well as provide help if you get stuck along the way -- drop a friend request to DenniO#8137 to get an invite


RE: Which is best GUI for drop down menus and calculations - Chuck_Norwich - Sep-27-2019

Ok, thanks. Didn't want to start down a road and find I couldn't get done what I needed.