flask run create_app code example
Example 1: flask how to run app
$ export FLASK_APP=hello.py
$ python -m flask run
* Running on http://127.0.0.1:5000/
Example 2: python and flask create_app
>>> from yourapp import create_app
>>> app = create_app()
>>> app.app_context().push()