class documentation

class KedroContextSpecs: (source)

View In Hierarchy

Namespace that defines all specifications for a Kedro context's lifecycle hooks.

Method after_context_created Hooks to be invoked after a KedroContext is created. This is the earliest hook triggered within a Kedro run. The KedroContext stores useful information such as credentials, config_loader and env.
@hook_spec
def after_context_created(self, context: KedroContext): (source)

Hooks to be invoked after a KedroContext is created. This is the earliest hook triggered within a Kedro run. The KedroContext stores useful information such as credentials, config_loader and env.

Parameters
context:KedroContextThe context that was created.