Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any Dapper like micro ORM for Python?

I know there are multiple ORMs for python, but I like the idea of Dapper - a simple object mapper. I googled but can't find any Dapper like ORM for python. Is there any existing dapper like micro-ORM for python ?

like image 298
CodeFu Avatar asked Jun 09 '26 23:06

CodeFu


2 Answers

I’m the author of pydapper https://pydapper.readthedocs.io/en/latest/. It’s a pure python lib inspired by dapper!

like image 78
Zach Schumacher Avatar answered Jun 12 '26 22:06

Zach Schumacher


There is PonyORM that is a simple lightweight ORM that is similar to Dapper but oriented towards Python.

Other options are PeeWee ORM or the granddaddy SQLAlchemy.

like image 43
Tim Avatar answered Jun 12 '26 22:06

Tim