Hi is there an easy way to return the resolved fil...
# questions
c
Hi is there an easy way to return the resolved filepath for the inputs / outputs of a pipeline? I.e.: for pipeline "pipeline_1", I'd like to print in Jupyter: -input_1 : C/data/path_to_my_file/file_1.xlsx -input_2 : C/data/path_to_my_file/file_2.xlsx
l
Not entirely sure what you want to accomplish here, could you add some more detail?
c
I'm preparing a Jupyter Notebook for the clients' user testers. I want them to know what input files they should be changing in order to do their manual tests (so that they can confirm that the model logic works) I'm now able to print the list of inputs that go into the pipeline they are testing, but I'd also like to print for them the resolved file_path for each of this files
Something like: "shuttles_database": "C:/01_raw/xxx/xxx/shuttles_database.xlsx"
Basically if I can get a dictionary of the catalog after it's resolved {input_name: file_path} I'm good (i'll just loop through the list of input file names I have)
Maybe I could create an
after_catalog_created
Hook that saves the resolved catalog as a dictionary?