vote up 1 vote down star
3

Is there like an AIR for python? I know I can use Cocoa with Python, is there anything else? How easy is it to get started with Cocoa for Python if you know Python.

flag

Duplicate: stackoverflow.com/questions/426718/… – S.Lott May 14 at 2:10
3  
It's not duplicate. I'm asking about mac os x. That question is for cross platform. Big difference don't you think. – apphacker May 14 at 2:58

4 Answers

vote up 9 vote down check

I would go with PyObjC. It is supported with XCode (Mac OS X's main development platform) and the resulting application is 100% Cocoa (which is a huge bonus if you don't need cross-platform).

link|flag
vote up 9 vote down

A very popular GUI system for Python (and my personal favourite) is wxPython.

link|flag
wxPython is also installed by default of OS X 10.5 – John Montgomery May 14 at 8:32
I would suggest avoiding wxWidgets unless you really need it's cross platform characteristics. Even then, wx makes me shudder. Many other toolkits are better-designed, easier to use, and more reliable. The one thing wx really rocks at is providing a nearly-native experience in Windows, Mac, and Linux(GTK). – Steve S May 15 at 21:54
Why does it make you shudder? "Better-designed, easier to use, and more reliable" are very subjective terms. – Wayne Koorts May 15 at 22:45
I will grant that "better-designed" and "easier to use" are mostly subjective (though self-consistency is a measurable aspect of both). Still, I've seen consensus among the competent programmers whom I personally know that wx lacks in these areas. Moreover, this has been my own experience, and I have found the gap to be wide. I hold that reliability (or at least many major aspects of it) can be quantitatively measured. Things like how often binary-compatibility is broken, how many API changes occur between minor releases, and the frequency of major bugs are concrete and measurable. – Steve S May 19 at 16:17
For what it's worth, if you like wx, don't let me discourage you. Use the tool that gets the job done. If wx gets your jobs done, then it's the tool to use. I just happen to prefer a different tool for my jobs. ;-) – Steve S May 19 at 16:20
show 1 more comment
vote up 7 vote down

There is PyQt, which lets you use the cross-platform Qt toolkit from Python.

Also, I asked a similar question a while ago which has some more suggestions: What cross-platform GUI libraries are simple, lightweight, and have minimal dependencies?

link|flag
vote up 4 vote down

There is Tkinter. It comes standard with Python and uses native widgets on the Mac.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.