Skip to content

Instantly share code, notes, and snippets.

View pbanaszkiewicz's full-sized avatar

Piotr Banaszkiewicz pbanaszkiewicz

View GitHub Profile
def get_db():
ctx = _app_ctx_stack.top
con = getattr(ctx, "sa_database", None)
if con is None:
con = SQLAlchemy(ctx.app)
ctx.sa_database = con
return con