Metadata-Version: 2.1
Name: pbir-utils
Version: 0.3.0
Summary: A tool for managing Power BI Enhanced Report Format (PBIR) projects
Home-page: https://github.com/akhilannan/PBIR-Utils
Author: Akhil Ashok
License: MIT
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: dash
Requires-Dist: plotly

# PBIR Utilities

pbir-utils is a python project designed to streamline the tasks that Power BI developers typically handle manually in Power BI Desktop. This module offers a range of utility functions to efficiently manage and manipulate PBIR metadata.

## Features

- **Extract Metadata**: Retrieve key metadata informations from PBIR files.
- **Update Metadata**: Apply updates to metadata within PBIR files.
- **Report Wireframe Visualizer**: Visualize PBIR report wireframe.
- **Disable Visual Interactions**: Bulk disable interactions in PBIR report.

## Installation
```python
pip install pbir-utils
```

## Usage
Once installed, you can import the library as follows:
```python
import pbir_utils as pbir
```
To get started, refer to [example_usage.ipynb](examples/example_usage.ipynb) notebook, which contains detailed examples demonstrating how to use the various functions available in pbir_utils.
