1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-04-02 21:30:31 +00:00
royalnet/royalnet/web/alchemyhandler.py
Stefano Pigozzi a512da0058 Web is working ()
* Una possibile idea che sto per eliminare

* Woah, this is progress

* Well, this works

* im lost

* OMFG IT WORKS
2019-06-01 21:09:21 +02:00

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)