Hello.
I have a number of workflows that require parameters to be passed to them. I do not want to pass them through user input, but, through a text file (like a configuration .ini file). The content would be similar to what you can see below.
The parameters in the file are to be recombined to locate the files in a directory structure (eg. c:\20220100\CERT 02 GAM.xlsx) and also serve as input parameters when selecting data (eg reporting_period=20200100).
[general]
reporting_year = 2022
reporting_month = 01
reporting_version = 00
[files]
certification = CERT 02 GAM.xlsx
gcap_taxearn = gcap_taxearn_01.xls
gcap_90202 = gcap_90202_01a.xls
gcap_taxbalsht = gcap_taxbalsht_01.xls
I am reading the file as a "=" delimited text file, and I end up with these key value pairs.

Now, how can I connect these key combinations to update input tools, filter tools etc?
Maybe this approach feels somewhat awkward, but, this exercise is part of a migration from python to alteryx, where I want to be able to continue to use the python tool chain (which makes use of the configuration files) whilst certain aspects are converted to alteryx. Also, I would like to control the workflow outside of alteryx, not from within.
Many thanks in advance for any insights you can share.
Francis