Razer
Razer

Reputation: 8211

Which gui framework for python 3.2

For some reasons I have to stick at Python 3.2. Unfortunately wxPython doesn't support python 3.

So which GUI framework should I choose?

Upvotes: 2

Views: 3109

Answers (2)

Schnouki
Schnouki

Reputation: 7717

You can also use GTK 3 through PyGObject (turorial here).

Upvotes: 1

Sven Marnach
Sven Marnach

Reputation: 602155

Depends on your requirements. If TkInter does the job, it will be the least hassle since it comes with Python. Otherwise, go for PyQt.

Upvotes: 3

Related Questions