https://kedro.org/ logo
#questions
Title
# questions
s

Sebastian Cardona Lozano

06/28/2023, 9:28 PM
Hi all. Maybe is a naive question, but how can I change the name of my kedro project? I understand that some kedro files use the project name to execute the pipeline. Thanks!
d

datajoely

06/29/2023, 8:12 AM
the pyproject.toml is the bit you need to be sure matches the folder name
d

Deepyaman Datta

06/29/2023, 1:18 PM
There's no "easy" way to just rename, but you can look in https://github.com/kedro-org/kedro/blob/main/kedro/templates/project (or whatever starter you used) to see wherever
{{ cookiecutter.project_name }}
,
{{ cookiecutter.repo_name }}
, or
{{ cookiecutter.python_package }}
was used. Those are the things that Kedro automatically filled in for you.