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 ?
Asked
Active
Viewed 6,181 times
2 Answers
9
I’m the author of pydapper https://pydapper.readthedocs.io/en/latest/. It’s a pure python lib inspired by dapper!

Zach Schumacher
- 91
- 1
- 1
-
1Nice, truly like dapper. Unlike other suggested micro orms – cikatomo May 30 '22 at 22:01
7
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.

Tim
- 2,510
- 1
- 22
- 26
-
2SQLAlchemy does Micro ORM? I couldn't find Micro ORM document on SQLAlchemy website. – codeBarer Jul 12 '19 at 02:15
-
1SQL Alchemy includes an ORM. It is more of a toolkit for databases. If you want "micro" Pony is probably your best option – Tim Jul 12 '19 at 02:24