GUI python: request for interface tips and or ide's for this

0

I'm redoing a small project I had done in Java, but now in Python. I'm learning everything from scratch and alone.

I need help with this part. Which interface do you recommend? Are there any IDEs that work in design mode and things like that?

So far, I've only heard of TKinter through some playlist on youtube: Zero Ignorance - playlist and Excript - playlist

    
asked by anonymous 28.09.2016 / 04:04

1 answer

1

TKinter is the "common denominator" of graphical interface for Python. This means that a Python script that makes use of TK will run on any platform. For simple applications, it's a good choice, but as far as I know there is no "designer" for TK, you have to specify the interface using code.

For small projects it is sufficient and easy to use. For a large project with portability pretensions it would have to consider options like Qt (PyQt). Other options like PyGTK may be convenient if you already know GTK +, but GTK + outside of Linux is not so convenient to use. PyObjC is Mac specific, and so on.

    
28.09.2016 / 04:23