1 2 3 4 5 6 7 8 9
from database import SessionLocal def get_db(): db = SessionLocal() try: yield db finally: db.close()