Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Recently, I have become increasingly familiar with Django. I have a new project that I am working on that will be using Python for a desktop application. Is it possible to use the Django ORM in a desktop application? Or should I just go with something like SQLAlchemy?

share|improve this question
See also stackoverflow.com/questions/1317899/…, if you want to use the admin web-app functionality in a desktop application. – Mechanical snail Sep 28 '11 at 20:32

6 Answers

up vote 8 down vote accepted

The Django people are sensible people with a philosophy of decoupling things. So yes, in theory you should be perfectly able to use Django's ORM in a standalone application.

Here's one guide I found: Django ORM as a standalone component.

share|improve this answer
That link isn't desktop-specific, so there may be a few more gotchas. (I tried to get it running this week and ran into a few snags.) Just a heads up for everyone. – Macke Jan 20 '11 at 19:27

I would suggest using SQLAlchemy and a declarative layer on top of it such as Elixir if you prefer a Django-like syntax.

share|improve this answer
Also SQLAlchemy exposes a little more of the SQL design, making it a tiny bit easier to use 3rd party reporting tools. – S.Lott Jul 30 '09 at 14:09

Yes it is. The Commonsense Computing Project at the MIT media lab does that for ConceptNet, a semantic network. You can get the source here: http://pypi.python.org/pypi/ConceptNet/4.0b3

share|improve this answer

The peewee ORM has a declarative syntax that should be familiar to django users, and can be used as a standalone. Here are the project docs

share|improve this answer

I would suggest another ORM for a desktop application maybe SQLAlchemy or SQLObject. It i possible to use the django ORM but I think other ORM are a better ones if you are going to use them standalone.

share|improve this answer

Camelot seems promising if you want to do Python desktop apps using a DB. It uses SQLAlchemy though. Haven't tried it yet.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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