Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wxPython GUI - can it be compared to Java GUI or Visual Studio GUI?

I have a two years of experience in programming of enterprise application's with Java and Visual Studio, and I'm new in Python and wxPython. So my question is: Can wxPython provide me enough rich GUI to create those same app's? My reason if using Python is in it's diversity, simplicity and fast development of app's. Thank you!

like image 507
Branislav Lazic Avatar asked Jan 17 '23 23:01

Branislav Lazic


2 Answers

I think it depends on your definition of "rich." I use it and like to think it can make some fairly useful GUIs. Here's a screenshot of a wxPython app to work with sensor data I'm writing right now - not the most elaborate or complicated in the world, but so far it seems fairly intuitive for users:

NDIToolbox Windows 7 screenshot

I find the wxPython docs to be a little sparse at times, but as long as you've got the demo installed and the wxWidgets docs open it's a good toolkit to use.

like image 187
ChrisC Avatar answered Feb 09 '23 18:02

ChrisC


wxGlade will give you the GUI skeleton. You will still need a separate text editor (I recommend Geany) to fill in the handlers.

like image 43
Ignacio Vazquez-Abrams Avatar answered Feb 09 '23 18:02

Ignacio Vazquez-Abrams