A package to fetch and save Power BI tables via XMLA endpoint
Project description
download_pbi_xmla
Version: 0.4
Description: A Python package to fetch and save Power BI tables via the XMLA endpoint using DAX queries. The package allows data to be saved in either Parquet or CSV format.
Table of Contents
- Overview
- System Requirements
- Installation
- Setup
- Usage
- Running the Scripts
- Troubleshooting
- Contributing
- License
Overview
The download_pbi_xmla
package is designed to connect to a Power BI XMLA endpoint, execute DAX queries, and save the results in either Parquet or CSV formats. This tool is specifically for use in a Windows environment due to its dependency on .NET
assemblies and the pythonnet
library.
System Requirements
- Operating System: Windows
- Python Version: 3.9 to 3.12
- Required Software: .NET Framework and Power BI Pro or Premium capacity access with XMLA endpoint enabled.
- Authentication: The package currently only supports authentication using the Microsoft Authentication Library (MSAL) to obtain an access token, supporting Multi-Factor Authentication (MFA).
Python Version Compatibility
The download_pbi_xmla
package requires Python version 3.9, 3.10, 3.11, or 3.12.
Important Note:
- The package is not compatible with Python 3.13 or any versions above it due to a dependency on
pythonnet
, which only supports Python versions up to 3.12. - If you are using Python 3.13 or higher, please switch to a compatible Python version (3.9 to 3.12) to install and use this package.
Instructions for Checking and Changing Your Python Version
-
Check Your Python Version:
Run the following command in your terminal or command prompt to check your current Python version:
python --version
Installation
Prerequisites
-
Install Python
Ensure you have Python 3.9 to 3.12 installed. You can download it from python.org. -
Install .NET Framework
Install the required .NET Framework runtime from Microsoft's website. -
Install Poetry (optional)
Poetry is a dependency manager for Python that simplifies package installation and management. Follow the instructions on their website to install it.
Steps to Install the Package
Option 1: Using Poetry
If you have Poetry installed, you can add the package to your environment by running:
poetry add download_pbi_xmla
Option 2: Using pip
Alternatively, you can install the package directly using pip:
pip install download_pbi_xmla
Setup
-
Run the Setup Script
This script copies example configuration files and prompts you to edit them.-
Using Poetry:
poetry run setup-files
-
Using pip:
python -m download_pbi_xmla.setup_files
-
-
Edit the Configuration Files
After running the setup script, two configuration files (.env
andconfig.json
) will be created in your project's root directory. You need to update these files with your credentials and specific configurations.- .env File Example:
Open the newly created.env
file and provide your credentials and other necessary settings:
CLIENT_ID=your-client-id CLIENT_SECRET=your-client-secret TENANT_ID=your-tenant-id CONFIG_FILE=config.json SAVE_PATH=./data
- config.json File Example:
Modify theconfig.json
file to specify the Power BI server, database, DAX queries, and output formats:
{ "server": "your-server-url", "database": "your-database-name", "dax_queries": [ { "query": "Add your DAX query here", "output_file": "Your filename here.parquet", "format": "parquet" }, { "query": "Add your second DAX query here (or delete this section)", "output_file": "Your second filename here.csv", "format": "csv" } ] }
- .env File Example:
Usage
To use the package, you can execute the provided scripts to fetch data from Power BI XMLA endpoints and save it in your desired format.
Fetch and Save Data
You can run the main download script using either Poetry or pip:
-
Using Poetry:
poetry run run-download
-
Using pip:
python -m download_pbi_xmla.run_download
Running the Scripts
1. Fetch Tables Script
This script downloads tables and saves them using the specified configurations:
-
Using Poetry:
poetry run fetch-tables
-
Using pip:
python -m download_pbi_xmla.fetch_tables
2. Setup Environment Script
To set up your environment by creating necessary configuration files:
-
Using Poetry:
poetry run setup-environment
-
Using pip:
python -m download_pbi_xmla.setup_environment
Troubleshooting
Common Issues
-
.NET Assemblies Not Found Ensure you have the correct version of the .NET runtime installed on your machine. The
pythonnet
library only works on Windows systems. -
Invalid Credentials Double-check that your credentials in the
.env
file are correct and that your Azure AD app registration has the necessary permissions to access the Power BI XMLA endpoint. -
Data Save Errors Ensure that the specified output paths and formats are correct. The script supports saving data as either Parquet or CSV files.
Contributing
If you'd like to contribute to this project, please fork the repository and create a pull request with your changes. Ensure that all tests pass before submitting.
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file download_pbi_xmla-0.4.7.tar.gz
.
File metadata
- Download URL: download_pbi_xmla-0.4.7.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.6 Windows/11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a556be0fc7c57fd03a038219a2e8e3804b4ca0d99b88ac0590dd03f01231382 |
|
MD5 | 954c946d18d3ac1d5f9a877c6772ab46 |
|
BLAKE2b-256 | 8d8913762b29e0ad19ab4b555bd8430db1a4aae156cde6ecc9018cf206ed7a64 |
File details
Details for the file download_pbi_xmla-0.4.7-py3-none-any.whl
.
File metadata
- Download URL: download_pbi_xmla-0.4.7-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.6 Windows/11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9eccc7ad2a9b8b7954cad66acf2db1211b8621ee493b8c12da3fbe49d10be01a |
|
MD5 | 2c726c556c93a7d43098a45968dfb1a2 |
|
BLAKE2b-256 | 9a228b8b7ef4a67406c72f5a16b58e6ea682d1cfd40772803cb830c148d452d8 |