I love the abstract database API that comes with Django, I was wondering if I could use this (or something similar) to model, access, and manage my (postgres) database for my non-Django Python projects.

link|improve this question

71% accept rate
feedback

3 Answers

up vote 13 down vote accepted

What you're looking for is an object-relational mapper (ORM). Django has its own, built-in.

To use Django's ORM by itself:

If you want to use something else:

link|improve this answer
Exactly what I was looking for. Thanks!! – KeyboardInterrupt Jun 1 '09 at 1:06
Simple, accurate, and straight to the point. Maybe add two lines on what's an ORM, for the heck of completeness? :) – NicDumZ Jun 1 '09 at 1:39
Sure, why not? Done. :) – Sasha Chedygov Jun 1 '09 at 1:41
feedback

Popular stand-alone ORMs for Python:

They all support MySQL and PostgreSQL (among others).

link|improve this answer
1  
+1: SQLAlchemy -- not quite as sexy as Django ORM, but easier to tie to an existing SQL database. – S.Lott Jun 1 '09 at 1:54
+1 on SQLAlchemy also. I don't see the point in using it in Django, due to the fine integration of its own ORM with its other parts. But SQLAlchemy specializes in exactly what you're looking for, and does that one thing extremely well. – ShawnMilo Jun 1 '09 at 2:45
feedback

I especially like SQLAlchemy with following tools:

They really remind me of ActiveRecord.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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