Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any good 3rd party GUI products for Python?

In .Net you have companies like DevEpxress, and Infragistics that offer a range of GUI widgets. Is there any market like that for Python GUI widgets? I'm thinking specifically about widgets like the DevExpress xtraGrid Suite.

Edit 01-16-09: For Example:

http://www.devexpress.com/Downloads/NET/OnlineDemos.xml http://demos.devexpress.com/ASPxGridViewDemos/

http://www.infragistics.com/products/default.aspx

like image 710
mchean Avatar asked Jan 16 '09 01:01

mchean


2 Answers

There are a number of GUI Toolkits available for Python. Obviously, the toolkit you choose will determine your selection of 3rd party widgets.

The Contenders

Python comes with Tkinter which is easy to use, but not great looking.

There are some very popular cross platform GUI toolkits borrowed from C/C++ that have a lot of external widgets: wxPython, pyQt, pyFLTK, pyGtk

I also know of, but have not used some of the other toolkits that are out there: PyGUI, Easygui, PythonCard

My Choice

I'm a fan of wxPython. They have a nice selection of widgets, some great examples that come with the install, good documentation, a book, and an active community.

WxWidgets has additional components offered by the community called wxCode.

Quote about wxPython from the creator of Python:

wxPython is the best and most mature cross-platform GUI toolkit, given a number of constraints. The only reason wxPython isn't the standard Python GUI toolkit is that Tkinter was there first.

-- Guido van Rossum

like image 180
John Mulder Avatar answered Nov 14 '22 21:11

John Mulder


The popular Python GUI toolkits are usually wrappers around external (usually C, C++) libraries. So whatever 3rd party products those external libraries have, Python code can benefit (by minimal manual wrapping even in case the 3rd party solution does not provide Python wrappers by default).

like image 40
utku_karatas Avatar answered Nov 14 '22 22:11

utku_karatas