vote up 0 vote down star

What would you use for a brand new cross platform GUI app, CPython or IronPython ?

What about
- license / freedom
- development
- - doc
- - editors
- - tools
- libraries
- performances
- portability

What can you do best with one or the other ?
- networking
- database
- GUI
- system
- multi threading / processing

flag

What does "what about" mean? What's your actual question? "What about" is vague, making it impossible to answer. Could you list any specific issues you've found and want some clarification on? Perhaps this should be community wiki because it's so open-ended. – S.Lott Jul 19 at 11:25
The question is : which one would you choose, and why ? – dugres Jul 19 at 11:52
@dugres: Choose for what? What purpose? What are you trying to do? What operating system? What database? What application are you writing? Please ask a question that can be answered or mark this community wiki. – S.Lott Jul 19 at 13:43
It's really a general question : I know CPython and I don't know IronPython, so I wonder if it's worth considering, what is it good for, why some people are using it, in which situation will it be better suited than CPython ? and I'm perfectly happy with the kind of answers you can see below. So, if you use IronPython, I'd be happy to know why. – dugres Jul 19 at 15:10
@dugres: What does "worth considering" mean? "good for" what? All programming languages are good for almost anything. Please mark this community wiki since there's no "answer" that could possibly make sense with such a vague question. – S.Lott Jul 19 at 18:39
show 2 more comments

3 Answers

vote up 2 vote down check

Use CPython, with IronPython you are bound to .Net platform which do not have much cross platform support, mono is there on linux but still for a cross platform app, I wouldn't recommend .Net.

So my suggestion is use CPython, for GUI use a framework like wxPython/PyQT and you would be happy.

link|flag
Good suggestion, thanks. – dugres Jul 19 at 12:10
vote up 1 vote down

I can only think of about one "cross platform" GUI app that's remotely tolerable (firefox), and people are complaining wildly about it everywhere I look.

If you want to do cross platform, build a nice, solid model that can do the work you need done and build platform-specific GUIs that use it.

I don't know how tolerable wxpython or pyqt are on Windows and Linux, but the further you get from plain cocoa on OS X, the harder it gets to build and the less pleasant it gets to use.

link|flag
wxPython is the closest you can get to native looking both on windows and linux, but it won't look nice on OS X. – voyager Jul 19 at 17:58
I have made few app on Mac OS X using wxPython and it looks good enough – Anurag Uniyal Jul 20 at 3:26
It's not just about look. I can handle look alright for the most part. It's just bad behavior that causes issues. Firefox has done a lot of work to look and mostly feel right on OS X, but I still can't hit cmd-ctl-d while hovering a word to look it up in my system dictionary. – Dustin Jul 20 at 18:16
vote up 3 vote down

if you like/need to use .net framework, use ironpython, else CPython it's your choice

(or you can try PyPy :))

link|flag
I don't need .Net and I don't know if I like it. – dugres Jul 19 at 12:01

Your Answer

Get an OpenID
or

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