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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
SriThiru
Helper I
Helper I

Power BI embed in Jupyter notebook methods from report class won't work inside interact callback

Hi experts,

 

I'm facing a weird behaviour in powerbiclient embeded in Jupyter notebook.

Have embedded the report using the following code

from powerbiclient.authentication import MasterUserAuthentication
from powerbiclient import Report,models
#authenticate
auth_token = MasterUserAuthentication(username="xxx@yyyy.com", password="xxxx")
#embed the report

global report
report = Report(group_id="xxxxxxxx", report_id="xxxxxxxx", auth=auth_token)
report

Embedding works fine

After this I want to perform some programatic extract from the embedded report like below 

page_list = ['ReportSectiond8ab5d035cceb8586528','ReportSection1dea67c2520bce38f54f','ReportSection4b3fbaa7dd7908d906d9']
def print_visuals(ReportPage):
    print(report.visuals_on_page(ReportPage))

interact(print_visuals, ReportPage=page_list)

This would work for the first time, meaning the above code will display a dropdown, if i select a page name from the dropdown it will print the visuals of that page. But second time if I change the value in the dropdown it won't work. It won't throw any error messages. But after this behaviour, no code will run in the jupyter nook page, I have to restart the kernal.

I tried the same thing using observe event on the dropdown widget, but the same behaviour.

If I do some other operation inside the interact/observe callback function other than invoking methods from powerbiclient's report class, it will perfectly work.

Please help.

2 REPLIES 2
Anonymous
Not applicable

Hi @SriThiru ,

According to your description, it seems that it does not work properly when switching report pages. Please refer to the content in the link below and try to change the way to get the report page. See later if you can make it work properly.

Get the list of the report's pages

Embed Power BI in Jupyter Notebooks

# Get the list of pages from embedded report
pages = report.get_pages()

Best Regards

@Anonymous My problem is not about getting pages from an embedded report. The problem is any methods for example report.get_pages() won't work inside the ipywidgets's dropdown change event. 

 

from ipywidgets import interact
def dropdown_onchange(SomeOption):
    print(SomeOption)
    print(report.get_pages())
interact(dropdown_onchange,SomeOption=['one','two','three'])

 

Can you please help to solve this issue

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.