module documentation

This module provides a set of helper functions being used across different components of kedro package.

Function load_obj Extract an object from a given path.
def load_obj(obj_path: str, default_obj_path: str = '') -> Any: (source)

Extract an object from a given path.

Parameters
obj_path:strPath to an object to be extracted, including the object name.
default_obj_path:strDefault object path.
Returns
AnyExtracted object.
Raises
AttributeErrorWhen the object does not have the given named attribute.