5

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 ?

CodeFu
  • 145
  • 1
  • 14

2 Answers2

9

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

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
  • 2
    SQLAlchemy does Micro ORM? I couldn't find Micro ORM document on SQLAlchemy website. – codeBarer Jul 12 '19 at 02:15
  • 1
    SQL 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