How can I register kedro data catalog programmatically in Kedro 0.18?
For various reasons (mainly ability to dynamically construct file paths) I like to define the data catalog programatically, and not use yaml file to define datasets e.g.
DataCatalog(
{"products": ParquetDataSet(filepath=f{PREFIX}/products.parquet")
...
})
In kedro 0.17 there
was an easy way to...