There is a good news from Microsoft Power BI. Now you can use Power BI in Jupyter Notebook. You can get your Power BI analytics in a Jupyter notebook with the new powerbiclient Python package. Now you can embed Power BI reports, dashboards, dashboard tiles, etc., in Jupyter notebooks easily. You’ll be able to export data from visuals in a Power BI report to the Jupyter notebook for in-depth data exploration. You can also filter the report for quick analysis or use bookmarks to apply a saved view. You can install the Power BI Client for Jupyter from PyPI and find the open-sourced Python package and associate TypeScript widget on GitHub . Install the package using pip: pip install powerbiclient Open your notebook and add the following: Import Report class and models from the package : from powerbiclient import Report, models Authenticate against Power BI using Azure AD : # Import the DeviceCodeLoginAuthentication class to authenticate against Power BI from powerbiclient.authen...