how do kedro catalog properties get passed to Datasets when pipeline is executed
I'm trying to create two custom kedro DataSets and I'm not quite sure how to configure the init methods.
The first DataSet is simple, its a readonly, fetch rss items from a static URL.
catalog entry:
rss_feed_extract:
type: kedro_workbench.extras.datasets.RSSDataSet.RSSFeedExtract
url: https://api.msrc.microsoft.com/update-guide/rss
class definition
class RSSFeedExtract(AbstractDataSet):
def __init__(self, url: str):
self._url = url Dict[str, Any]:
raw_rss_feed =...