class documentation

class ScriptInfo:

View In Hierarchy

Helper object to deal with Flask applications. This is usually not necessary to interface with as it's used internally in the dispatching to click. In future versions of Flask this object will most likely play a bigger role. Typically it's created automatically by the FlaskGroup but you can also manually create it and pass it onwards as click object.
Method load​_app Loads the Flask app (if not yet loaded) and returns it. Calling this multiple times will just result in the already loaded app to be returned.
Instance Variable app​_import​_path Undocumented
Instance Variable create​_app Undocumented
Instance Variable data Undocumented
Method __init__ Undocumented
Instance Variable ​_loaded​_app Undocumented
Instance Variable set​_debug​_flag Undocumented
def load_app(self):
Loads the Flask app (if not yet loaded) and returns it. Calling this multiple times will just result in the already loaded app to be returned.
app_import_path =

Undocumented

create_app =

Undocumented

data: dict =

Undocumented

def __init__(self, app_import_path=None, create_app=None, set_debug_flag=True):

Undocumented

_loaded_app =

Undocumented

set_debug_flag =

Undocumented