Agnaldo Luiz
04/27/2023, 12:04 PM#credentials.yml
win_user: 'user01'
#catalog.yml
data:
type: pandas.ExcelDataSet
filepath: C:\Users\${win_user}\data.xlsx
marrrcin
04/27/2023, 12:23 PM${win_user}
in your case is related to the path, not credentials. If you need to interpolate the path, based on some variable, you can use globals.FlorianGD
04/27/2023, 12:24 PMTemplatedConfigLoader
(or I think a OmegaConfigLoader
) in your settings.py
fileDeepyaman Datta
04/27/2023, 12:28 PMAgnaldo Luiz
04/28/2023, 2:24 AMTemplateConfigLoader
worked, thanks! https://docs.kedro.org/en/stable/kedro.config.TemplatedConfigLoader.htmlglobals.yml
is that each user has a different win_usrmarrrcin
04/28/2023, 7:27 AM