Python Forum
some advice - 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: some advice (/thread-8608.html)



some advice - garikhgh0 - Feb-28-2018

Hi. please advice me which widgets to use tkinter or PyQt for creating applications for windows. in the application must be used some data tables, buttons, spinbuttons and so on. the application is Monte carlo simulator.


thanks in advance


RE: some advice - Larz60+ - Feb-28-2018

Both can do what you want.
Qt is more modern looking and has many more options.
There's also wxpython.
and other GUI packages


RE: some advice - nilamo - Apr-03-2018

tkinter comes with python, the others are external packages that would need to be installed. Your requirements are quite basic, and nearly any gui package could handle them easily.