kedro.framework.hooks.specs.KedroContextSpecs

class kedro.framework.hooks.specs.KedroContextSpecs[source]

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

Methods

after_context_created(context)

Hooks to be invoked after a KedroContext is created.

after_context_created(context)[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 (KedroContext) – The context that was created.

Return type:

None