odapi/database/__init__.py

10 lines
346 B
Python
Raw Permalink Normal View History

from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
2020-07-03 02:03:02 +02:00
from sqlalchemy.orm import sessionmaker
from constants import TESTING_DB as DB
engine = create_engine(DB, connect_args={"check_same_thread": False})
2020-07-03 02:03:02 +02:00
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()