Writing your first kedro Nodes
https://youtu.be/-gEwU-MrPuA Before we jump in with anything crazy, let’s make some nodes with some vanilla data structures. import node # You will need to import node from kedro.pipeline to start creating nodes. func # The is a callable that will take the and create the. inputs / outputs # Inputs and outputs can be None, a single catalog entry as a string, mutiple catalog entries as a List of strings, or a dictionary of strings where the key is the keyword argument of the func and the value is the catalog entry to use for that keyword. our first node # Sometimes in our pipelines our data is coming from an api where we already have python functions built to pull with. Thats ok, kedro supposrts that with. second node # Now we have some data to work from, lets use that as our input. Multiple Inputs # Kedro can take lists or dicts as either input or output when your function needs more than one input or output. Links # all of my kedro articles kedro playlist on YouTube node docs first_nod…