简体   繁体   English

使用 Python 将 Power BI 报告导出到 Azure 数据湖

[英]Export Power BI report to Azure Data Lake using Python

Looking forward to export PBIX\Power BI reports from Power BI workspace to Azure Data Lake, I have come across below cmdlet in PowerShell that allows us to do the same, however do we have an equivalent library or a function in Python that can do so? Looking forward to export PBIX\Power BI reports from Power BI workspace to Azure Data Lake, I have come across below cmdlet in PowerShell that allows us to do the same, however do we have an equivalent library or a function in Python that can do so ?

Export-PowerBIReport
      [-WorkspaceId <Guid>]
      -Id <Guid>
      -OutFile <String>
      [<CommonParameters>]

There's not an official Python SDK for this, but it's all based on the REST APIs that you can hit from any language or platfom.没有官方的 Python SDK 用于此,但它全部基于 REST API,您可以从任何语言或平台访问。

The API is Reports - Export To File In Group API 是报告 - 导出到组中的文件

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Azure 数据湖 - 使用 Python 读取 - Azure data lake - read using Python 如何使用 python 脚本自动将数据集导出到 Power BI 文件 - How to Automate export dataset to Power BI file using python script 如何使用 python 对 azure-data-lake 中的文件应用 elasticsearch? - how to apply elasticsearch using python on files in azure-data-lake? 能否将 Power BI 报表服务器报表的结果用作 C#、Python 或 PowerShell 程序中的数据源? - Can you use the results of a Power BI Report Server report as a data source in a C#, Python or PowerShell program? Azure function 绑定 Azure 数据湖(python) - Azure function binding for Azure data lake (python) 使用 Python 在 Power BI 中过滤 Python Script Visual 中的数据 - Filter the data in Python Script Visual in power BI using Python 使用 Python 将 API 中的响应数据转换为 Power BI 中的表 - Converting response data from API into table in Power BI using Python Power BI:如何使用 Python 处理/清理字符串数据? - Power BI: How to process/clean string data using Python? 将 pandas 数据帧导出到 Azure 数据湖存储作为 CSV 文件? - Export pandas data frame to Azure Data Lake Storage as a CSV file? Azure 数据湖 + Python:身份验证失败 - Azure Data Lake + Python: Auth failure
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM