mirror of
https://github.com/RYGhub/royalnet.git
synced 2025-04-02 21:30:31 +00:00
* Una possibile idea che sto per eliminare * Woah, this is progress * Well, this works * im lost * OMFG IT WORKS
21 lines
500 B
Python
21 lines
500 B
Python
import flask as f
|
|
from werkzeug.local import LocalProxy
|
|
|
|
|
|
alchemy = f.current_app.config["ALCHEMY"]
|
|
|
|
|
|
def get_alchemy_session():
|
|
if "alchemy_session" not in f.g:
|
|
f.g.alchemy_session = alchemy.Session()
|
|
return f.g.alchemy_session
|
|
|
|
|
|
@f.current_app.teardown_appcontext
|
|
def teardown_alchemy_session(*_, **__):
|
|
_alchemy_session = f.g.pop("alchemy_session", None)
|
|
if _alchemy_session is not None:
|
|
_alchemy_session.close()
|
|
|
|
|
|
alchemy_session = LocalProxy(get_alchemy_session)
|