Is there any Dapper like micro ORM for Python?

7.4k views Asked by At

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 ?

2

There are 2 answers

2
Tim On

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.

3
Zach Schumacher On

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