Python GUI: request interface and or ide tips for this

Asked

Viewed 389 times

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. What interface do you recommend? Do you have an IDE that works 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

1 answer

1


Tkinter is the "common denominator" of the graphical interface for Python. This means that a Python script that makes use of TK will run on any platform. For simple applications, it is a good choice, but as far as I know there is a "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 you would have to consider options such as Qt (Pyqt). Other options like Pygtk can be convenient if you already know GTK+, but GTK+ outside of Linux is not so convenient to use. Pyobjc is specific to the Mac, and so on.

  • That’s exactly what I’m looking for: options.

  • 2

    Just a small addendum related to GTK+. If you choose to make use of it, forget Pygtk, it is based on Gtk2 that has already been discontinued. To Gtk the way is Pygobjects

Browser other questions tagged

You are not signed in. Login or sign up in order to post.