16 lines
390 B
Python
16 lines
390 B
Python
|
from sqlmodel import create_engine, Session, SQLModel
|
||
|
|
||
|
sqlite_file_name = "database.db"
|
||
|
sqlite_url = f"sqlite:///{sqlite_file_name}"
|
||
|
connect_args = {"check_same_thread": False}
|
||
|
engine = create_engine(sqlite_url, connect_args=connect_args)
|
||
|
|
||
|
|
||
|
def create_db_and_tables():
|
||
|
SQLModel.metadata.create_all(engine)
|
||
|
|
||
|
|
||
|
def get_session():
|
||
|
with Session(engine) as session:
|
||
|
yield session
|