dash-stack/test_app.py
2016-07-09 23:01:27 +03:00

6 lines
155 B
Python

from flask import current_app
app = Flask(__name__)
with app.app_context():
# within this block, current_app points to app.
print current_app.name