tags:

views:

92

answers:

3

I was wondering if there was a way to make tkinter more aesthetically pleasing.

A: 

You can try PyGtk or PyQt, both have very nice python bindings from what i have heard. There's also the possibility of Tile, which is getting integrated into tkinter in the (near?) future.

So, choose another GUI toolkit, or wait :).

crazy2be
The wait wasn't too long -- Python 2.7 final was release on July 3!-)
Alex Martelli
+2  A: 

The ttk module is in the upcoming Python 2.7 release.

kwatford
It's also available in 3.1. It's very nice.
Matt Joiner
Will 2.7 be more similar to 2.6 (what I'm currently using)?
Anteater7171
@anteater, yes, 2.7 is the last compatibility version of the 2.* series of releases -- definitely more similar to 2.6 than any 3.* is or will ever be.
Alex Martelli
A: 

If you don't want to use an alpha version of Python to get ttk, you can download and use the pyttk library from the package index (or use easy_install to get it of course).

Brandon Corfman
Not a long wait for a final release of Python 2.7 -- it was released on July 3.
Alex Martelli