1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
Source: ormar
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Edward Betts <edward@4angle.com>,
Section: python
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
pybuild-plugin-pyproject,
python3-all,
python3-setuptools,
Build-Depends-Indep:
faker <!nocheck>,
python3-aiomysql <!nocheck>,
python3-aiosqlite <!nocheck>,
python3-anyio <!nocheck>,
python3-asgi-lifespan <!nocheck>,
python3-asyncpg <!nocheck>,
python3-cryptography <!nocheck>,
python3-databases <!nocheck>,
python3-fastapi <!nocheck>,
python3-httpx <!nocheck>,
python3-poetry-core,
python3-pydantic <!nocheck>,
python3-pydantic-extra-types <!nocheck>,
python3-pytest <!nocheck>,
python3-pytest-asyncio <!nocheck>,
python3-pytest-tornasync <!nocheck>,
python3-requests <!nocheck>,
Standards-Version: 4.7.3
Homepage: https://github.com/collerek/ormar
Vcs-Browser: https://salsa.debian.org/python-team/packages/ormar
Vcs-Git: https://salsa.debian.org/python-team/packages/ormar.git
Testsuite: autopkgtest-pkg-pybuild
Package: python3-ormar
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Description: async ORM with fastapi in mind and pydantic validation
An async mini ORM for Python, with support for Postgres, MySQL, and SQLite.
.
The main benefits 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 models (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.
|