Hi folks, I would like to pass the current date to...
# questions
j
Hi folks, I would like to pass the current date to my kedro pipelines at multiple steps. What is the best way to do this?
h
Someone will reply to you shortly. In the meantime, this might help:
r
Hi @Jannik Wiedenhaupt, You can make use of parameters defined in your configuration + a custom resolver or pass the parameter at run time Thank you
👍 1
m
Create a node that generates a date and pass it as inputs to all other nodes 🙂
Optionally, I would consider writing a hook, but adding a node is simpler
m
j
Thank you guys! The custom resolver looks intuitive!