module documentation

Undocumented

Class Blueprint Represents a blueprint, a collection of routes and other app-related functions that can be registered on a real application later.
Class BlueprintSetupState Temporary holder object for registering a blueprint with the application. An instance of this class is created by the :meth:`~flask.Blueprint.make_setup_state` method and later passed to all register callback functions.
Type Variable T_after_request Undocumented
Type Variable T_before_first_request Undocumented
Type Variable T_before_request Undocumented
Type Variable T_error_handler Undocumented
Type Variable T_teardown Undocumented
Type Variable T_template_context_processor Undocumented
Type Variable T_template_filter Undocumented
Type Variable T_template_global Undocumented
Type Variable T_template_test Undocumented
Type Variable T_url_defaults Undocumented
Type Variable T_url_value_preprocessor Undocumented
Type Alias DeferredSetupFunction Undocumented
T_after_request = (source)

Undocumented

Value
t.TypeVar('T_after_request',
          bound=ft.AfterRequestCallable)
T_before_first_request = (source)

Undocumented

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

Undocumented

Value
t.TypeVar('T_before_request',
          bound=ft.BeforeRequestCallable)
T_error_handler = (source)

Undocumented

Value
t.TypeVar('T_error_handler',
          bound=ft.ErrorHandlerCallable)
T_teardown = (source)

Undocumented

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

Undocumented

Value
t.TypeVar('T_template_context_processor',
          bound=ft.TemplateContextProcessorCallable)
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)
T_url_defaults = (source)

Undocumented

Value
t.TypeVar('T_url_defaults',
          bound=ft.URLDefaultCallable)
T_url_value_preprocessor = (source)

Undocumented

Value
t.TypeVar('T_url_value_preprocessor',
          bound=ft.URLValuePreprocessorCallable)
DeferredSetupFunction = (source)

Undocumented

Value
t.Callable[['BlueprintSetupState'], t.Callable]