pbir-utils 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pbir_utils-0.1.0/PKG-INFO +30 -0
- pbir_utils-0.1.0/README.md +14 -0
- pbir_utils-0.1.0/setup.cfg +4 -0
- pbir_utils-0.1.0/setup.py +33 -0
- pbir_utils-0.1.0/src/pbir_utils.egg-info/PKG-INFO +30 -0
- pbir_utils-0.1.0/src/pbir_utils.egg-info/SOURCES.txt +8 -0
- pbir_utils-0.1.0/src/pbir_utils.egg-info/dependency_links.txt +1 -0
- pbir_utils-0.1.0/src/pbir_utils.egg-info/entry_points.txt +5 -0
- pbir_utils-0.1.0/src/pbir_utils.egg-info/requires.txt +2 -0
- pbir_utils-0.1.0/src/pbir_utils.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pbir-utils
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A tool for managing Power BI Enhanced Report Format (PBIR) projects
|
|
5
|
+
Home-page: https://github.com/akhilannan/PBIR-Utils
|
|
6
|
+
Author: Akhil Ashok
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.6
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: dash
|
|
15
|
+
Requires-Dist: plotly
|
|
16
|
+
|
|
17
|
+
# PBIR-Utils
|
|
18
|
+
|
|
19
|
+
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.
|
|
20
|
+
|
|
21
|
+
## Features
|
|
22
|
+
|
|
23
|
+
- **Extract Metadata**: Retrieve key metadata informations from PBIR files.
|
|
24
|
+
- **Update Metadata**: Apply updates to metadata within PBIR files.
|
|
25
|
+
- **Report Wireframe Visualizer**: Visualize PBIR report wireframe.
|
|
26
|
+
- **Disable Visual Interactions**: Bulk disable interactions in PBIR report.
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
To get started, clone the repository and refer to the `examples/example_usage.ipynb` file.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# PBIR-Utils
|
|
2
|
+
|
|
3
|
+
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.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Extract Metadata**: Retrieve key metadata informations from PBIR files.
|
|
8
|
+
- **Update Metadata**: Apply updates to metadata within PBIR files.
|
|
9
|
+
- **Report Wireframe Visualizer**: Visualize PBIR report wireframe.
|
|
10
|
+
- **Disable Visual Interactions**: Bulk disable interactions in PBIR report.
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
To get started, clone the repository and refer to the `examples/example_usage.ipynb` file.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='pbir-utils',
|
|
5
|
+
version='0.1.0',
|
|
6
|
+
description='A tool for managing Power BI Enhanced Report Format (PBIR) projects',
|
|
7
|
+
long_description=open('README.md').read(),
|
|
8
|
+
long_description_content_type='text/markdown',
|
|
9
|
+
url='https://github.com/akhilannan/PBIR-Utils',
|
|
10
|
+
author='Akhil Ashok',
|
|
11
|
+
license='MIT',
|
|
12
|
+
packages=find_packages(where='src'),
|
|
13
|
+
package_dir={'':'src'},
|
|
14
|
+
install_requires=[
|
|
15
|
+
'dash', 'plotly',
|
|
16
|
+
],
|
|
17
|
+
classifiers=[
|
|
18
|
+
'Intended Audience :: Developers',
|
|
19
|
+
'Programming Language :: Python :: 3',
|
|
20
|
+
'License :: OSI Approved :: MIT License',
|
|
21
|
+
'Operating System :: OS Independent',
|
|
22
|
+
],
|
|
23
|
+
python_requires='>=3.6',
|
|
24
|
+
entry_points={
|
|
25
|
+
'console_scripts': [
|
|
26
|
+
'batch_update_pbir_project=src.pbir_processor:batch_update_pbir_project',
|
|
27
|
+
'export_pbir_metadata_to_csv=src.metadata_extractor:export_pbir_metadata_to_csv',
|
|
28
|
+
'display_report_wireframes=src.report_wireframe_visualizer:display_report_wireframes',
|
|
29
|
+
'disable_visual_interactions=src.visual_interactions_utils:disable_visual_interactions',
|
|
30
|
+
],
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pbir-utils
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A tool for managing Power BI Enhanced Report Format (PBIR) projects
|
|
5
|
+
Home-page: https://github.com/akhilannan/PBIR-Utils
|
|
6
|
+
Author: Akhil Ashok
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.6
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: dash
|
|
15
|
+
Requires-Dist: plotly
|
|
16
|
+
|
|
17
|
+
# PBIR-Utils
|
|
18
|
+
|
|
19
|
+
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.
|
|
20
|
+
|
|
21
|
+
## Features
|
|
22
|
+
|
|
23
|
+
- **Extract Metadata**: Retrieve key metadata informations from PBIR files.
|
|
24
|
+
- **Update Metadata**: Apply updates to metadata within PBIR files.
|
|
25
|
+
- **Report Wireframe Visualizer**: Visualize PBIR report wireframe.
|
|
26
|
+
- **Disable Visual Interactions**: Bulk disable interactions in PBIR report.
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
To get started, clone the repository and refer to the `examples/example_usage.ipynb` file.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
batch_update_pbir_project = src.pbir_processor:batch_update_pbir_project
|
|
3
|
+
disable_visual_interactions = src.visual_interactions_utils:disable_visual_interactions
|
|
4
|
+
display_report_wireframes = src.report_wireframe_visualizer:display_report_wireframes
|
|
5
|
+
export_pbir_metadata_to_csv = src.metadata_extractor:export_pbir_metadata_to_csv
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|