I like the abstract database API that comes with Django, I was wondering if I can use this (or something similar) to model, access and manage my (postgres) database for my projects other than Django Python.
What you are looking for is an Object Relational Mapper (ORM). Django has its own built-in interface.
To use Django ORM yourself:
- :
ORM Python:
MySQL PostgreSQL ( ).
I especially like SQLAlchemy with the following tools:
They really remind me of ActiveRecord .