Using Kedro In Scripts
With the latest releases of kedro 0.17.x, it is now possible to run kedro
pipelines from within scripts. While I would not start a project with this
technique, it will be a good tool to keep in my back pocket when I want to
sprinkle in a bit of kedro goodness in existing projects.
New to Kedro # [1]
What is Kedro [2]
If your just learning about kedro check out this post walking through it
No More Rabbit Hole of Errors # [3]
as of 0.17.2
I’ve tried to do this in kedro 0.16.x, and it turned into a rabbit hole of
errors. First kedro needed a conf directory, if you tried to fake one in it
would then ask for logging setup. These errors just kept coming to the point
it wasnt worth doing and I might as well use a proper template for real
projects and stick to simple function calls for things that are not a kedro
project.
Kedro in a script # [4]
To get kedro running, you will need a pipeline, catalog, and
runner at a minimum. Those who have used kedro before the pipeline will
look v...