Hi all! I'm running kedro ipython and I would like...
# questions
f
Hi all! I'm running kedro ipython and I would like to extract the namespace from the pipeline that I am running - is this doable? If so, what would be the fastest/simplest way to do so?
h
hi @Farouk Asubiaro it should be doable but since a node function doesn't know about kedro nodes, pipeline, etc. We suggest using hooks. You can learn more about them here, it should give you a Node object has the
namespace
attribute
f
Great, thank you! I'll ask again if I have any questions once I get around to implementing