Hello
I've been working a bit with kedro and installed it on python 3.9, I have had no problems so far. When loading in custom datasets there is a warning :
DeprecationWarning: The transformer API will be deprecated
in Kedro 0.18.0.Please use Dataset Hooks to customise the
load and save methods.
I want to make my code future proof so I was looking in to creating hooks for my custom datasets. I looked at
https://kedro.readthedocs.io/en/stable/07_extend_kedro/02_hooks.html#use-hooks-to-customise-the-dataset-load-and-save-methods
but it was not clear to me how this can overwrite the save and load method of multiple custom datasets. How would you implement a hook based on a specific datatype?