mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
11 lines
269 B
Python
11 lines
269 B
Python
|
from sqlalchemy import create_engine
|
||
|
from sqlalchemy.orm import scoped_session
|
||
|
from sqlalchemy.orm import sessionmaker
|
||
|
|
||
|
from app.config import DB_URI
|
||
|
|
||
|
engine = create_engine(DB_URI)
|
||
|
connection = engine.connect()
|
||
|
|
||
|
Session = scoped_session(sessionmaker(bind=connection))
|