https://kedro.readthedocs.io/en/stable/tutorial/sp...
# advanced-need-help
n
https://kedro.readthedocs.io/en/stable/tutorial/spaceflights_tutorial.html Hi @eleonora.picca, I would suggest following the tutorial is the best way to understand how individual components fit together. You only interact with
session
in interactive mode (Jupyter/Ipython), the most common way to interact with kedro is via the CLI,
kedro run
which execute the pipeline. Under the hood, it will create all necessary components like
session
,
context
,
catalog
for you. To start a new kedro project, you would do
kedro new
. You can do
kedro new --starter=spaceflights
which will create a template project for you with more advance kedro features. Then you can run a pipeline via
kedro run
. The tutorial above will guide you step by step how to creating these project in practice.