Kedro register dataset from a board from pins package
For my project I want to use a combination of kedro for the pipeline orchestration and pins for data and model versioning. I have some data which I stored on a board from the pins package.
As I have multiple versions,
https://i.stack.imgur.com/ImXYi.png▾
I am not sure how to specify the catalog.yml file. In a simple Python script I would simply write:
import pins
board = pins.board_folder("/path/to/my/folder/")
board.pin_read("df_all")
and would...