Skip to content

Commit 1a420a9

Browse files
author
Kenneth Reitz
committed
Merge pull request realpython#82 from kisielk/gui
Added links to Tk tutorials
2 parents 44580ec + eecd357 commit 1a420a9

1 file changed

Lines changed: 17 additions & 3 deletions

File tree

docs/scenarios/gui.rst

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,22 @@ Install (Stable)
3434

3535
Gtk
3636
:::
37-
PyGTK proveds Python bindings for the GTK+ toolkit. Like the GTK+ library itself, it is currently licensed under the GNU LGPL. It is worth noting that PyGTK only currenty supports the Gtk-2.X API (NOT Gtk-3.0). It is currently recommended that PyGTK is not used for new projects and existing applications be ported from PyGTK to PyGObject.
37+
PyGTK provides Python bindings for the GTK+ toolkit. Like the GTK+ library
38+
itself, it is currently licensed under the GNU LGPL. It is worth noting that
39+
PyGTK only currenty supports the Gtk-2.X API (NOT Gtk-3.0). It is currently
40+
recommended that PyGTK is not used for new projects and existing applications be
41+
ported from PyGTK to PyGObject.
3842

39-
tk
43+
Tk
4044
::
41-
Tkinter is a thin object-oriented layer on top of Tcl/Tk. Both Tk and Tkinter are available on most Unix platforms, as well as on Windows and Macintosh systems. Starting with the 8.0 release, Tk offers native look and feel on all platforms.
45+
Tkinter is a thin object-oriented layer on top of Tcl/Tk. It has the advantage
46+
of being included with the Python standard library, making it the most
47+
convenient and compatible toolkit to program with.
48+
49+
Both Tk and Tkinter are available on most Unix platforms, as well as on Windows
50+
and Macintosh systems. Starting with the 8.0 release, Tk offers native look and
51+
feel on all platforms.
52+
53+
There's a good multi-language Tk tutorial with Python examples at
54+
`TkDocs <http://www.tkdocs.com/tutorial/index.html>`_. There's more information
55+
available on the `Python Wiki <http://wiki.python.org/moin/TkInter>`_.

0 commit comments

Comments
 (0)