didier/database/engine.py

25 lines
698 B
Python
Raw Normal View History

from urllib.parse import quote_plus
from sqlalchemy.engine import URL
2022-07-11 22:23:38 +02:00
from sqlalchemy.ext.asyncio import AsyncSession, create_async_engine
from sqlalchemy.orm import sessionmaker
import settings
2022-07-25 19:07:57 +02:00
encoded_password = quote_plus(settings.POSTGRES_PASS)
2022-07-19 18:49:22 +02:00
2022-06-29 00:14:44 +02:00
engine = create_async_engine(
2022-07-19 18:57:24 +02:00
URL.create(
drivername="postgresql+asyncpg",
2022-07-25 19:07:57 +02:00
username=settings.POSTGRES_USER,
2022-07-19 18:57:24 +02:00
password=encoded_password,
2022-07-25 19:07:57 +02:00
host=settings.POSTGRES_HOST,
port=settings.POSTGRES_PORT,
database=settings.POSTGRES_DB,
2022-07-19 18:57:24 +02:00
),
2022-06-29 00:14:44 +02:00
pool_pre_ping=True,
2022-06-30 15:20:54 +02:00
future=True,
2022-06-29 00:14:44 +02:00
)
DBSession = sessionmaker(autocommit=False, autoflush=False, bind=engine, class_=AsyncSession, expire_on_commit=False)