You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
487 B
18 lines
487 B
from sqlalchemy import create_engine |
|
from sqlalchemy.orm import declarative_base, sessionmaker |
|
|
|
from app.config import DATABASE_URL |
|
|
|
connect_args = {"check_same_thread": False} if DATABASE_URL.startswith("sqlite") else {} |
|
|
|
engine = create_engine(DATABASE_URL, connect_args=connect_args) |
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) |
|
Base = declarative_base() |
|
|
|
|
|
def get_db(): |
|
db = SessionLocal() |
|
try: |
|
yield db |
|
finally: |
|
db.close()
|
|
|