Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
gzimmer
Frequent Visitor

Can I run external Python scripts in Power BI desktop?

I'm really enjoying integrating Python scripts into my queries, but I'm starting to run into an issue. I want to use input parameters for my python scripts, and it seems the only way to do this also breaks the built in Python editor and makes reading the M Code very ugly. 

 

 

    Source = Python.Execute("from urllib.parse import unquote#(lf)import re#(lf)import io#(lf)#(lf)input_url = """&SafeLinkURL&"""#(lf)table = """"""url;#(lf)""""""+input_url+""""""#(lf)""""""#(lf)df = pandas.read_csv(io.StringIO(table))#(lf)print(df)#(lf)"),

 

 

 It seems to me that a good solution would be to externalize the python script better...
Is there a way to run local external python scripts via the Python.Execute function that can be easily maintained?

2 ACCEPTED SOLUTIONS
lbendlin
Super User
Super User

This is a good suggestion - you may want to raise it as an idea.  

The problem (as I see it) is the interpretative implementation chosen by the Power BI (Power Query) developers (basically Expression.Evaluate() ).  You can abuse the extra parameter in the Python call to hand over the dataset source but it's still clunky.  The same approach is present on the Power BI visual side, by the way, even more restrictive.

View solution in original post

So while this didn't directly answer my question, you gave me a few search terms that lead me to this page:

https://blog.crossjoin.co.uk/2014/02/04/loading-power-query-m-code-from-text-files/

Where I was able to do a similar technique to import a local python file as a string var:

let
    PythonFile = Text.FromBinary(File.Contents("C:\test.py")),
    Source = Python.Execute(PythonFile)
in
    Source

Now, how can I put an input variable in the python script without breaking the string importing? Might have to split the python code into two files and build the imported python string in the M Code before running it as a complete block.

View solution in original post

4 REPLIES 4
lbendlin
Super User
Super User

This is a good suggestion - you may want to raise it as an idea.  

The problem (as I see it) is the interpretative implementation chosen by the Power BI (Power Query) developers (basically Expression.Evaluate() ).  You can abuse the extra parameter in the Python call to hand over the dataset source but it's still clunky.  The same approach is present on the Power BI visual side, by the way, even more restrictive.

So while this didn't directly answer my question, you gave me a few search terms that lead me to this page:

https://blog.crossjoin.co.uk/2014/02/04/loading-power-query-m-code-from-text-files/

Where I was able to do a similar technique to import a local python file as a string var:

let
    PythonFile = Text.FromBinary(File.Contents("C:\test.py")),
    Source = Python.Execute(PythonFile)
in
    Source

Now, how can I put an input variable in the python script without breaking the string importing? Might have to split the python code into two files and build the imported python string in the M Code before running it as a complete block.

Yes, it's basically back to square one.  What you could do is create your own language convention that somehow identifies your variables in your python code, and then does some text manipulation to split your python string in the right places and slices in the variable names as expected by Power Query...

This actually turned out to be WAY easier than I expected!

So in my python script I tried to escape the string by naming it like:

input_var = "&PowerBIvar&"

But what did work very nicely was following that up with this in the M Code:

PythonFile = Text.FromBinary(File.Contents("C:\test.py")),
PythonString = Text.Replace(PythonFile,"&PowerBIvar&",PowerBIvar),
Output = Python.Execute(PythonString)

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.