EntityFramework for Python

entity-framework, python

Solution

It is called "ORM". SQLAlchemy is often used as a general purpose ORM for Python but there is a lot of other solutions, see for example here.

Problem

What is that standard replacement of .Net's EntityFramework for Python? Note: I mean CPython, not IronPython.

Original source