module documentation

Undocumented

Class Flask The flask object implements a WSGI application and acts as the central object. It is passed the name of the module or package of the application. Once it is created it will act as a central registry for the view functions, the URL rules, template configuration and much more.
Type Variable T_before_first_request Undocumented
Type Variable T_shell_context_processor Undocumented
Type Variable T_teardown Undocumented
Type Variable T_template_filter Undocumented
Type Variable T_template_global Undocumented
Type Variable T_template_test Undocumented
Function _make_timedelta Undocumented
T_before_first_request = (source)

Undocumented

Value
t.TypeVar('T_before_first_request',
          bound=ft.BeforeFirstRequestCallable)
T_shell_context_processor = (source)

Undocumented

Value
t.TypeVar('T_shell_context_processor',
          bound=ft.ShellContextProcessorCallable)
T_teardown = (source)

Undocumented

Value
t.TypeVar('T_teardown',
          bound=ft.TeardownCallable)
T_template_filter = (source)

Undocumented

Value
t.TypeVar('T_template_filter',
          bound=ft.TemplateFilterCallable)
T_template_global = (source)

Undocumented

Value
t.TypeVar('T_template_global',
          bound=ft.TemplateGlobalCallable)
T_template_test = (source)

Undocumented

Value
t.TypeVar('T_template_test',
          bound=ft.TemplateTestCallable)
def _make_timedelta(value: t.Union[timedelta, int, None]) -> t.Optional[timedelta]: (source)

Undocumented