Django-like database APIs for projects other than Django

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.

+5
source share
3 answers

What you are looking for is an Object Relational Mapper (ORM). Django has its own built-in interface.

To use Django ORM yourself:

- :

+17

ORM Python:

MySQL PostgreSQL ( ).

+7

I especially like SQLAlchemy with the following tools:

They really remind me of ActiveRecord .

+2
source

All Articles