Marshall Krassenstein
07/29/2024, 7:28 PMpyproject.toml
there is an entry example_pipeline
which can be True or False. It looks like it is populated by me running kedro new
and answering yes or no to including an example. I'm confused why this is then written into pyproject.toml
. Does example_pipeline
do anything? What happens if I leave the example and change it to False?Ravi Kumar Pilla
07/29/2024, 7:47 PMkedro new --name=spaceflights --tools=viz --example=y
it adds a table [tool.kedro] with example_pipeline
as True. This will help others in the team to use the toml file for tool (kedro) configuration. More about tool configuration here . Example pipeline is for you to get started. Thank youMarshall Krassenstein
07/29/2024, 8:08 PMtools.kedro
will exist regardless of if you use the sample pipeline or not. it just has one case where example_pipeline="True"
and the other where it is false. I'm asking if kedro uses the value of example_pipeline
anywhere in the project after it is created. It seems like it does notRavi Kumar Pilla
07/29/2024, 8:15 PMAnkita Katiyar
07/29/2024, 8:20 PM