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
|
Source: python-databases
Section: python
Priority: optional
Maintainer: Piotr Ożarowski <piotr@debian.org>
Uploaders: Debian Python Team <team+python@tracker.debian.org>
Build-Depends: debhelper-compat (= 13), dh-python, python3-all, python3-setuptools,
# black <!nocheck>,
# python3-aiomysql <!nocheck>,
# python3-aiopg <!nocheck>,
python3-aiosqlite <!nocheck>,
# python3-asyncpg <!nocheck>,
python3-isort <!nocheck>,
# python3-mypy <!nocheck>,
# python3-pymysql <!nocheck>,
python3-pytest <!nocheck>,
python3-pytest-cov <!nocheck>,
python3-requests <!nocheck>,
python3-sqlalchemy (>= 2.0.7) <!nocheck>,
# python3-starlette <!nocheck>,
Standards-Version: 4.6.1
Homepage: https://github.com/encode/databases
Vcs-Git: https://salsa.debian.org/python-team/packages/python-databases.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-databases
Package: python3-databases
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends},
python3-sqlalchemy (>= 2.0.7),
Recommends: ${python3:Recommends}
Suggests: ${python3:Suggests},
python3-asyncpg | python3-aiopg,
python3-aiomysql,
python3-aiosqlite,
python3-click,
# for synchronous SQLAlchemy functions such as engine.create_all:
python3-psycopg2,
python3-pymysql
Description: async database support for Python's asyncio
Databases gives you simple asyncio support for a range of databases.
.
It allows you to make queries using the powerful SQLAlchemy Core
expression language, and provides support for PostgreSQL, MySQL and SQLite.
.
Databases is suitable for integrating against any async Web framework, such as
Starlette, Sanic, Responder, Quart, aiohttp, Tornado, FastAPI or Bocadillo.
|