Flavien
10/04/2024, 1:27 PMruntime
parameters can not be used with kedro ipython
and jupyter
because there is no run per se?Nok Lam Chan
10/04/2024, 1:39 PMkedro ipython
call %reload_kedro
by default, but it also takes argument. You can see that with ??%reload_kedro
that it takes a --params
argument that works in the same way.Flavien
10/04/2024, 1:56 PMdata:
type: pandas.SQLQueryDataset
sql: ...
load_args:
params:
start: ${runtime_params:start}
end: ${runtime_params:end}
I put
%reload_kedro --params start="2020-01-01T00:00:00+00:00",end=2020-02-01T00:00:00+00:00
on top of the notebook, correct (it works, I am just checking that it's the right move)?Nok Lam Chan
10/04/2024, 3:52 PMNok Lam Chan
10/04/2024, 3:52 PM