Python GUI Programming
fuser 15 years ago
This is probably the easiest article on GUI programming in Python. Quite impressive, IMO.
Uber0n 15 years ago
Good examples; easy to understand. And I definately agree with you, Skunkfoot ;)
korg 15 years ago
Good article but couldn't help but think I read it before when I was learning python, pulled out my old links and found this: http://effbot.org/tkinterbook/tkinter-hello-tkinter.htm
ghost 15 years ago
@korg: How was that tutorial like my article? The only similarity I see is that the first example is the same, but there's only so many ways to make a window that says "Hello World!" and I provided my own explanations. Plus that tutorial looks exactly the same as the one I gave a link to at the end of my article.
richohealey 15 years ago
Also bear in mind that while tkinter is remaining in the standard library for py3k (lightness) it's not a viable toolkit for todays world. I like wx personally, or just using the win32 API if i'm doing work for clients. There is a lot of info on this on the dev list lately.
ghost 15 years ago
Impressive article in my opinion. An easy-to-read tutorial on how to make a GUI in python, just what the title said. :)
ghost 15 years ago
Very helpful! I've just been learning to use Python and PyGame and i find it much easier to learn as a first language than C or other languages. Great article!