kiwi-vpn/api/kiwi_vpn_api/db/connection.py

22 lines
567 B
Python
Raw Normal View History

2022-03-17 17:06:00 +00:00
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker
SQLALCHEMY_DATABASE_URL = "sqlite:///./tmp/vpn.db"
# SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
engine = create_engine(
SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
ORMBaseModel = declarative_base()
def get_db():
db = SessionLocal()
try:
yield db
finally:
db.close()