Where can I find the most modern tutorial that teaches tkinter together with ttk?

tkinter seems the only way to go in Python 3 (don't suggest Python 2), and ttk gave me hope for good-looking GUI.

link|improve this question

1  
Tkinter is ugly. If you don't need to stay in the stdlib, just use PyQt – JBernardo Jul 29 '11 at 1:13
@JBernardo Sorry, I was thinking wxPython – cwallenpoole Jul 29 '11 at 2:43
Well, if Python 2 libraries aren't being ported to Python 3, let's transform Python 2 into Python 3........ from __future__ import unicode_literals,division,print_function, etc. – BlaXpirit Jul 29 '11 at 9:16
1  
@Jbernardo, Tkinter is not as bad as it used to be, and you can make very nice GUIs with it. It uses the system's controls and themes better than previous versions did. You may have to work with the margins and padding a little to get better spacing. This is one thing PyQt does better right off the bat. PyQt is also a great library (and PyGTK), but you can still produce nice interfaces with Tkinter. – Todd Jul 29 '11 at 14:21
1  
@JBernado: ugly is subjective, and a little out of touch with modern tk with themed widgets. Plus, most apps frankly don't need a lot of visual pizazz - functionality and/or ease of development is more often the driving factor. – Bryan Oakley Jul 29 '11 at 14:29
show 3 more comments
feedback

2 Answers

up vote 4 down vote accepted

I have found the TkDocs tutorial to be very useful. It describes building Tk interfaces using Python and Tkinter/Ttk and makes notes about differences between Python 2 and 3. It also has examples in Perl, Ruby and Tcl, since the goal is to teach Tk itself, not the bindings for a particular language.

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

I haven't gone through the whole thing from start to finish, rather have only used a number of topics as examples for things I was stuck on, but it is very instructional and comfortably written. Today reading the intro and first few sections makes me think I will start working through the rest of it.

Finally, it's current and the site has a very nice look. He also has a bunch of other pages which are worth checking out (Widgets, Resources, Blog). This guy's doing a lot to not only teach Tk, but also to improve people's understanding that it's not the ugly beast that it once was.

link|improve this answer
feedback

It's not really 'krekvars' fresh but this is concise to the point and from what I've seen valid for python 2 and 3 (Just lowercase the T in Tkinter in the examples)

http://www.ferg.org/thinking_in_tkinter/

link|improve this answer
Not a word about ttk – BlaXpirit Jan 6 at 10:08
Oh yikers, overlooked that part ^_^ though they are fairly interchangeable from the bit I've seen. – Carel Jan 9 at 9:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.