I'm working on Power BI requests with Python scripting.
I'm able to get the dataset through dataset
global variable, but now I'd like to be able to get the passed parameters directly in my Python script.
I tried to "print" (we cannot really print directly in PowerBI so I use raise Exception(WhatIWantToDebug)
in order to see my error directly in PowerBI) the globals()
, which show all the globals variables declared accessible in the context of the Python script, but I'm not able to find anything concerning parameters. I'm able to see dataset though.
Thanks in advance for your solutions ideas