4

In the book that I am reading, it gives me a VERY short tutorial on how to use Tkinter and pyGTK, but nothing else. It just tells me how to make a helloworld application using them, which is obviously much more simple than the things I am aiming for. A google search rendered nothing much in the way of tutorials, and obviously the book is of no help. Is there a tutorial that any of you know of that helps you with those programs or maybe even a better option that those aforementioned two?

Billjk
  • 10,387
  • 23
  • 54
  • 73

3 Answers3

3

Tkdocs.com has a nice tutorial on tkinter:

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

And, of course, the tkinter page on python.org has lots of information, including links to some tutorials.

Bryan Oakley
  • 370,779
  • 53
  • 539
  • 685
2

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

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

There are lot of tutorials about PyQt:

http://diotavelli.net/PyQtWiki/Tutorials

I don't know aboyt PyGTK, but my experience is that it is quite arid. Anyway, you'll find more info, for example, here:

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

And about tools:

What ide is good for developing PyQt apps?

Community
  • 1
  • 1
Baltasarq
  • 12,014
  • 3
  • 38
  • 57
2

You could check these out, 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 tutorials for GUI programming

rajatkhanduja
  • 974
  • 1
  • 9
  • 28