Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python GUI framework for Mac OS X

I'm trying to find a good "python GUI framework" for Mac OS X, but I haven't found anything good until now, only wxWidgets which I don't like and it's also unstable.

Any suggestions?

like image 647
Uffo Avatar asked Mar 06 '10 18:03

Uffo


2 Answers

I use pyqt (pyside should be equivalent but with more relaxed license terms) and I find it pleasing and useful -- I also like the fact that (with no extra effort on my part) it gives me cross-platform apps!-)

pyobjc (comes w/your Mac, works w/Xcode, etc) may be preferable for apps you never want to be cross-platform, but I find it less easily usable than PyQt. However if you're very skilled in Objective C, Cocoa etc, I imagine pyobjc will feel perfectly natural and usable to you!-).

like image 121
Alex Martelli Avatar answered Sep 29 '22 05:09

Alex Martelli


For the most MacOSX you could use PyObjc which basically allows you to write Cocoa apps i python using Interface Builder etc.

like image 26
mmmmmm Avatar answered Sep 29 '22 05:09

mmmmmm