Python 3.x GUI Tutorials

In the book I am reading, he gives me a very short tutorial on how to use Tkinter and pyGTK, but nothing more. It just tells me how to use the helloworld application, which is obviously much simpler than what I am aiming for. As a result of a google search, nothing was done in the way of learning, and obviously the book is not needed. Is there a textbook that any of you know about this, will help you with these programs, or maybe even better than the ones mentioned above?

+4
source share
3 answers

I used PyQt for Python 3. PyQt is already available for Python 3000.

http://www.riverbankcomputing.co.uk/software/pyqt/download

There are many lessons in PyQt:

http://diotavelli.net/PyQtWiki/Tutorials

I donโ€™t know how to withstand PyGTK, but my experience is that it is quite arid. Anyway, you will find more information, for example, here:

https://stackoverflow.com/questions/3993269/pygtk-vs-pyqt-vs-wxpython-vs-tkinter

And about the tools:

Which ideal is good for developing PyQt applications?

+2
source

Tkdocs.com has a good tkinter tutorial:

http://www.tkdocs.com/tutorial/index.html

And of course, the tkinter page on python.org contains a lot of information, including links to some tutorials.

+3
source

You can check them, depending on the library you want to use: -

wxPython: - http://zetcode.com/wxpython/

PyGtk: - http://zetcode.com/tutorials/pygtktutorial/

The sites also have links to other guides for GUI programming.

+2
source

Source: https://habr.com/ru/post/1398083/


All Articles