I have a function which takes 2 parameters, I would like to get the values passed into those two parameters as string. However, the function is stored in a separate module from where it's being used and ran.
In module x we have the function:
def meta_filter(table, orientation):
#code code code
In module y, the function is being used like this:
meta_filter(dataframe, left)
I would like to get the objects passed into the meta_filter as string.
'dataframe', 'left'
I am doing this because it will save me from writing a lot of unnecessary code.
Use inspect to get parent frame's locals and then find that variables that point to the same objects:
Output: