This is still valid, by default when you create a ...
# beginners-need-help
n
This is still valid, by default when you create a new kedro project, let's say the project is called
demo
, then you will have
demo/__init__.py
,
demo/pipelines/__init__.py
, this is why you can import from there. If you want to factor out some code into a separate module. You will create a new folder and file like
demo/common/__init__.py
etc.