summaryrefslogtreecommitdiff
path: root/databases/py-ormar/pkg-descr
blob: fa3e4bd7e82abfa16d40a901cc20d1e3d5e16545 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
The ormar package is an async mini ORM for Python, with support for Postgres,
MySQL, and SQLite.

The main benefit of using ormar are:
* getting an async ORM that can be used with async frameworks (fastapi,
  starlette etc.)
* getting just one model to maintain - you don't have to maintain pydantic and
  other orm model (sqlalchemy, peewee, gino etc.)

The goal was to create a simple ORM that can be used directly (as request and
response models) with fastapi that bases it's data validation on pydantic.