Can somebody point me to a complete online reference for Python's tkinter module? Of course I've tried to find one by myself, but for some reason I can't, maybe I'm using the wrong keywords?

I'm not looking for a tutorial, instead I'd like to have a reference for all the available classes and attributes.

For example, if I write this code:

from tkinter import *
root = Tk()
root.title("My title")

I wonder: what optional arguments does the Tk class accept for instantiation? What are properties and methods for a Tk object? What arguments does title accept? And so on...

"Look at the source" is not an answer to this question, obviously ^^

(I'm using Python 3.2)

Thank you!

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

I found this reference useful - not always perfect, but usually useful: http://infohost.nmt.edu/tcc/help/pubs/tkinter/index.html

Also contains explanations of layout management and the event model. Since it's for Python 2.5, the code examples won't run out of the box on Python 3, but the method names shouldn't have changed, only the modules were renamed and reorganized (the tk* modules containing popups are now in the tkinter package).

link|improve this answer
Well, honestly I hoped there was something more updated (even official), and possibly more schematic, but I trust your experience and if you reported it, maybe it's the best we can have, so I'm accepting this answer. – kynikos Apr 22 '11 at 13:11
@kynikos: I hoped for something like this as well, but despite my best seach efforts, I never found anything better. – delnan Apr 22 '11 at 13:14
feedback

For a definitive guide to all of the options supported by each widget you should consult the tcl/tk documentation. It's a fairly trivial mental exercise to translate the tcl into python. The only real problems are when the tcl options conflict with python reserved words (such as the -in option for pack and grid)

link|improve this answer
Nice, once I'll have learnt how to do the translation (and how to handle conflicts) it will be very useful for sure. – kynikos Apr 22 '11 at 15:48
feedback

I'm adding an alternative answer by myself: I could just use pydoc to have the complete module reference... Shame on me for not thinking of that before.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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