Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EntityFramework for Python [closed]

What is that standard replacement of .Net's EntityFramework for Python?

Note: I mean CPython, not IronPython.

like image 629
Gilad Naaman Avatar asked Mar 22 '13 17:03

Gilad Naaman


1 Answers

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.

like image 98
wRAR Avatar answered Oct 18 '22 11:10

wRAR