class documentation

class AppContext: (source)

View In Hierarchy

The app context contains application-specific information. An app context is created and pushed at the beginning of each request if one is not already active. An app context is also pushed when running CLI commands.

Method __enter__ Undocumented
Method __exit__ Undocumented
Method __init__ Undocumented
Method pop Pops the app context.
Method push Binds the app context to the current context.
Instance Variable app Undocumented
Instance Variable g Undocumented
Instance Variable url_adapter Undocumented
Instance Variable _cv_tokens Undocumented
def __enter__(self) -> AppContext: (source)

Undocumented

def __exit__(self, exc_type: t.Optional[type], exc_value: t.Optional[BaseException], tb: t.Optional[TracebackType]): (source)

Undocumented

def __init__(self, app: Flask): (source)

Undocumented

Pops the app context.

def push(self): (source)

Binds the app context to the current context.

Undocumented

url_adapter = (source)

Undocumented

Undocumented