18 lines
486 B
Python
18 lines
486 B
Python
|
|
||
|
from sqlalchemy import create_engine
|
||
|
from sqlalchemy.ext.declarative import declarative_base
|
||
|
from sqlalchemy.orm import sessionmaker
|
||
|
|
||
|
SQLALCHEMY_DATABASE_URL = "postgresql://eldsoft:eld240510@172.31.7.121:8088/allscore"
|
||
|
engine = create_engine(SQLALCHEMY_DATABASE_URL)
|
||
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
||
|
|
||
|
Base = declarative_base()
|
||
|
|
||
|
def get_db():
|
||
|
db = None
|
||
|
try:
|
||
|
db = SessionLocal()
|
||
|
yield db
|
||
|
finally:
|
||
|
db.close()
|