Hi Kedro team! Is there any way to extract variabl...
# questions
f
Hi Kedro team! Is there any way to extract variables/entries from the globals.yml file in kedro ipython (In a similar way that we do it from the catalog)?
d
good question
they’re not really available unless they’re injected into a parameter which uses them, so I think you’d need to refer to it in the environment you care about it for them to be seen
you can (I’m not sure if you should) just read the YAML file so it’s available in your ipython session
a
I think
context.config_loader["globals"]
if you just want to see what’s what
f
That works, thank you both!!