<@!842787984902062080> I have just used the code ...
# beginners-need-help
d
@User I have just used the code available on Kedro Lifecycle management from the docs It can be found here : https://kedro.readthedocs.io/en/stable/04_kedro_project_setup/03_session.html?highlight=load_context#create-a-session
Copy code
from kedro.framework.session import KedroSession
from kedro.framework.startup import bootstrap_project
from pathlib import Path

metadata = bootstrap_project(Path.cwd())
with KedroSession.create(metadata.package_name) as session:
    context = session.load_context()