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.
|
3
|
|
|
|
|
|
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: |
||||||||
|
|
|
I especially like SQLAlchemy with following tools: They really remind me of ActiveRecord. |
||
|
|
|
|
Popular stand-alone ORMs for Python: They all support MySQL and PostgreSQL (among others). |
||||||
|
