Hi fellows, probably a silly question but the `run...
# questions
f
Hi fellows, probably a silly question but the
runtime
parameters can not be used with
kedro ipython
and
jupyter
because there is no run per se?
n
Hi @Flavien,haven't seen you in a while. You are correct there isn't a "runtime" concept in a notebook.
kedro 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.
👋 1
f
I see! So, if in the catalog I have something like
Copy code
data:
  type: pandas.SQLQueryDataset
  sql: ...
  load_args:
    params:
      start: ${runtime_params:start}
      end: ${runtime_params:end}
I put
Copy code
%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)?
n
deleted
Yup, that should work
👍 1