vote up 3 vote down star

I've been a Rails developer for a few years now and until Rails, have never been exposed to the conventions and design patterns that I've now grown to love and appreciate.

I would like to start getting into building desktop applications with Python in a Gnome environment. What would be a beneficial resource to get started? I would like to follow MVC and use test driven design.

One project i am aware of in the python-gtkmvc which I will be looking at.

Aside from python-gtkmvc, are there are any other decent frameworks for building desktop applications with Python or specific design patterns or proven application structuring techniques? In regards to testing, what are the ideal testing suites? Is PyUnit the standard? Is GUI testing prevalent? PyGTK versus wxPython? Any ORM like solutions for working with data?

Finally, could anyone point to a repository I could take a look at of a desktop Python application that's fully tested and well done?

flag

5 Answers

vote up 3 vote down check

My first question is whether you have done much work in python before. Are you already familiar with standard python idioms as well as the module library? If not, take a look a couple of the threads out there on SO. They have invaluable resources on learning python standard practice (and all the cool things you can do).

In terms of good GUI APIs for Python, there is a nice little thread on this very topic.

If you would like to get a look at a well used python program's source code, I might recommend the original BitTorrent client (note: link is to the linux source), as it is both written in python and used by a massive user base.

You might also take a look at this thread regarding a single python executable on each of Windows/Mac/Linux.

link|flag
I have not done any professional Python work, everything up until this point has been hobby or experimenting. I have been browsing SO threads for Python idioms and design patterns that may prove useful as well as selecting an editor that I'll be most productive with. – mwilliams Oct 20 '08 at 5:34
vote up 0 vote down

Besides those you mention, there's PyQt.

I'm not aware of any good ORM used in desktop apps.

MVC is in fact, a GUI app design architecture; it was (crudely) adapted to web apps, but since the original formulation has no relation to (traditional) web architecture, it was redefined, so what's now currently known as MVC is very different to the original MVC.

some GUI libraries use a simplification of MVC, commonly losing the controller, or merging it with the views. its more appropriate of modern design, since most of what was the controller now is simply the message/signals/event passing infrastructure, and the rest is too tightly coupled to the interaction, so it's better to merge with the view.

link|flag
vote up 0 vote down

For a Python ORM, you can take a look at SQLObject.

link|flag
I used SQLObject for a while but sooner than later found it rather lacking in terms of querying flexibility. SQLAlchemy served me better, although it took longer to learn. – pi Oct 20 '08 at 8:38
vote up 0 vote down

Any reasons for not wanting to build desktop apps with Ruby?

link|flag
You bring up a great point. I would say half the reason is to finally dive into Python which I can then extend to the web with Django. The other half is to stay in line with much of the standards of that of Ubuntu, which I beleive Python is the go to lang. Not leaving Ruby behind by any means. – mwilliams Oct 20 '08 at 4:15
vote up 1 vote down

For a nice Python ORM, check out Elixir. It's a declarative layer on top of SQLAlchemy based on the Active Record pattern, and should feel very familiar to you coming from Rails.

link|flag

Your Answer

Get an OpenID
or

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